
.sous-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}
.sous-menu a {
    color: var(--marron);
    padding: 8px 12px;
    background-color: var(--beige-clair);
    border: 2px solid transparent;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sous-menu a:hover {
    background-color: var(--jaune);
    border-color: var(--marron);
    color: #fff;
}
.sous-menu a.active {
    background-color: var(--marron);
    color: white;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}
.breadcrumb a {
    text-decoration: none;
    color: var(--marron);
    font-weight: bold;
}
.breadcrumb span {
    font-style: italic;
    color: var(--brique);
}
.fiche-produit .bloc-produit {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}
.produit-image {
    flex: 1 1 45%;
    max-width: 45%;
}
.produit-image img {
    max-width: 100%;
    border-radius: 6px;
}
.produit-info {
    flex: 1 1 50%;
    max-width: 50%;
}
.produit-info .produit-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}
.produit-head h1 {
    font-size: 26px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}
.produit-head h4 {
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    color: var(--marron);
}
.table-wrapper {
    overflow-x: auto;
}
.table-produit {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.table-produit th, .table-produit td {
    padding: 10px;
    text-align: center;
}
.table-produit thead tr {
    background-color: var(--jaune);
    color: var(--marron);
}
.table-produit tbody tr:nth-child(odd) {
    background-color: var(--marron);
    color: white;
}
.table-produit tbody tr:nth-child(even) {
    background-color: var(--jaune);
    color: var(--marron);
}
.vlr_btn_pdts {
  width: 30%;
  margin-top: 33px;
  margin-bottom: 10px;
  padding: 14px;
  border: none;
  border-left: 8px solid #ffcc00;
  border-radius: 0px;
  box-sizing: border-box;
  background-color: #bdada6;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  background-image: linear-gradient(to right, #ffcc00 50%, #bdada6 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.7s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.vlr_btn_pdts:hover {
  color: #fff;
  background-position: left bottom;
  text-decoration: none;
}
.vlr_active {
    background-color: #fff;
    color: var(--brique);
    border-left: 6px solid var(--brique);
    background-image: none;
}
.vlr_active:hover {
    color: var(--marron);
}
@media screen and (max-width: 768px) {
    .bloc-produit {
        flex-direction: column;
    }
    .produit-image,
    .produit-info {
        max-width: 100%;
    }
    .produit-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .produit-head h1,
    .produit-head h4 {
        text-align: left;
    }
}
