:root {
    --ovp-navy: #071f4f;
    --ovp-navy-2: #0b2d6b;
    --ovp-blue: #0868e8;
    --ovp-orange: #ff5a00;
    --ovp-orange-2: #ff7415;
    --ovp-green: #159447;
    --ovp-text: #10213c;
    --ovp-muted: #66758a;
    --ovp-border: #dbe4f0;
    --ovp-border-soft: #edf2f7;
    --ovp-soft: #f7f9fc;
    --ovp-white: #ffffff;
    --ovp-shadow: 0 8px 24px rgba(8, 31, 75, .06);
}

.ov-product-page,
.ov-product-page *,
.ov-product-page *::before,
.ov-product-page *::after {
    box-sizing: border-box;
}

.ov-product-page {
    width: 100%;
    padding: 14px 0 28px;
    color: var(--ovp-text);
    background: #fff;
}

.ov-product-page a {
    color: inherit;
    text-decoration: none;
}

.ov-product-page button,
.ov-product-page input,
.ov-product-page select {
    font: inherit;
}

.ov-product-container {
    width: min(calc(100% - 40px), 1700px);
    margin: 0 auto;
}

/* Fil d’Ariane */
.ov-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    margin-bottom: 10px;
    color: #6c7b90;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
}

.ov-product-breadcrumb a {
    color: #66758b;
    font-weight: 650;
}

.ov-product-breadcrumb a:hover {
    color: var(--ovp-blue);
}

.ov-product-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ov-product-breadcrumb svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

/* ======================================================================
   Zone principale : galerie / informations / achat
====================================================================== */

.ov-product-marketplace {
    display: grid;
    grid-template-columns: minmax(470px, 1.08fr) minmax(420px, .98fr) 365px;
    gap: 24px;
    align-items: start;
}

.ov-product-marketplace > * {
    min-width: 0;
}

/* Galerie */
.ov-product-gallery-panel {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
}

.ov-product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ov-product-thumb,
.ov-product-thumb-more {
    width: 72px;
    height: 74px;
    flex: 0 0 auto;
    padding: 5px;
    border: 1px solid var(--ovp-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.ov-product-thumb.is-active {
    border: 2px solid var(--ovp-blue);
    box-shadow: 0 0 0 2px rgba(8, 104, 232, .07);
}

.ov-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ov-product-thumb.is-extra {
    display: none;
}

.ov-product-thumbs.is-expanded .ov-product-thumb.is-extra {
    display: block;
}

.ov-product-thumbs.is-expanded .ov-product-thumb-more {
    display: none;
}

.ov-product-thumb-more {
    display: grid;
    place-items: center;
    gap: 2px;
    color: var(--ovp-navy);
    background: #f8fafc;
}

.ov-product-thumb-more strong {
    font-size: 17px;
    line-height: 1;
}

.ov-product-thumb-more span {
    font-size: 9px;
    font-weight: 800;
}

.ov-product-image-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--ovp-border-soft);
    border-radius: 12px;
    background: #fff;
}

