#commerces {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
}

.commerce {
    gap: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content:space-between;
    width:100%;
    background-color: #fff;
    padding: 0;
    border-radius: 8px;    
}

.commerce_content {
    width: 75%;
    position:relative;
    padding:16px;
}

.commerce_content .ibtns {
    bottom:8px;
}

.commerce_header {
    display: flex;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items:center;
}

.commerce_secteur {
    background-color:#eee;
    padding:3px 6px;
    border-radius:4px;
}

.commerce h2 {
    padding:0;
    margin:0;
}

.commerce_photo {
    width: 25%;
    height: 200px;
    background-color:#fff;
    background-image:url('../assets/logos/logo-header.png');
    background-position:center;
    background-size:40%;
    background-repeat:no-repeat;
    overflow:hidden;   
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;    
}

.commerce_photo img {
    position: relative;
    background-color:#fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow:hidden;
    object-position:center;    
    scale: 1;
    transition: 0.2s; 
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;   
}




@media (max-width: 1100px) {
  .commerce {
    flex-direction:column;
    gap:0;
    padding:0;
    width:100%;
  }

  .commerce_photo, .commerce_photo img {
    border-bottom-left-radius:0;
    border-top-right-radius:8px;      
  }
  .commerce_photo {
    flex: 1;
    width:100%;
  }
  .commerce_content {
      flex: initial;
      width:100%;
      
      background-color:#eee;
      padding:16px;
      
      border-bottom-left-radius:8px;   
      border-bottom-right-radius:8px;   
  }
  
  .commerce_header {
    display:block;
  }
  .commerce_secteur {
    padding:0;
    font-weight:500;
    margin:5px 0;
  }
}

/* detail */
.commerce_sous_titre {
    font-weight:500;
    margin-bottom:16px;
    
}
.commerce_presentation {

    margin-top:16px;
    
}
.commerce_infos {
    gap: 32px;
    display: flex;
    justify-content:space-around;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;     
}
.commerce_infos_col {
    flex:1;
}

.commerce_infos_col .commerce_photo {
    width: 100%;
    height: 300px;
    
    border-radius:0;    
}

.commerce_infos_col .ibtns {
    position:relative;
    flex-direction:column;
}

.commerce_contact {
    margin-bottom:16px;
}

.commerce_contact a {
    color: #3AB979;
}

#map {
    width:100%;
    height:350px;
    margin:20px 0;
    
    border-radius: 8px;
    border:8px solid #fff;
    background-color:#fff;
}

@media (max-width: 1100px) {
  .commerce_infos {
    flex-direction:column;
    gap:0;
  }
}