/* -------------------------------------------------------
   TOKENS — Design System
------------------------------------------------------- */
:root {
    --gold:      hsl(42,95%,52%);
    --gold-dim:  hsl(42,95%,40%);
    --gold-glow: hsla(42,95%,52%,.16);
    --ink:       #0f0e1a;
    --ink2:      #1c1b2e;
    --surface:   #ffffff;
    --surface2:  #f7f6f2;
    --border:    #eaeaea;
    --muted:     #9a98a8;
    --red:       #d62b2b;
    --dark-blue: #0f172a;
    --blue:      #0284c7;
    --r-sm:      8px;
    --r-md:      13px;
    --r-lg:      18px;
    --sh-sm:     0 1px 8px rgba(0,0,0,.07);
    --sh-md:     0 4px 20px rgba(0,0,0,.10);
    --sh-lg:     0 12px 40px rgba(0,0,0,.15);
    --fh:        'Syne',    sans-serif;
    --fb:        'DM Sans', sans-serif;
    --mib-yellow:         hsl(49,96%,50%);
    --mib-yellow-dark:    hsl(49,96%,38%);
    --mib-yellow-light:   hsl(49,96%,92%);
    --mib-dark:           #1a1a2e;
    --mib-dark-2:         #2d2d4e;
    --wa-green:           #25D366;
    --wa-green-dark:      #128C7E;
    --mib-accent-pastel:  hsl(49,60%,95%);
    --price-new:          #d32f2f;
    --price-old:          #999;
    --price-save:         #2e7d32;
}
body { font-family: var(--fb); }