.ov-product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.ov-product-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--ovp-blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ov-product-badge.is-black { background: #111827; }
.ov-product-badge.is-flash,
.ov-product-badge.is-promo { background: var(--ovp-orange); }
.ov-product-badge.is-new { background: var(--ovp-green); }
.ov-product-badge.is-top,
.ov-product-badge.is-featured { background: var(--ovp-blue); }

.ov-product-favorite,
.ov-product-gallery-nav {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid var(--ovp-border);
    border-radius: 999px;
    color: #55708f;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 16px rgba(4, 27, 69, .08);
    cursor: pointer;
}

.ov-product-favorite {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
}

.ov-product-favorite.is-active {
    color: #e11d48;
    background: #fff1f2;
    border-color: #fecdd3;
}

.ov-product-gallery-nav {
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
}

.ov-product-gallery-nav--prev { left: 10px; }
.ov-product-gallery-nav--next { right: 10px; }

.ov-product-favorite svg,
.ov-product-gallery-nav svg {
    width: 20px;
    height: 20px;
}

/* Informations produit */
.ov-product-info-panel {
    padding: 6px 0 0;
}

.ov-product-info-panel h1 {
    margin: 0 0 8px;
    color: #0b1f45;
    font-size: clamp(28px, 2.1vw, 40px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.ov-product-brand-line {
    color: #617086;
    font-size: 14px;
}

.ov-product-brand-line strong {
    color: var(--ovp-blue);
}

.ov-product-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 34px;
    margin-top: 8px;
    color: var(--ovp-muted);
    font-size: 12px;
}

.ov-stars {
    color: #ffb000;
    letter-spacing: .05em;
}

.ov-product-rating-row strong {
    color: var(--ovp-text);
}

.ov-product-rating-row a {
    color: var(--ovp-blue);
    font-weight: 800;
}

.ov-product-sold-by {
    margin-left: 4px;
    padding-left: 10px;
    border-left: 1px solid #d7e0ea;
    color: #53637a;
}

.ov-product-no-rating {
    color: #66758a;
    font-weight: 700;
}

.ov-product-info-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 8px;
}

.ov-product-info-price strong {
    color: var(--ovp-orange);
    font-size: clamp(34px, 2.3vw, 46px);
    line-height: 1;
    letter-spacing: -.025em;
}

.ov-product-info-price span {
    color: #56657a;
    font-size: 13px;
    font-weight: 700;
}

.ov-product-info-price del {
    width: 100%;
    color: #8b97a8;
    font-size: 12px;
}

.ov-product-status-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 18px;
}

.ov-product-status,
.ov-product-delay {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 5px 9px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 850;
}

.ov-product-status svg,
.ov-product-delay svg {
    width: 14px;
    height: 14px;
}

.ov-product-status.is-stock { color: #0b8a42; background: #eaf8f0; }
.ov-product-status.is-order { color: #8a5a00; background: #fff7df; }
.ov-product-status.is-preorder { color: #2157a1; background: #edf5ff; }
.ov-product-status.is-out { color: #b42318; background: #fff0ef; }
.ov-product-delay { color: #6b7280; background: #f1f5f9; }

.ov-product-essential-list {
    margin-top: 10px;
}

.ov-product-essential-list h2 {
    margin: 0;
    padding: 10px 0 9px;
    border-bottom: 1px solid #cfd9e6;
    color: var(--ovp-text);
    font-size: 16px;
}

.ov-product-essential-list dl {
    margin: 0;
}

.ov-product-essential-list dl > div {
    display: grid;
    grid-template-columns: minmax(150px, .9fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 38px;
    padding: 4px 10px;
    border-bottom: 1px solid var(--ovp-border-soft);
}

.ov-product-essential-list dt {
    color: #506078;
    font-size: 12px;
    font-weight: 700;
}

.ov-product-essential-list dd {
    margin: 0;
    color: #0c1d3c;
    font-size: 12px;
    font-weight: 850;
}

.ov-product-info-links {
    margin-top: 14px;
}

.ov-product-info-links button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: var(--ovp-blue);
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.ov-product-info-links svg {
    width: 16px;
    height: 16px;
}

/* Buybox */
.ov-product-buybox {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid #d6e0ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--ovp-shadow);
}

.ov-buybox-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.ov-buybox-price strong {
    color: var(--ovp-orange);
    font-size: 32px;
    line-height: 1;
}

.ov-buybox-price span {
    color: #617086;
    font-size: 12px;
    font-weight: 700;
}

.ov-buybox-delivery {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid var(--ovp-border-soft);
    border-bottom: 1px solid var(--ovp-border-soft);
}

.ov-buybox-delivery > svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    color: var(--ovp-navy);
}

.ov-buybox-delivery div {
    display: grid;
    gap: 4px;
}

.ov-buybox-delivery strong {
    font-size: 13px;
}

.ov-buybox-delivery span {
    color: var(--ovp-muted);
    font-size: 11px;
    line-height: 1.45;
}

.ov-product-cart-form {
    display: grid;
    gap: 12px;
}

.ov-buybox-qty-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ov-buybox-qty-label {
    color: var(--ovp-text);
    font-size: 12px;
    font-weight: 900;
}

.ov-product-qty-row {
    display: grid;
    grid-template-columns: 36px 48px 36px;
    height: 38px;
    overflow: hidden;
    border: 1px solid var(--ovp-border);
    border-radius: 8px;
}

.ov-product-qty-row button,
.ov-product-qty-row input {
    width: 100%;
    border: 0;
    outline: 0;
    text-align: center;
    color: var(--ovp-text);
    background: #fff;
    font-size: 14px;
    font-weight: 900;
}

.ov-product-qty-row button {
    background: #f6f8fb;
    cursor: pointer;
}

.ov-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.ov-product-btn svg {
    width: 18px;
    height: 18px;
}

.ov-product-btn--cart {
    border: 1px solid var(--ovp-orange);
    color: #fff;
    background: linear-gradient(135deg, var(--ovp-orange), var(--ovp-orange-2));
}

.ov-product-btn--buy {
    border: 1px solid #c9ddf8;
    color: var(--ovp-navy);
    background: #edf5ff;
}

.ov-product-order-box {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 11px;
    border-radius: 9px;
    color: #6f5200;
    background: #fff7df;
}

.ov-product-order-box.is-out {
    color: #a12b22;
    background: #fff1f0;
}

.ov-product-order-box > svg {
    width: 25px;
    height: 25px;
}

.ov-product-order-box strong {
    font-size: 12px;
}

.ov-product-order-box p {
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 1.4;
}

.ov-product-payment-block {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--ovp-border-soft);
}

.ov-product-payment-block > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #41516a;
    font-size: 11px;
    font-weight: 900;
}

.ov-product-payment-block > span svg {
    width: 15px;
    height: 15px;
}

.ov-product-payment-block > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.ov-product-payment-block img {
    width: 46px;
    height: 28px;
    padding: 3px;
    object-fit: contain;
    border: 1px solid var(--ovp-border);
    border-radius: 5px;
    background: #fff;
}

.ov-buybox-support {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px;
    border-radius: 9px;
    background: #f6f9fd;
}

.ov-buybox-support > svg {
    width: 30px;
    height: 30px;
    color: var(--ovp-blue);
}

.ov-buybox-support span {
    display: grid;
    gap: 3px;
}

.ov-buybox-support strong {
    font-size: 12px;
}

.ov-buybox-support small {
    color: var(--ovp-muted);
    font-size: 10px;
}

.ov-buybox-support b {
    color: var(--ovp-navy);
    font-size: 11px;
}

/* Négociation */
.ov-real-nego-card {
    border: 1px solid var(--ovp-border);
    border-radius: 9px;
    overflow: hidden;
}

.ov-real-nego-card summary {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    list-style: none;
}

.ov-real-nego-card summary::-webkit-details-marker { display: none; }
.ov-real-nego-card summary div { display: grid; gap: 2px; }
.ov-real-nego-card summary strong { font-size: 11px; }
.ov-real-nego-card summary small { color: var(--ovp-muted); font-size: 9px; }
.ov-real-nego-card summary em { color: var(--ovp-blue); font-size: 9px; font-style: normal; font-weight: 900; }
.ov-real-nego-panel { display: grid; gap: 8px; padding: 0 10px 10px; }
.ov-real-nego-form { display: grid; gap: 7px; }
.ov-real-nego-form label { font-size: 10px; font-weight: 800; }
.ov-real-nego-input-row { display: grid; grid-template-columns: 1fr auto; overflow: hidden; border: 1px solid var(--ovp-border); border-radius: 8px; }
.ov-real-nego-input-row input { height: 38px; padding: 0 10px; border: 0; outline: 0; }
.ov-real-nego-input-row span { display: grid; place-items: center; padding: 0 10px; color: var(--ovp-muted); background: #f8fafc; font-size: 9px; font-weight: 900; }
.ov-real-nego-message { padding: 8px; border-radius: 8px; font-size: 9px; font-weight: 700; }
.ov-real-nego-message.is-success { color: #126b42; background: #eaf8f0; }
.ov-real-nego-message.is-error { color: #a62c2c; background: #fff0f0; }
.ov-negotiation-login { display: inline-flex; justify-content: center; padding: 9px; border-radius: 8px; color: #fff !important; background: var(--ovp-navy); font-size: 9px; font-weight: 900; }

/* Garanties */
.ov-product-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 18px 0;
    overflow: hidden;
    border: 1px solid var(--ovp-border);
    border-radius: 10px;
    background: #fff;
}

.ov-product-trust-strip > div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px 20px;
    border-right: 1px solid var(--ovp-border);
}
.ov-service-card-link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.ov-product-guarantees > div { position: relative; }
.ov-product-trust-strip > div:has(.ov-service-card-link):hover { background: #fff8f3; }

.ov-product-trust-strip > div:last-child {
    border-right: 0;
}

.ov-product-trust-strip > div > svg {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--ovp-blue);
}

.ov-product-trust-strip span {
    display: grid;
    gap: 3px;
}

.ov-product-trust-strip strong {
    color: var(--ovp-text);
    font-size: 12px;
}

.ov-product-trust-strip small {
    color: var(--ovp-muted);
    font-size: 10px;
}

/* ======================================================================
   Onglets + produits similaires
====================================================================== */

.ov-product-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 365px;
    gap: 20px;
    align-items: start;
}

.ov-product-tabs-card,
.ov-similar-sidebar {
    border: 1px solid var(--ovp-border);
    border-radius: 10px;
    background: #fff;
}

.ov-product-tabs-card {
    overflow: hidden;
}

.ov-product-tabs {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    border-bottom: 1px solid var(--ovp-border);
    scrollbar-width: none;
}

.ov-product-tabs::-webkit-scrollbar { display: none; }

.ov-product-tabs button {
    flex: 1 0 auto;
    min-height: 50px;
    padding: 0 15px;
    border: 0;
    border-right: 1px solid var(--ovp-border-soft);
    color: #33445e;
    background: #fff;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.ov-product-tabs button.is-active {
    color: var(--ovp-blue);
    box-shadow: inset 0 -3px 0 var(--ovp-blue);
}

.ov-tab-panel {
    display: none;
    padding: 22px;
}

.ov-tab-panel.is-active {
    display: block;
}

.ov-tab-panel h2 {
    margin: 0 0 12px;
    color: var(--ovp-text);
    font-size: 18px;
}

.ov-tab-panel h3 {
    margin: 0 0 10px;
    color: var(--ovp-text);
    font-size: 16px;
}

.ov-tab-panel p,
.ov-product-description {
    color: #465971;
    font-size: 12px;
    line-height: 1.75;
}

.ov-tab-intro {
    margin-top: -4px;
}

.ov-description-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 26px;
    align-items: start;
}

.ov-description-main {
    min-width: 0;
}

.ov-product-description p {
    margin: 0 0 12px;
}

.ov-about-product {
    padding: 16px 18px;
    border: 1px solid var(--ovp-border);
    border-radius: 8px;
    background: #fbfcfe;
}

.ov-about-product ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
    color: #43556d;
    font-size: 11px;
    line-height: 1.5;
}

.ov-about-product li::marker {
    color: var(--ovp-blue);
}

.ov-check-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ov-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #43556d;
    font-size: 11px;
    line-height: 1.45;
}

.ov-check-list li svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: var(--ovp-green);
    margin-top: 1px;
}