/* -------------------------------------------------------
   BREADCRUMB
------------------------------------------------------- */
.prod-breadcrumb {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #aaa; list-style: none;
    padding: 0; margin: 0 0 8px; flex-wrap: wrap;
}
.prod-breadcrumb li { display: flex; align-items: center; gap: 5px; }
.prod-breadcrumb li::before { content: '›'; color: #ddd; }
.prod-breadcrumb li:first-child::before { display: none; }
.prod-breadcrumb a { color: #888; text-decoration: none; transition: color .2s; }
.prod-breadcrumb a:hover { color: var(--mib-yellow-dark); }
.prod-breadcrumb li:last-child span { color: #444; font-weight: 600; }

/* -------------------------------------------------------
   BLOC PRODUIT PRINCIPAL
------------------------------------------------------- */
.prod-detail-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; background: #fff; border-radius: 18px;
    border: 1px solid #f0f0f0; padding: 32px;
    margin-bottom: 32px; box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* -------------------------------------------------------
   GALERIE
------------------------------------------------------- */
.prod-gallery { position: sticky; top: 20px; }
.prod-gallery__main {
    border-radius: 14px; overflow: hidden;
    background: #f9f9f9; border: 1px solid #eee;
    aspect-ratio: 1/1; display: flex;
    align-items: center; justify-content: center;
    position: relative;
}
.prod-gallery__main img {
    max-width: 100%; max-height: 100%;
    object-fit: contain; transition: transform .4s ease;
}
.prod-gallery__main:hover img { transform: scale(1.06); }
.prod-gallery__disc {
    position: absolute; top: 14px; left: 14px;
    background: #e53935; color: #fff; font-size: 13px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px; z-index: 2;
    box-shadow: 0 2px 8px rgba(229,57,53,.35);
}
.prod-gallery__wishlist {
    position: absolute; top: 12px; right: 12px;
    background: #fff; border: 1.5px solid #eee; border-radius: 50%;
    width: 40px; height: 40px; display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; font-size: 20px; color: #ccc;
    transition: all .2s; z-index: 2;
}
.prod-gallery__wishlist:hover { border-color: #FF1744; color: #FF1744; background: #fff5f5; }
.prod-gallery__thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.prod-gallery__thumb {
    width: 68px; height: 68px; border-radius: 10px; overflow: hidden;
    border: 2px solid #f0f0f0; cursor: pointer; background: #f9f9f9;
    transition: border-color .2s;
}
.prod-gallery__thumb.active,
.prod-gallery__thumb:hover { border-color: var(--gold); }
.prod-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* -------------------------------------------------------
   INFOS PRODUIT
------------------------------------------------------- */
.prod-info { display: flex; flex-direction: column; gap: 16px; }
.prod-info__cat {
    display: inline-block; font-size: 10px; font-weight: 700;
    color: #FF5722; background: #FFF3E0; padding: 4px 12px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .8px;
    text-decoration: none; width: fit-content;
}
.prod-info__cat:hover { background: #FFE0B2; }
.prod-info__name {
    font-size: 26px; font-weight: 800; color: var(--mib-dark);
    line-height: 1.25; letter-spacing: -.4px; margin: 0;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.prod-info__rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.prod-info__stars { display: flex; gap: 2px; }
.prod-info__stars i { font-size: 18px; color: var(--gold); }
.prod-info__stars i.far { color: #ddd; }
.prod-info__rating-val { font-size: 14px; font-weight: 700; color: var(--mib-dark); }
.prod-info__rating-count { font-size: 12px; color: #aaa; }
.prod-info__rating-sep { color: #e0e0e0; font-size: 12px; }
.scroll-to-comments { font-size: 12px; color: #888; text-decoration: underline; cursor: pointer; }
.scroll-to-comments:hover { color: var(--mib-yellow-dark); }

/* -------------------------------------------------------
   PRIX BOX
------------------------------------------------------- */
.prod-info__price-box {
    background: linear-gradient(135deg, #fff8f8 0%, #fff3f3 100%);
    border: 2px solid var(--price-new);
    border-radius: 12px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(211,47,47,.1);
}
.prod-info__price-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--price-new); letter-spacing: -.5px;
}
.prod-info__price-old {
    font-size: 16px; color: var(--price-old);
    text-decoration: line-through; font-weight: 500;
}
.prod-info__savings {
    font-size: 12px; color: var(--price-save);
    background: #E8F5E9; padding: 6px 12px;
    border-radius: 20px; font-weight: 700;
    border: 1.5px solid #C8E6C9; white-space: nowrap;
}
.prod-info__stock {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
}
.prod-info__stock--in  { background: #E8F5E9; color: #2E7D32; }
.prod-info__stock--out { background: #FFEBEE; color: #C62828; }
.prod-info__divider { height: 1px; background: #f0f0f0; }

/* -------------------------------------------------------
   BANDEAU LOGISTIQUE IMPORT — visible sous le stock
------------------------------------------------------- */
.prod-import-strip {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px 16px;
}
.prod-import-strip__item { display: flex; align-items: flex-start; gap: 8px; }
.prod-import-strip__icon {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    background: #dbeafe; color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.prod-import-strip__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.prod-import-strip__label { font-size: 9.5px; color: #94a3b8; text-transform: uppercase; letter-spacing: .4px; }
.prod-import-strip__value {
    font-size: 12.5px; font-weight: 700; color: #0f172a; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.prod-import-strip__badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 700;
    padding: 4px 11px; border-radius: 20px; text-transform: uppercase; letter-spacing: .3px;
    width: fit-content; margin-bottom: 2px;
}

/* -------------------------------------------------------
   GRILLE DE PRIX — paliers de quantité
------------------------------------------------------- */
.prod-price-tiers { margin-top: 2px; }
.prod-price-tiers__title {
    font-size: 10.5px; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.prod-price-tiers__title i { color: var(--gold-dim); }
.prod-price-tiers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.prod-price-tiers__cell {
    border: 1.5px solid #eee; border-radius: 10px; padding: 10px 12px; text-align: center;
    transition: border-color .15s, background .15s, transform .15s; cursor: default;
}
.prod-price-tiers__cell:hover { border-color: var(--gold); background: #fffdf5; }
.prod-price-tiers__cell.active {
    border-color: var(--gold); background: var(--mib-yellow-light);
    box-shadow: 0 0 0 2px var(--gold-glow); transform: translateY(-1px);
}
.prod-price-tiers__qty { font-size: 11px; color: #999; margin-bottom: 3px; }
.prod-price-tiers__price { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; color: var(--mib-dark); }
.prod-price-tiers__price small { font-family: var(--fb); font-size: 10px; font-weight: 500; color: #999; }

/* -------------------------------------------------------
   VARIANTES TAILLE & COULEUR
------------------------------------------------------- */
.prod-variants { display: flex; flex-direction: column; gap: 14px; }
.prod-variants__label {
    font-size: 11px; font-weight: 700; color: #555;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}
.prod-variants__label .var-selected {
    font-size: 11px; font-weight: 600; color: var(--mib-dark);
    background: var(--mib-yellow-light); border-radius: 4px;
    padding: 1px 8px; margin-left: 4px; text-transform: none; letter-spacing: 0;
}
.prod-variants__list { display: flex; gap: 8px; flex-wrap: wrap; }
.prod-size-btn {
    padding: 7px 18px; border-radius: 8px;
    border: 1.5px solid #e0e0e0; background: #fff;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all .2s; color: #555;
}
.prod-size-btn:hover  { border-color: var(--mib-dark); background: #f5f5f5; }
.prod-size-btn.active { border-color: var(--mib-dark); background: var(--mib-dark); color: #fff; }
.prod-color-btn {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2.5px solid #fff; cursor: pointer;
    transition: all .2s; position: relative;
    box-shadow: 0 0 0 1.5px #ddd;
}
.prod-color-btn:hover { transform: scale(1.12); box-shadow: 0 0 0 2px #aaa; }
.prod-color-btn.active { box-shadow: 0 0 0 3px var(--gold); transform: scale(1.08); }
.prod-color-btn::after {
    content: '\2713'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff; opacity: 0; font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.prod-color-btn.active::after { opacity: 1; }

/* -------------------------------------------------------
   QUANTITÉ
------------------------------------------------------- */
.prod-qty {
    display: flex; align-items: center;
    border: 1.5px solid #e0e0e0; border-radius: 10px;
    overflow: hidden; width: fit-content;
}
.prod-qty__btn {
    width: 42px; height: 42px; background: #f5f5f5;
    border: none; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #555; font-weight: 700; transition: background .2s;
}
.prod-qty__btn:hover { background: var(--mib-dark); color: #fff; }
.prod-qty__input {
    width: 54px; text-align: center;
    border: none; border-left: 1.5px solid #e0e0e0; border-right: 1.5px solid #e0e0e0;
    font-size: 15px; font-weight: 700; color: var(--mib-dark);
    outline: none; padding: 0 6px; height: 42px;
}

/* -------------------------------------------------------
   BOUTONS D'ACTION PRODUIT
------------------------------------------------------- */
.prod-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-btn-cart {
    flex: 1; min-width: 180px;
    background: linear-gradient(135deg, var(--mib-dark), var(--mib-dark-2));
    color: #fff; border: none; border-radius: 12px;
    padding: 15px 24px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all .25s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--fb);
}
.prod-btn-cart:hover {
    background: linear-gradient(135deg, #FF5722, #FF7043);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,87,34,.35);
}
.prod-btn-fav {
    background: #fff; border: 1.5px solid #e0e0e0; border-radius: 12px;
    padding: 15px 18px; cursor: pointer; font-size: 22px; color: #ccc;
    transition: all .25s; display: flex; align-items: center;
}
.prod-btn-fav:hover { border-color: #FF1744; color: #FF1744; background: #fff5f5; transform: translateY(-2px); }
.prod-btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--ink); border: none; border-radius: 12px;
    padding: 14px 24px; font-size: 14px; font-weight: 800;
    cursor: pointer; transition: all .25s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 14px var(--gold-glow); font-family: var(--fb);
}
.prod-btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--gold-glow); }
.prod-btn-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
    color: #fff; border: none; border-radius: 12px;
    padding: 14px 24px; font-size: 14px; font-weight: 800;
    cursor: pointer; transition: all .25s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    text-decoration: none; box-shadow: 0 4px 14px rgba(37,211,102,.28);
    font-family: var(--fb);
}
.prod-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.45); color: #fff; text-decoration: none; }

/* -------------------------------------------------------
   MOYENS DE PAIEMENT
------------------------------------------------------- */
.payment-section {
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border: 1px solid #e8ecff; border-radius: 14px; padding: 16px 18px;
}
.payment-section__title {
    font-size: 10px; font-weight: 700; color: #aaa;
    text-transform: uppercase; letter-spacing: .8px;
    margin: 0 0 12px; display: flex; align-items: center; gap: 6px;
}
.payment-section__title::before {
    content: ''; display: block; width: 14px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.payment-cards { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-card {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 8px;
    border: 1.5px solid #e8e8e8; background: #fff;
    font-size: 11px; font-weight: 600; color: #444;
    white-space: nowrap; transition: transform .15s, box-shadow .15s; cursor: default;
}
.payment-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.10); }
.payment-card__icon { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.payment-card__icon-fa { font-size: 14px; color: inherit; flex-shrink: 0; }
.payment-card--wave    { border-color: #1eaaf1; color: #1eaaf1; }
.payment-card--momo    { border-color: #FFCC00; color: #a07d00; }
.payment-card--orange  { border-color: #FF6600; color: #cc5200; }
.payment-card--flooz   { border-color: #5b4fcf; color: #5b4fcf; }
.payment-card--livraison { border-color: #4CAF50; color: #2e7d32; }
.payment-secure {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; color: #888; margin-top: 8px;
}
.payment-secure i { font-size: 12px; color: #4CAF50; margin-right: 4px; }

/* -------------------------------------------------------
   MÉTA
------------------------------------------------------- */
.prod-meta { font-size: 12px; color: #aaa; }
.prod-meta span { color: #555; font-weight: 600; }
.prod-views {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; color: #aaa; background: #f5f5f5;
    border-radius: 20px; padding: 3px 10px;
}
.prod-views i { font-size: 12px; margin-right: 2px; }

/* -------------------------------------------------------
   ONGLETS
------------------------------------------------------- */
.prod-tabs { margin-bottom: 32px; }
.prod-tabs__nav {
    display: flex; border-bottom: 2px solid #f0f0f0; gap: 0;
}
.prod-tabs__btn {
    padding: 12px 24px; background: none; border: none;
    font-size: 13px; font-weight: 600; color: #999;
    cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: color .2s; font-family: var(--fb);
}
.prod-tabs__btn.active { color: var(--mib-dark); border-bottom-color: var(--gold); }
.prod-tabs__panel { display: none; padding: 24px 0; }
.prod-tabs__panel.active { display: block; }
.prod-tabs__panel > p { font-size: 14px; color: #555; line-height: 1.8; }

/* -------------------------------------------------------
   TABLEAU ATTRIBUTS — onglet Détails
------------------------------------------------------- */
.prod-attrs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #444;
}
.prod-attrs-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}
.prod-attrs-table tr:last-child { border-bottom: none; }
.prod-attrs-table tr:hover { background: #fafafa; }
.prod-attrs-table th {
    width: 36%;
    padding: 10px 14px 10px 0;
    font-weight: 700;
    color: #888;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    vertical-align: top;
    white-space: nowrap;
}
.prod-attrs-table td {
    padding: 10px 0;
    color: #2d2d2d;
    line-height: 1.6;
    vertical-align: top;
    font-size: 13px;
}
.prod-attrs-divider {
    margin: 20px 0 16px;
    border: none;
    border-top: 1px dashed #e8e8e8;
}
.prod-attrs-section-title {
    font-size: 10px; font-weight: 700; color: #bbb;
    text-transform: uppercase; letter-spacing: .6px;
    margin: 0 0 10px;
}
@media (max-width: 480px) {
    .prod-attrs-table th { width: 42%; font-size: 10px; }
    .prod-attrs-table td { font-size: 12px; }
}

/* -------------------------------------------------------
   COMMENTAIRES
------------------------------------------------------- */
.comments-section { margin-bottom: 32px; }
.comments-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: var(--ink);
    border-radius: 12px; margin-bottom: 20px;
}
.comments-header h3 { margin: 0; font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .5px; display: flex; align-items: center; gap: 8px; font-family: var(--fh); }
.comments-header h3 i { font-size: 16px; color: var(--gold); }
.comment-card {
    background: #fff; border: 1px solid #f0f0f0; border-radius: 12px;
    padding: 16px 18px; margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05); transition: all .25s ease;
}
.comment-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); border-color: #e8e8e8; }
.comment-card__top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; flex-direction: column; }
.comment-meta { flex: 1; width: 100%; }
.comment-author { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.comment-date   { font-size: 11px; color: #aaa; margin-bottom: 6px; }
.comment-stars  { display: flex; gap: 2px; align-items: center; margin-bottom: 8px; }
.comment-stars i { font-size: 13px; color: var(--gold); margin-right: 1px; }
.comment-stars i.far { color: #ddd; }
.comment-text { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }
.comment-empty { text-align: center; color: #bbb; font-size: 13px; padding: 30px 0; }
.comment-form-wrap {
    background: linear-gradient(135deg, var(--mib-accent-pastel), #fff);
    border: 1px solid hsl(49,96%,80%);
    border-radius: 14px; padding: 22px; margin-top: 20px;
}
.comment-form-wrap h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0 0 16px; font-family: var(--fh); }
.cf-stars { display: flex; gap: 8px; margin-bottom: 16px; align-items: center; }
.cf-star-btn {
    background: none; border: none; cursor: pointer;
    line-height: 1; padding: 4px; transition: all .15s ease;
    display: flex; align-items: center; justify-content: center;
}
.cf-star-btn i { font-size: 28px; color: #ddd; transition: color .15s, transform .15s; }
.cf-star-btn:hover i { color: var(--gold); transform: scale(1.15); }
.cf-star-btn.selected i { color: var(--gold); transform: scale(1.1); }
.cf-textarea {
    width: 100%; border: 1.5px solid #e0e0e0; border-radius: 10px;
    padding: 12px 14px; font-size: 13px; resize: vertical;
    min-height: 90px; outline: none; transition: border-color .2s, box-shadow .2s;
    font-family: var(--fb); box-sizing: border-box; background: #fff;
}
.cf-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.cf-textarea::placeholder { color: #bbb; }
.cf-submit {
    margin-top: 14px; background: linear-gradient(135deg, var(--ink), var(--mib-dark-2));
    color: #fff; border: none; border-radius: 10px; padding: 12px 28px;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center; gap: 6px; min-width: 160px;
    justify-content: center; font-family: var(--fb);
}
.cf-submit:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    transform: translateY(-2px); box-shadow: 0 6px 16px var(--gold-glow); color: var(--ink);
}
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.cf-submit i { font-size: 14px; }

/* -------------------------------------------------------
   SECTION PRODUITS SIMILAIRES
------------------------------------------------------- */
.similar-section { margin-bottom: 36px; }
.similar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: var(--ink);
    border-radius: var(--r-md); margin-bottom: 18px;
    position: relative; overflow: hidden;
}
.similar-header::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--gold);
}
.similar-header::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}
.similar-header h2 {
    margin: 0; font-size: 13px; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: .5px;
    font-family: var(--fh); position: relative; z-index: 1;
}
.similar-header a {
    font-size: 11px; font-weight: 700; color: #fff; text-decoration: none;
    padding: 5px 14px; border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 20px; background: rgba(255,255,255,.08);
    transition: all .2s; position: relative; z-index: 1;
}
.similar-header a:hover { background: var(--gold); border-color: var(--gold-dim); color: var(--ink); }
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
    gap: 16px;
}

/* -------------------------------------------------------
   PRODUCT CARD
------------------------------------------------------- */
.showcase {
    background: var(--surface); border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
    border: 1px solid transparent;
    transition: transform .24s cubic-bezier(.22,.68,0,1.2), box-shadow .24s;
    animation: vpFadeIn .5s ease forwards; opacity: 0;
}
.showcase:nth-child(1)  { animation-delay: .05s }
.showcase:nth-child(2)  { animation-delay: .10s }
.showcase:nth-child(3)  { animation-delay: .15s }
.showcase:nth-child(4)  { animation-delay: .20s }
.showcase:nth-child(5)  { animation-delay: .25s }
.showcase:nth-child(6)  { animation-delay: .30s }
.showcase:nth-child(7)  { animation-delay: .35s }
.showcase:nth-child(8)  { animation-delay: .40s }
@keyframes vpFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.showcase:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg);
    border-color: rgba(0,0,0,.04);
}
.showcase-banner {
    position: relative; width: 100%;
    aspect-ratio: 1/1; overflow: hidden; background: var(--surface2);
}
.showcase-banner .product-img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; top: 0; left: 0;
    transition: transform .38s cubic-bezier(.22,.68,0,1.2);
    display: block;
}
.showcase:hover .product-img { transform: scale(1.08); }
.showcase-badge {
    position: absolute; border-radius: 20px;
    font-size: 10px; font-weight: 700; z-index: 3;
    padding: 3px 9px; text-transform: uppercase; letter-spacing: .3px;
}
.discount-badge {
    top: 10px; left: 10px; background: var(--red); color: #fff;
    box-shadow: 0 2px 8px rgba(214,43,43,.3);
}
.showcase-actions {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    display: flex; justify-content: center; gap: 5px;
    background: linear-gradient(to top, rgba(15,14,26,.7) 0%, transparent 55%);
    padding: 10px 6px; align-items: flex-end;
    opacity: 0; transform: translateY(6px);
    transition: opacity .22s, transform .22s;
}
.showcase:hover .showcase-actions { opacity: 1; transform: translateY(0); }
.showcase-actions .btn-action {
    height: 32px; border-radius: var(--r-sm);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 4px;
    font-family: var(--fb); font-weight: 600;
    transition: filter .16s; font-size: 13px;
}
.showcase-actions .btn-action--cart {
    flex: 0 0 auto; background: var(--gold); color: var(--ink);
    font-size: 11px; padding: 0 14px;
}
.showcase-actions .btn-action--fav {
    flex: 0 0 32px; width: 32px;
    background: var(--dark-blue); border: none; color: #fff;
}
.showcase-actions .btn-action:hover { filter: brightness(1.1); }
.showcase-content {
    padding: 7px 11px 9px;
    flex: 1; display: flex; flex-direction: column; gap: 3px;
}
.showcase-category {
    display: inline-block; font-size: 9.5px; color: var(--muted);
    text-transform: uppercase; letter-spacing: .7px;
    text-decoration: none; margin-bottom: 0;
    transition: color .18s; line-height: 1;
}
.showcase-category:hover { color: var(--gold-dim); }
.showcase-title {
    font-size: 12px; font-weight: 600; color: var(--ink2);
    margin: 0; line-height: 1.35;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    text-decoration: none; transition: color .18s;
}
.showcase-content > a:hover .showcase-title { color: var(--gold-dim); }
.showcase-rating {
    display: flex; gap: 2px; font-size: 9px;
    color: var(--gold); margin: 0;
}
.showcase-rating .far { color: #ddd; }
.price-box {
    display: flex; align-items: baseline; gap: 5px;
    flex-wrap: wrap; margin-top: 0;
}
.price-box .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px; font-weight: 700; color: var(--red);
    line-height: 1;
}
.price-box .price small { font-family: var(--fb); font-size: 9.5px; font-weight: 500; }
.price-box del { font-size: 10px; color: var(--muted); text-decoration: line-through; }

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 1024px) {
    .similar-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
}
@media (max-width: 768px) {
    .prod-detail-wrap { grid-template-columns: 1fr; padding: 20px; gap: 24px; }
    .prod-gallery { position: static; }
    .prod-info__name { font-size: 20px; }
    .prod-info__price-new { font-size: 26px; }
    .prod-info__price-box { padding: 12px 16px; gap: 10px; }
    .similar-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; }
    .prod-actions { flex-direction: column; }
    .prod-btn-cart { min-width: unset; }
    .payment-cards { gap: 6px; }
    .comment-form-wrap { padding: 16px; }
}
@media (max-width: 480px) {
    .similar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .prod-detail-wrap { padding: 14px; gap: 18px; }
    .prod-info__price-new { font-size: 22px; }
    .showcase-content { padding: 6px 8px 8px; }
    .showcase-title { font-size: 11.5px; }
    .price-box .price { font-size: 12px; }
    .comments-header { flex-direction: column; align-items: flex-start; padding: 12px 14px; }
    .cf-star-btn i { font-size: 24px; }
    .cf-submit { width: 100%; font-size: 12px; padding: 10px 16px; }
    .prod-import-strip { grid-template-columns: repeat(2, 1fr); }
    .prod-price-tiers__grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------------------
   DESCRIPTION PRODUIT
------------------------------------------------------- */
.prod-tabs__panel#tab-description {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.prod-tabs__panel#tab-description p {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.8;
}

.prod-tabs__panel#tab-description p:last-child {
    margin-bottom: 0;
}

.prod-tabs__panel#tab-description strong {
    font-weight: 700;
    color: var(--mib-dark);
}

.prod-desc-list {
    margin: 8px 0 16px;
    padding-left: 22px;
}

.prod-desc-list li {
    margin-bottom: 7px;
    padding-left: 4px;
    line-height: 1.7;
    color: #555;
}

.prod-desc-list li::marker {
    color: var(--gold-dim);
    font-weight: 700;
}