.ov-full-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--ovp-border);
    border-radius: 8px;
    background: var(--ovp-border);
}

.ov-full-spec-list > div {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
}

.ov-full-spec-list span {
    color: var(--ovp-muted);
    font-size: 10px;
}

.ov-full-spec-list strong {
    color: var(--ovp-text);
    font-size: 10px;
}

.ov-file-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #fff !important;
    background: var(--ovp-navy);
    font-size: 10px;
    font-weight: 900;
}

.ov-product-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.ov-product-video-box iframe,
.ov-product-video-box video {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* Calculateur */
.ov-calc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ov-calc-grid label {
    display: grid;
    gap: 5px;
    color: #44556c;
    font-size: 10px;
    font-weight: 800;
}

.ov-calc-grid input,
.ov-calc-grid select {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    border: 1px solid var(--ovp-border);
    border-radius: 8px;
    outline: 0;
    background: #fff;
    font-size: 11px;
}

.ov-calc-grid input:focus,
.ov-calc-grid select:focus {
    border-color: #8dbcf3;
    box-shadow: 0 0 0 3px rgba(5, 104, 232, .08);
}

.ov-calc-button,
.ov-calc-apply {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    border: 0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}

.ov-calc-button { color: #fff; background: var(--ovp-navy); }
.ov-calc-apply { color: #fff; background: var(--ovp-orange); }
.ov-calc-apply:disabled { cursor: not-allowed; opacity: .45; }

.ov-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.ov-calc-results > div {
    display: grid;
    gap: 4px;
    min-height: 76px;
    padding: 11px;
    border: 1px solid var(--ovp-border);
    border-radius: 9px;
    background: var(--ovp-soft);
}

.ov-calc-results span {
    color: var(--ovp-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.ov-calc-results strong {
    color: var(--ovp-navy);
    font-size: 13px;
}

.ov-calc-results small {
    color: var(--ovp-muted);
    font-size: 8px;
    line-height: 1.3;
}

.ov-calc-message {
    margin: 10px 0 0;
    color: var(--ovp-muted);
    font-size: 9px;
    line-height: 1.4;
}

/* Avis */
.ov-review-summary-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ov-review-summary-inline > strong {
    color: var(--ovp-navy);
    font-size: 28px;
}

.ov-review-summary-inline span:last-child {
    color: var(--ovp-muted);
    font-size: 11px;
}

.ov-reviews-list {
    display: grid;
    gap: 10px;
}

.ov-reviews-list article {
    padding: 12px;
    border: 1px solid var(--ovp-border);
    border-radius: 9px;
    background: var(--ovp-soft);
}

.ov-reviews-list article > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ov-reviews-list article > div strong {
    color: var(--ovp-green);
    font-size: 9px;
}

.ov-reviews-list article p {
    margin: 8px 0;
    font-size: 10px;
    line-height: 1.5;
}

.ov-reviews-list article small {
    color: var(--ovp-muted);
    font-size: 9px;
}

/* Produits similaires */
.ov-similar-sidebar {
    padding: 0 0 10px;
    overflow: hidden;
}

.ov-similar-head {
    padding: 14px 16px 10px;
}

.ov-similar-head h2 {
    margin: 0;
    color: var(--ovp-navy);
    font-size: 16px;
}

.ov-similar-list {
    display: grid;
}

.ov-mini-product {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 96px;
    padding: 10px 14px;
    border-top: 1px solid var(--ovp-border-soft);
    background: #fff;
}

.ov-mini-product__image {
    width: 82px;
    height: 72px;
    overflow: hidden;
    border-radius: 7px;
    background: #f7f9fc;
}

.ov-mini-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.ov-mini-product__content {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.ov-mini-product__name {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ovp-text);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ov-mini-product strong {
    color: var(--ovp-orange);
    font-size: 13px;
}

.ov-mini-product strong span {
    color: var(--ovp-muted);
    font-size: 9px;
}

.ov-mini-product__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4d5d74;
    font-size: 9px;
}

.ov-mini-product__rating svg {
    width: 12px;
    height: 12px;
    color: #ffb000;
    fill: currentColor;
}

.ov-mini-product__rating small {
    color: #8592a5;
}

.ov-similar-all {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 10px 14px 0;
    border: 1px solid #d8e4f3;
    border-radius: 7px;
    color: var(--ovp-blue) !important;
    font-size: 10px;
    font-weight: 900;
}

.ov-similar-empty {
    margin: 12px 16px;
    color: var(--ovp-muted);
    font-size: 11px;
}

/* ======================================================================
   Responsive
====================================================================== */

@media (max-width: 1360px) {
    .ov-product-container {
        width: min(calc(100% - 28px), 1320px);
    }

    .ov-product-marketplace {
        grid-template-columns: minmax(420px, 1fr) minmax(360px, .92fr) 330px;
        gap: 18px;
    }

    .ov-product-image-stage {
        min-height: 450px;
    }

    .ov-product-body-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .ov-product-tabs button {
        padding-inline: 11px;
        font-size: 10px;
    }
}

@media (max-width: 1120px) {
    .ov-product-marketplace {
        grid-template-columns: minmax(380px, 1fr) minmax(340px, .95fr);
    }

    .ov-product-buybox {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ov-product-buybox > * {
        min-width: 0;
    }

    .ov-product-cart-form,
    .ov-real-nego-card {
        grid-column: 2;
    }

    .ov-product-payment-block,
    .ov-buybox-support {
        grid-column: 1;
    }

    .ov-product-body-grid {
        grid-template-columns: 1fr;
    }

    .ov-similar-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ov-mini-product:nth-child(odd) {
        border-right: 1px solid var(--ovp-border-soft);
    }
}

@media (max-width: 860px) {
    .ov-product-container {
        width: min(calc(100% - 18px), 820px);
    }

    .ov-product-marketplace {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ov-product-gallery-panel {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .ov-product-thumb,
    .ov-product-thumb-more {
        width: 64px;
        height: 66px;
    }

    .ov-product-image-stage {
        min-height: 0;
        aspect-ratio: 1 / .92;
    }

    .ov-product-info-panel {
        padding: 4px 6px;
    }

    .ov-product-buybox {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .ov-product-cart-form,
    .ov-real-nego-card,
    .ov-product-payment-block,
    .ov-buybox-support {
        grid-column: auto;
    }

    .ov-product-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ov-product-trust-strip > div:nth-child(2) {
        border-right: 0;
    }

    .ov-product-trust-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--ovp-border);
    }

    .ov-description-content {
        grid-template-columns: 1fr;
    }

    .ov-full-spec-list {
        grid-template-columns: 1fr;
    }

    .ov-calc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ov-product-page {
        padding-top: 7px;
    }

    .ov-product-container {
        width: calc(100% - 12px);
    }

    .ov-product-breadcrumb {
        min-height: 28px;
        margin-bottom: 6px;
        font-size: 9px;
    }

    .ov-product-gallery-panel {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ov-product-thumbs {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ov-product-thumbs::-webkit-scrollbar {
        display: none;
    }

    .ov-product-thumb,
    .ov-product-thumb-more {
        width: 58px;
        height: 58px;
    }

    .ov-product-image-stage {
        aspect-ratio: 1 / 1;
    }

    .ov-product-main-image {
        padding: 8px;
    }

    .ov-product-gallery-nav {
        width: 32px;
        height: 32px;
    }

    .ov-product-favorite {
        width: 34px;
        height: 34px;
        top: 8px;
        right: 8px;
    }

    .ov-product-info-panel h1 {
        font-size: 25px;
    }

    .ov-product-info-price strong {
        font-size: 30px;
    }

    .ov-product-essential-list dl > div {
        grid-template-columns: 1fr 1.1fr;
        min-height: 36px;
        padding-inline: 4px;
    }

    .ov-product-essential-list dt,
    .ov-product-essential-list dd {
        font-size: 10px;
    }

    .ov-product-buybox {
        padding: 14px;
    }

    .ov-buybox-price strong {
        font-size: 28px;
    }

    .ov-product-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        margin: 10px 0;
    }

    .ov-product-trust-strip > div {
        min-height: 58px;
        padding: 8px;
        gap: 7px;
    }

    .ov-product-trust-strip > div > svg {
        width: 22px;
        height: 22px;
    }

    .ov-product-trust-strip strong {
        font-size: 9px;
    }

    .ov-product-trust-strip small {
        display: none;
    }

    .ov-product-tabs button {
        min-height: 44px;
        padding-inline: 10px;
        font-size: 9px;
    }

    .ov-tab-panel {
        padding: 14px;
    }

    .ov-tab-panel h2 {
        font-size: 16px;
    }

    .ov-tab-panel p,
    .ov-product-description {
        font-size: 10px;
        line-height: 1.65;
    }

    .ov-calc-grid,
    .ov-calc-results {
        grid-template-columns: 1fr;
    }

    .ov-similar-list {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 10px 4px;
        scrollbar-width: none;
    }

    .ov-similar-list::-webkit-scrollbar {
        display: none;
    }

    .ov-mini-product {
        flex: 0 0 280px;
        border: 1px solid var(--ovp-border-soft);
        border-radius: 8px;
    }
}

/* Maquette fiche produit OVANIE — priorité finale */
.ov-product-page { background: #fff; }
.ov-product-breadcrumb { min-height: 38px; margin-bottom: 12px; }
.ov-product-image-stage { background: #fff; }
.ov-product-main-image { padding: 24px; }
.ov-product-image-stage .ov-product-main-image {
    position: absolute;
    inset: 18px;
    display: block;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    max-width: calc(100% - 36px);
    max-height: calc(100% - 36px);
    margin: auto;
    padding: 0;
    object-fit: contain;
    object-position: center;
}
.ov-product-info-panel h1 { color: var(--ovp-navy); }
.ov-product-info-price strong, .ov-buybox-price strong { color: var(--ovp-orange); }
.ov-product-btn--cart { min-height: 52px; font-size: 15px; }
.ov-product-btn--buy { color: var(--ovp-orange); border-color: var(--ovp-orange); background: #fff; }
.ov-product-tabs button.is-active { color: var(--ovp-navy); box-shadow: inset 0 -3px 0 var(--ovp-orange); }
.ov-product-trust-strip > div > svg { color: var(--ovp-orange); }

@media (min-width: 1101px) {
    .ov-product-container { width: min(calc(100% - 56px), 1280px); }
    .ov-product-marketplace {
        grid-template-columns: minmax(520px, 1.08fr) minmax(440px, .92fr);
        grid-template-rows: auto auto;
        gap: 0 22px;
        align-items: start;
    }
    .ov-product-gallery-panel {
        grid-column: 1;
        grid-row: 1 / span 2;
        display: flex;
        height: 520px;
        min-height: 0;
        flex-direction: column;
        padding: 16px;
        border: 1px solid var(--ovp-border);
        border-radius: 12px;
        background: #fff;
    }
    .ov-product-image-stage { order: 1; width: 100%; height: 390px; min-height: 0; flex: 0 0 390px; border: 0; }
    .ov-product-thumbs {
        order: 2;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        margin-top: 12px;
    }
    .ov-product-thumb, .ov-product-thumb-more { width: 100%; height: 82px; }
    .ov-product-info-panel {
        grid-column: 2;
        grid-row: 1;
        padding: 22px 26px 0;
        border: 1px solid var(--ovp-border);
        border-bottom: 0;
        border-radius: 12px 12px 0 0;
        background: #fff;
    }
    .ov-product-info-panel h1 { font-size: clamp(25px, 1.8vw, 31px); }
    .ov-product-info-price strong { font-size: 32px; }
    .ov-product-essential-list, .ov-product-info-links { display: none; }
    .ov-product-buybox {
        grid-column: 2;
        grid-row: 2;
        align-content: start;
        padding: 12px 26px 20px;
        border-top: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: none;
    }
    .ov-buybox-price { display: none; }
    .ov-product-buybox > .ov-product-status { display: none; }
    .ov-buybox-delivery { padding: 9px 0; }
    .ov-product-payment-block { padding-top: 8px; }
    .ov-product-payment-block > div, .ov-buybox-support { display: none; }
    .ov-product-trust-strip { display: none; }
    .ov-product-body-grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 18px; margin-top: 16px; }
    .ov-product-tabs button:nth-child(n+4) { display: none; }
    .ov-description-content { grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr); }
    .ov-description-points { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
    .ov-description-points li { display: flex; gap: 8px; align-items: center; color: #465971; font-size: 11px; }
    .ov-description-points svg { width: 14px; height: 14px; color: var(--ovp-orange); }
    .ov-compact-specs { padding: 0; overflow: hidden; }
    .ov-compact-specs > div { display: grid; grid-template-columns: 1fr 1.15fr; gap: 12px; min-height: 38px; align-items: center; padding: 7px 12px; border-bottom: 1px solid var(--ovp-border); }
    .ov-compact-specs > div:last-child { border-bottom: 0; }
    .ov-compact-specs span { color: #4b5d76; font-size: 10px; font-weight: 700; }
    .ov-compact-specs strong { color: var(--ovp-navy); font-size: 10px; }
    .ov-product-guarantees {
        display: grid;
        gap: 0;
        padding: 0 20px 14px;
        border: 1px solid var(--ovp-border);
        border-radius: 10px;
        background: #fff;
    }
    .ov-product-guarantees h2 { margin: 0 -20px 6px; padding: 16px 20px; border-bottom: 1px solid var(--ovp-border); font-size: 15px; }
    .ov-product-guarantees > div { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; min-height: 62px; }
    .ov-product-guarantees svg { width: 26px; height: 26px; color: var(--ovp-navy); }
    .ov-product-guarantees span { display: grid; gap: 3px; }
    .ov-product-guarantees strong { font-size: 12px; }
    .ov-product-guarantees small { color: var(--ovp-muted); font-size: 10px; }
    .ov-similar-wide { margin-top: 16px; }
    .ov-similar-sidebar { padding-bottom: 14px; }
    .ov-similar-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 0 14px; }
    .ov-mini-product {
        display: block;
        min-height: 0;
        padding: 0 0 12px;
        overflow: hidden;
        border: 1px solid var(--ovp-border);
        border-radius: 9px;
    }
    .ov-mini-product__image { display: block; width: 100%; height: 170px; border-radius: 0; }
    .ov-mini-product__content { padding: 10px 12px 0; }
    .ov-mini-product__content form { margin-top: 6px; }
    .ov-mini-product__content form button,
    .ov-mini-product__cta {
        display: flex;
        width: 100%;
        min-height: 34px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid var(--ovp-orange);
        border-radius: 6px;
        color: var(--ovp-orange);
        background: #fff;
        font-size: 10px;
        font-weight: 800;
    }
    .ov-mini-product__content form button svg { width: 14px; height: 14px; }
    .ov-similar-all { width: max-content; margin: 12px auto 0; padding: 0 20px; }
}

@media (max-width: 1100px) {
    .ov-product-guarantees {
        display: grid;
        gap: 10px;
        padding: 18px;
        border: 1px solid var(--ovp-border);
        border-radius: 10px;
        background: #fff;
    }
    .ov-product-guarantees h2 { margin: 0 0 5px; font-size: 16px; }
    .ov-product-guarantees > div { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; }
    .ov-product-guarantees svg { width: 24px; height: 24px; color: var(--ovp-orange); }
    .ov-product-guarantees span { display: grid; gap: 2px; }
    .ov-product-guarantees strong { font-size: 12px; }
    .ov-product-guarantees small { color: var(--ovp-muted); font-size: 10px; }
    .ov-similar-wide { margin-top: 14px; }
}
