/*
 * Vente Modern Dark Theme
 * Layered after site.css so existing Laravel functionality remains intact.
 */
:root {
    --vente-red: #ef1b24;
    --vente-red-bright: #ff2932;
    --vente-red-deep: #7d070d;
    --vente-black: #050505;
    --vente-black-2: #090909;
    --vente-panel: #101010;
    --vente-panel-2: #151515;
    --vente-border: rgba(255, 255, 255, .11);
    --vente-muted: #969696;
    --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --ease-vente: cubic-bezier(.16, 1, .3, 1);
}

html { background: var(--vente-black); }
body {
    font-family: var(--font-body);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.brand, .btn, .eyebrow, .main-nav, .product-price,
.catalog-sidebar label, .product-category, .text-link {
    font-family: var(--font-display);
}
h1, h2, h3 { font-weight: 800; }
::selection { color: #fff; background: var(--vente-red); }

.scroll-progress {
    position: fixed;
    z-index: 1000;
    inset: 0 auto auto 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vente-red), #ff5960);
    box-shadow: 0 0 18px rgba(239, 27, 36, .75);
    pointer-events: none;
}

.site-header {
    transition: height .45s var(--ease-vente), background-color .45s ease, transform .45s var(--ease-vente), border-color .35s ease;
}
.site-header.header-solid {
    background: rgba(5, 5, 5, .92);
    border-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.site-header.scrolled {
    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.brand { font-size: 23px; letter-spacing: .19em; }
.brand-mark i { box-shadow: 0 0 12px rgba(239, 27, 36, .24); }
.main-nav a { transition: color .25s ease; }
.main-nav a::after {
    height: 3px;
    background: var(--vente-red);
    box-shadow: 0 0 12px rgba(239, 27, 36, .65);
    transition: width .45s var(--ease-vente);
}
.nav-wa {
    position: relative;
    overflow: hidden;
    border-color: var(--vente-red) !important;
    background: var(--vente-red) !important;
    transition: transform .3s var(--ease-vente), box-shadow .3s ease !important;
}
.nav-wa::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .3) 48%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .65s var(--ease-vente);
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(239, 27, 36, .25); }
.nav-wa:hover::before { transform: translateX(130%); }

.btn {
    position: relative;
    overflow: hidden;
    font-weight: 800;
    transition: transform .35s var(--ease-vente), background-color .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.btn::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: var(--ripple-x, 50%);
    top: var(--ripple-y, 50%);
    background: rgba(255, 255, 255, .28);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}
.btn.is-rippling::after { animation: vente-ripple .65s ease-out; }
.btn-red { background: var(--vente-red); }
.btn-red:hover { background: var(--vente-red-bright); box-shadow: 0 18px 42px rgba(239, 27, 36, .28); }

.vente-dark-page { color: #fff; background: var(--vente-black); }
.vente-dark-page main { background: var(--vente-black); }

/* Motion primitives */
.motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
    filter: blur(4px);
    transition: opacity .9s var(--ease-vente), transform .9s var(--ease-vente), filter .9s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="left"] { transform: translate3d(-46px, 0, 0); }
.motion-ready [data-reveal="right"] { transform: translate3d(46px, 0, 0); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }

/* Catalog hero */
.vente-catalog-hero {
    min-height: 690px;
    padding: 190px 0 96px;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 40%, rgba(239, 27, 36, .23), transparent 27%),
        linear-gradient(117deg, #050505 0%, #0b0b0b 52%, #190205 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.vente-catalog-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 65%, rgba(239, 27, 36, .035) 65% 66%, transparent 66%);
}
.vente-catalog-hero::after { display: none; }
.hero-grid-lines,
.detail-grid-lines {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-red-orbit {
    position: absolute;
    z-index: -1;
    right: -180px;
    top: 80px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(239, 27, 36, .38);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(239, 27, 36, .025), 0 0 0 145px rgba(239, 27, 36, .018);
}
.hero-red-orbit::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    left: 44px;
    top: 76px;
    border-radius: 50%;
    background: var(--vente-red);
    box-shadow: 0 0 25px rgba(239, 27, 36, .9);
    animation: vente-pulse 2.6s ease-in-out infinite;
}
.vente-catalog-hero .container { position: relative; z-index: 2; }
.vente-catalog-hero .eyebrow {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--vente-red);
    margin-bottom: 27px;
}
.vente-catalog-hero .eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--vente-red); }
.vente-catalog-hero .eyebrow span { color: #777; }
.vente-catalog-hero h1 {
    display: flex;
    flex-direction: column;
    width: min-content;
    min-width: min(100%, 900px);
    font-size: clamp(64px, 9vw, 126px);
    line-height: .81;
    letter-spacing: -.075em;
    text-transform: uppercase;
    margin: 0;
}
.vente-catalog-hero h1 span { color: #fff; }
.vente-catalog-hero h1 strong {
    font: inherit;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .82);
    transform: translateX(clamp(18px, 7vw, 115px));
}
.catalog-hero-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
    margin-top: 58px;
}
.catalog-hero-bottom > p {
    max-width: 590px !important;
    margin: 0;
    color: #9c9c9c !important;
    font-size: 16px !important;
    line-height: 1.75;
}
.catalog-hero-stats { display: flex; align-items: stretch; border: 1px solid rgba(255, 255, 255, .12); }
.catalog-hero-stats div { min-width: 125px; padding: 19px 22px 17px; border-right: 1px solid rgba(255, 255, 255, .12); }
.catalog-hero-stats div:last-child { border-right: 0; }
.catalog-hero-stats strong { display: block; font: 800 25px/1 var(--font-display); color: #fff; }
.catalog-hero-stats span { display: block; margin-top: 7px; font: 700 8px/1 var(--font-display); color: #747474; letter-spacing: .16em; }
.hero-running-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .2);
    font: 800 10px/40px var(--font-display);
    letter-spacing: .22em;
    white-space: nowrap;
}
.hero-running-text span { min-width: max-content; animation: vente-marquee 22s linear infinite; }

/* Catalog body */
.vente-catalog-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0 125px;
    color: #fff;
    background: var(--vente-black) !important;
}
.catalog-red-glow {
    position: absolute;
    z-index: -1;
    right: -420px;
    top: 120px;
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, rgba(239, 27, 36, .13), transparent 65%);
    pointer-events: none;
}
.vente-catalog-section .catalog-layout { grid-template-columns: 280px minmax(0, 1fr); gap: 54px; }
.vente-catalog-section .catalog-sidebar {
    position: sticky;
    top: 105px;
    align-self: start;
    padding: 0 !important;
    color: #fff;
    background: transparent !important;
    border: 1px solid var(--vente-border) !important;
    box-shadow: none !important;
}
.sidebar-heading {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px;
    background: var(--vente-red);
}
.sidebar-heading > span { font: 800 31px/1 var(--font-display); color: rgba(255, 255, 255, .42); }
.sidebar-heading small { display: block; font: 700 8px/1 var(--font-display); letter-spacing: .18em; color: rgba(255, 255, 255, .7); }
.sidebar-heading strong { display: block; margin-top: 5px; font: 800 15px/1.2 var(--font-display); }
.vente-catalog-section .catalog-sidebar form { padding: 26px 22px 22px; }
.vente-catalog-section .catalog-sidebar label { color: #757575; margin-top: 4px; }
.vente-catalog-section .search-box { height: 48px; border-color: var(--vente-border); background: #0e0e0e; }
.vente-catalog-section .search-box input { color: #fff; background: transparent; }
.vente-catalog-section .search-box input::placeholder { color: #626262; }
.vente-catalog-section .search-box button { width: 50px; color: #fff; background: var(--vente-red); cursor: pointer; transition: background .25s ease; }
.vente-catalog-section .search-box button:hover { background: var(--vente-red-bright); }
.vente-catalog-section .category-filter {
    position: relative;
    padding: 13px 0;
    color: #a5a5a5;
    border-color: rgba(255, 255, 255, .08);
    transition: color .3s ease, padding-left .35s var(--ease-vente);
}
.vente-catalog-section .category-filter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--vente-red);
    transition: width .35s var(--ease-vente);
}
.vente-catalog-section .category-filter:hover,
.vente-catalog-section .category-filter.active { color: #fff; padding-left: 19px; }
.vente-catalog-section .category-filter:hover::before,
.vente-catalog-section .category-filter.active::before { width: 11px; }
.vente-catalog-section .category-filter b { color: #5f5f5f; font-weight: 600; }
.sidebar-help { padding: 23px 22px 25px; border-top: 1px solid var(--vente-border); background: #0c0c0c; }
.sidebar-help > span { color: var(--vente-red); font: 800 9px/1 var(--font-display); letter-spacing: .16em; }
.sidebar-help p { color: #777; font-size: 12px; line-height: 1.6; }
.sidebar-help a { display: flex; justify-content: space-between; color: #fff; font: 800 9px/1 var(--font-display); letter-spacing: .11em; }
.sidebar-help a b { color: var(--vente-red); font-size: 14px; }
.vente-catalog-section .catalog-toolbar {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 0 20px !important;
    margin-bottom: 28px;
    color: #fff;
    background: #0d0d0d !important;
    border: 1px solid var(--vente-border) !important;
}
.vente-catalog-section .catalog-toolbar > div { display: flex; align-items: center; gap: 16px; }
.toolbar-index { font: 800 25px/1 var(--font-display); color: var(--vente-red); }
.vente-catalog-section .catalog-toolbar p { margin: 0; color: #777; }
.vente-catalog-section .catalog-toolbar p strong { color: #fff; }
.vente-catalog-section .catalog-toolbar select {
    min-height: 42px;
    color: #ddd;
    border-color: rgba(255, 255, 255, .14);
    background: #151515;
    outline: none;
}
.vente-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vente-product-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-width: 0;
    padding: 0 !important;
    color: #fff;
    background: #0d0d0d !important;
    border: 1px solid var(--vente-border) !important;
    box-shadow: none !important;
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-vente), border-color .35s ease, box-shadow .5s var(--ease-vente) !important;
    will-change: transform;
}
.vente-product-card:hover {
    transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-8px) !important;
    border-color: rgba(239, 27, 36, .55) !important;
    box-shadow: 0 28px 65px rgba(0, 0, 0, .45), 0 0 0 1px rgba(239, 27, 36, .08) !important;
}
.vente-product-card .product-thumb {
    position: relative;
    aspect-ratio: 1 / .93;
    background: #131313 !important;
    border-bottom: 1px solid var(--vente-border);
    isolation: isolate;
}
.vente-product-card .product-thumb::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 36px 36px;
}
.vente-product-card .product-thumb img {
    position: relative;
    z-index: 2;
    padding: 24px;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .25));
    transition: transform .65s var(--ease-vente), filter .45s ease;
}
.vente-product-card:hover .product-thumb img { transform: scale(1.075) translateY(-4px); filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .38)); }
.product-image-glow {
    position: absolute;
    z-index: 1;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 27, 36, .22), transparent 68%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.vente-product-card:hover .product-image-glow { opacity: 1; }
.card-corner-index,
.card-view-icon { position: absolute; z-index: 4; font-family: var(--font-display); }
.card-corner-index { left: 16px; top: 15px; color: #5c5c5c; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.card-view-icon {
    right: 14px;
    top: 13px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-8px, 8px) rotate(-35deg);
    transition: opacity .35s ease, transform .45s var(--ease-vente), background .3s ease;
}
.vente-product-card:hover .card-view-icon { opacity: 1; transform: translate(0, 0) rotate(0); background: var(--vente-red); border-color: var(--vente-red); }
.vente-product-card .badge-sale { left: 15px; top: auto; bottom: 15px; }
.vente-product-card .product-card-body { padding: 22px 20px 20px !important; }
.product-card-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vente-product-card .product-category { color: var(--vente-red); }
.product-status { color: #565656; font: 700 8px/1 var(--font-display); letter-spacing: .16em; }
.vente-product-card h3 { min-height: 48px; margin: 11px 0 18px; font-size: 17px; line-height: 1.42; color: #f3f3f3; }
.vente-product-card h3 a { transition: color .25s ease; }
.vente-product-card h3 a:hover { color: #fff; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, .08); }
.vente-product-card .product-price { margin: 0; color: #fff; font-size: 14px; }
.vente-product-card .product-link { display: flex; align-items: center; gap: 10px; color: #777; }
.vente-product-card .product-link b { color: var(--vente-red); font-size: 16px; transition: transform .3s var(--ease-vente); }
.vente-product-card:hover .product-link b { transform: translateX(4px); }
.vente-catalog-section .pagination-wrap { margin-top: 55px; }
.vente-catalog-section .page-link { color: #b0b0b0; border-color: var(--vente-border); background: #0d0d0d; }
.vente-catalog-section .page-item.active .page-link,
.vente-catalog-section .page-link:hover { color: #fff; border-color: var(--vente-red); background: var(--vente-red); }
.vente-catalog-section .empty-state { color: #fff; background: #0d0d0d; border: 1px solid var(--vente-border); }
.vente-catalog-section .empty-state p { color: #777; }

/* Product detail */
.vente-product-detail {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding: 145px 0 110px !important;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(239, 27, 36, .14), transparent 26%),
        linear-gradient(130deg, #050505 0%, #090909 64%, #140204 100%) !important;
}
.vente-product-detail .product-detail-accent {
    z-index: -1;
    right: -260px;
    top: -260px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(239, 27, 36, .2);
    background: radial-gradient(circle, rgba(239, 27, 36, .12), transparent 64%);
}
.detail-red-slash {
    position: absolute;
    z-index: -1;
    left: -160px;
    bottom: 80px;
    width: 620px;
    height: 90px;
    background: linear-gradient(90deg, transparent, rgba(239, 27, 36, .13), transparent);
    transform: rotate(-31deg);
    filter: blur(8px);
}
.vente-product-detail .breadcrumbs { color: #606060; margin-bottom: 22px; }
.vente-product-detail .breadcrumbs a:hover { color: var(--vente-red); }
.detail-intro-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 13px 0;
    margin-bottom: 33px;
    color: #666;
    border-top: 1px solid var(--vente-border);
    border-bottom: 1px solid var(--vente-border);
    font: 700 8px/1 var(--font-display);
    letter-spacing: .17em;
}
.detail-intro-line span { color: var(--vente-red); }
.vente-product-detail .product-detail-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: 34px; }
.vente-product-detail .gallery { position: sticky; top: 105px; }
.vente-product-detail .gallery-main {
    aspect-ratio: 1.06;
    background: #111 !important;
    border: 1px solid var(--vente-border) !important;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .38) !important;
}
.vente-product-detail .gallery-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 45px 45px;
}
.vente-product-detail .gallery-main::after { inset: 19px; border-color: rgba(255, 255, 255, .08); }
.vente-product-detail .gallery-main img {
    padding: 52px;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .35));
    transition: transform .24s ease-out, transform-origin .15s ease;
    will-change: transform;
}
.vente-product-detail .gallery-main:hover img { transform: scale(1.08); }
.gallery-sequence {
    position: absolute;
    z-index: 5;
    left: 25px;
    top: 22px;
    color: #5b5b5b;
    font: 700 9px/1 var(--font-display);
    letter-spacing: .16em;
}
.vente-product-detail .gallery-sale { left: auto; right: 24px; top: 22px; }
.vente-product-detail .gallery-watermark { color: rgba(255, 255, 255, .028); font-size: clamp(72px, 9vw, 122px); bottom: -25px; }
.gallery-scanline {
    position: absolute;
    z-index: 4;
    left: 5%;
    right: 5%;
    top: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 27, 36, .65), transparent);
    opacity: 0;
    box-shadow: 0 0 14px rgba(239, 27, 36, .55);
    pointer-events: none;
}
.gallery-main:hover .gallery-scanline { opacity: 1; animation: vente-scan 2.2s linear infinite; }
.gallery-corner { position: absolute; z-index: 5; width: 28px; height: 28px; pointer-events: none; }
.gallery-corner-a { left: 18px; bottom: 18px; border-left: 2px solid var(--vente-red); border-bottom: 2px solid var(--vente-red); }
.gallery-corner-b { right: 18px; top: 18px; border-right: 2px solid var(--vente-red); border-top: 2px solid var(--vente-red); }
.vente-product-detail .gallery-thumbs { gap: 9px; margin-top: 10px; }
.vente-product-detail .gallery-thumbs button {
    position: relative;
    width: 92px;
    height: 92px;
    padding: 5px;
    color: #fff;
    background: #101010;
    border-color: var(--vente-border);
    overflow: hidden;
}
.vente-product-detail .gallery-thumbs button > span {
    position: absolute;
    z-index: 3;
    left: 6px;
    top: 6px;
    color: #777;
    font: 700 7px/1 var(--font-display);
}
.vente-product-detail .gallery-thumbs button.active,
.vente-product-detail .gallery-thumbs button:hover { border-color: var(--vente-red); box-shadow: inset 0 0 0 1px var(--vente-red); }
.gallery-caption { display: flex; align-items: center; gap: 13px; margin-top: 16px; color: #585858; font: 700 8px/1 var(--font-display); letter-spacing: .14em; }
.gallery-caption i { flex: 1; height: 1px; background: rgba(255, 255, 255, .09); }
.gallery-caption b { color: #747474; }
.vente-product-detail .product-info {
    padding: 39px 38px 34px !important;
    color: #fff;
    background: linear-gradient(150deg, #111 0%, #0c0c0c 68%, #170205 100%) !important;
    border: 1px solid rgba(255, 255, 255, .12);
    border-top: 4px solid var(--vente-red);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .4) !important;
}
.vente-product-detail .product-kicker { color: #666; border-color: rgba(255, 255, 255, .09); }
.product-title-wrap { position: relative; }
.product-title-wrap::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 7px;
    width: 4px;
    height: 54px;
    background: var(--vente-red);
    box-shadow: 0 0 18px rgba(239, 27, 36, .5);
}
.vente-product-detail .product-info h1 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(39px, 4.3vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
    text-transform: uppercase;
}
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 21px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.vente-product-detail .detail-price { margin: 0; color: var(--vente-red); font-size: 26px; }
.price-row > span { color: #575757; font: 700 8px/1 var(--font-display); letter-spacing: .16em; }
.vente-product-detail .short-desc { padding-top: 21px; color: #a0a0a0; border-top: 0; font-size: 14px; line-height: 1.8; }
.vente-product-detail .variant-label { color: #777; }
.select-shell { position: relative; }
.select-shell > span { position: absolute; right: 17px; top: 50%; color: var(--vente-red); transform: translateY(-50%); pointer-events: none; }
.vente-product-detail .variant-select {
    min-height: 56px;
    padding-right: 45px;
    color: #fff;
    background: #151515;
    border-color: rgba(255, 255, 255, .14);
    appearance: none;
}
.vente-product-detail .variant-select:focus { border-color: var(--vente-red); box-shadow: 0 0 0 3px rgba(239, 27, 36, .1); }
.vente-product-detail .quantity-wrap { align-items: center; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .08); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.vente-product-detail .quantity-wrap label { display: block; color: #fff; }
.vente-product-detail .quantity-wrap small { display: block; margin-top: 4px; color: #5f5f5f; font-size: 9px; }
.vente-product-detail .quantity-control { color: #fff; background: #121212; border-color: rgba(255, 255, 255, .15); }
.vente-product-detail .quantity-control button { color: #fff; background: #1a1a1a; }
.vente-product-detail .quantity-control button:hover { background: var(--vente-red); }
.vente-product-detail .quantity-control input { color: #fff; background: #111; }
.vente-product-detail .product-actions { gap: 9px; }
.btn-modern { min-height: 58px; display: flex; justify-content: space-between; padding-inline: 22px !important; }
.btn-modern b { font-size: 17px; transition: transform .3s var(--ease-vente); }
.btn-modern:hover b { transform: translateX(4px); }
.vente-product-detail .product-actions .btn-outline { color: #fff; background: transparent; border-color: rgba(255, 255, 255, .2); }
.vente-product-detail .product-actions .btn-outline:hover { color: #fff; background: #1a1a1a; border-color: rgba(255, 255, 255, .42); }
.vente-product-detail .checkout-demo-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: start;
    padding: 14px;
    color: #737373;
    background: rgba(239, 27, 36, .055);
    border: 1px solid rgba(239, 27, 36, .2);
    border-left: 3px solid var(--vente-red);
}
.vente-product-detail .checkout-demo-note strong { color: var(--vente-red); font: 800 8px/1.4 var(--font-display); letter-spacing: .12em; }
.vente-product-detail .checkout-demo-note span { line-height: 1.55; }
.vente-product-detail .product-meta { border-color: rgba(255, 255, 255, .1); }
.vente-product-detail .product-meta > div { border-color: rgba(255, 255, 255, .08); }
.vente-product-detail .product-meta dt { color: #676767; }
.vente-product-detail .product-meta dd { color: #b7b7b7; }

/* Product tabs and related products */
.vente-product-tabs {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 105px !important;
    background: #0b0b0b !important;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.tabs-red-orbit {
    position: absolute;
    z-index: -1;
    right: -220px;
    bottom: -340px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    border: 1px solid rgba(239, 27, 36, .2);
    box-shadow: 0 0 0 95px rgba(239, 27, 36, .025), 0 0 0 190px rgba(239, 27, 36, .015);
}
.tabs-heading-row { display: flex; justify-content: space-between; gap: 35px; align-items: end; margin-bottom: 55px; }
.tabs-heading-row > div { display: flex; align-items: end; gap: 15px; }
.tabs-heading-row span { color: var(--vente-red); font: 800 52px/.8 var(--font-display); }
.tabs-heading-row small { color: #777; font: 700 9px/1 var(--font-display); letter-spacing: .17em; }
.tabs-heading-row p { max-width: 440px; margin: 0; color: #777; font-size: 13px; }
.vente-product-tabs .tab-buttons { gap: 0; border-color: rgba(255, 255, 255, .13); }
.vente-product-tabs .tab-buttons button {
    flex: 1;
    min-height: 62px;
    padding: 0 20px;
    color: #646464;
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-bottom-width: 2px;
    transition: color .3s ease, background .3s ease;
}
.vente-product-tabs .tab-buttons button:first-child { border-left: 0; }
.vente-product-tabs .tab-buttons button span { margin-right: 8px; color: #3f3f3f; }
.vente-product-tabs .tab-buttons button.active,
.vente-product-tabs .tab-buttons button:hover { color: #fff; background: rgba(255, 255, 255, .025); border-bottom-color: var(--vente-red); }
.vente-product-tabs .tab-panel { padding: 60px 0 10px; }
.vente-product-tabs .tab-panel.active { animation: vente-tab-in .65s var(--ease-vente); }
.vente-product-tabs .tab-panel h2 { color: #fff; text-transform: uppercase; }
.vente-product-tabs .prose { max-width: 820px; color: #929292; }
.vente-related-products {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #060606 !important;
}
.related-running-copy {
    position: absolute;
    right: -40px;
    top: 40px;
    color: rgba(255, 255, 255, .025);
    font: 900 clamp(60px, 10vw, 145px)/1 var(--font-display);
    white-space: nowrap;
    pointer-events: none;
}
.vente-related-products .container { position: relative; }
.vente-related-products .section-heading h2 { color: #fff; text-transform: uppercase; }
.vente-related-products .section-heading .text-link { color: #fff; }

/* Footer polish */
.footer { border-top-color: rgba(255, 255, 255, .1); }
.footer-grid a { transition: color .25s ease, transform .25s var(--ease-vente); }
.footer-grid a:hover { transform: translateX(4px); }
.floating-wa { box-shadow: 0 12px 34px rgba(239, 27, 36, .35); animation: vente-float 3s ease-in-out infinite; }

@keyframes vente-ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: .8; }
    100% { transform: translate(-50%, -50%) scale(24); opacity: 0; }
}
@keyframes vente-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 14px rgba(239, 27, 36, .55); }
    50% { transform: scale(1.35); box-shadow: 0 0 34px rgba(239, 27, 36, .95); }
}
@keyframes vente-marquee { to { transform: translateX(-100%); } }
@keyframes vente-scan {
    0% { top: 10%; }
    50% { top: 88%; }
    100% { top: 10%; }
}
@keyframes vente-tab-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes vente-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (max-width: 1120px) {
    .vente-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-hero-bottom { grid-template-columns: 1fr; gap: 34px; }
    .catalog-hero-stats { width: max-content; }
    .vente-product-detail .product-detail-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr); }
    .vente-product-detail .product-info { padding: 32px 28px 28px !important; }
    .product-title-wrap::before { left: -29px; }
}

@media (max-width: 900px) {
    .vente-catalog-hero { min-height: 640px; padding-top: 155px; }
    .vente-catalog-hero h1 strong { transform: translateX(0); }
    .vente-catalog-section .catalog-layout { grid-template-columns: 1fr; }
    .vente-catalog-section .catalog-sidebar { position: relative; top: 0; }
    .vente-catalog-section .catalog-sidebar form { display: block; }
    .sidebar-help { display: none; }
    .vente-product-detail .product-detail-grid { grid-template-columns: 1fr; }
    .vente-product-detail .gallery { position: relative; top: 0; }
    .tabs-heading-row { display: block; }
    .tabs-heading-row p { margin-top: 24px; }
}

@media (max-width: 700px) {
    .motion-ready [data-reveal] { transform: translate3d(0, 24px, 0); }
    .vente-catalog-hero { min-height: 590px; padding: 135px 0 80px; }
    .vente-catalog-hero h1 { min-width: 100%; font-size: clamp(53px, 17vw, 80px); }
    .vente-catalog-hero h1 strong { -webkit-text-stroke-width: 1px; }
    .vente-catalog-hero .eyebrow span { display: none; }
    .catalog-hero-bottom { margin-top: 38px; }
    .catalog-hero-stats { width: 100%; }
    .catalog-hero-stats div { min-width: 0; flex: 1; padding: 15px 12px; }
    .catalog-hero-stats strong { font-size: 20px; }
    .vente-catalog-section { padding: 72px 0 90px; }
    .vente-catalog-section .catalog-toolbar { align-items: stretch; flex-direction: column; padding: 17px !important; gap: 13px; }
    .vente-catalog-section .catalog-toolbar form,
    .vente-catalog-section .catalog-toolbar select { width: 100%; }
    .vente-product-grid { grid-template-columns: 1fr; }
    .vente-product-card .product-thumb { aspect-ratio: 1.14; }
    .vente-product-detail { padding-top: 115px !important; }
    .detail-intro-line { align-items: flex-start; flex-direction: column; }
    .vente-product-detail .gallery-main { aspect-ratio: 1; }
    .vente-product-detail .gallery-main img { padding: 32px; }
    .gallery-caption { display: none; }
    .vente-product-detail .product-info { padding: 29px 22px 24px !important; }
    .product-title-wrap::before { left: -23px; }
    .vente-product-detail .product-info h1 { font-size: 38px; }
    .price-row { align-items: flex-start; flex-direction: column; gap: 8px; }
    .vente-product-detail .product-actions { grid-template-columns: 1fr; }
    .vente-product-detail .checkout-demo-note { grid-template-columns: 1fr; }
    .vente-product-tabs { padding: 75px 0 !important; }
    .tabs-heading-row span { font-size: 42px; }
    .vente-product-tabs .tab-buttons { overflow-x: auto; }
    .vente-product-tabs .tab-buttons button { flex: 0 0 auto; min-width: 170px; }
    .vente-product-tabs .tab-panel { padding-top: 45px; }
}

@media (max-width: 480px) {
    .catalog-hero-stats div:last-child { display: none; }
    .vente-product-detail .gallery-thumbs button { width: 72px; height: 72px; }
    .vente-product-detail .quantity-wrap { align-items: flex-start; flex-direction: column; }
    .vente-product-detail .quantity-control { width: 100%; grid-template-columns: 50px 1fr 50px; }
    .tabs-heading-row > div { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .motion-ready [data-reveal] { opacity: 1; filter: none; transform: none; }
    .vente-product-card:hover { transform: translateY(-4px) !important; }
}


/* =========================================================
   V5 — Readable typography
   Cleaner type, stronger contrast, and less decorative text.
   ========================================================= */
body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-variant-ligatures: common-ligatures;
}
body {
    color: var(--ink, #171717);
    font-size: 16px;
    line-height: 1.65;
}
h1, h2, h3, h4, h5, h6,
.brand, .btn, .eyebrow, .main-nav,
.product-price, .catalog-sidebar label,
.product-category, .text-link {
    font-family: var(--font-display);
    font-optical-sizing: auto;
}
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.035em;
}
p, li, dd, input, select, textarea {
    letter-spacing: 0;
}

/* Navigation and reusable small labels */
.brand {
    font-weight: 800;
    letter-spacing: .11em;
}
.brand-logo {
    display: block;
    height: 36px;
    width: auto;
    background: #fff;
    padding: 7px 14px;
    border-radius: 9px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}
.brand-footer.brand .brand-logo {
    height: 32px;
}
@media (max-width: 800px) {
    .brand-logo {
        height: 28px;
        padding: 5px 11px;
        border-radius: 7px;
    }
}
.main-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .055em;
}
.nav-wa,
.btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .055em;
}
.eyebrow {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .105em;
}
.footer h4 {
    font-size: 12px;
    letter-spacing: .08em;
}
.footer-grid > div > p,
.footer-grid > div:not(:first-child) a {
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.75;
}

/* Catalog hero — solid, legible headline */
.vente-catalog-hero .eyebrow span {
    color: #b0b0b0;
}
.vente-catalog-hero h1 {
    width: auto;
    min-width: 0;
    max-width: 1040px;
    font-size: clamp(58px, 8.2vw, 112px);
    line-height: .94;
    letter-spacing: -.052em;
}
.vente-catalog-hero h1 span,
.vente-catalog-hero h1 strong {
    display: block;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: 0 8px 40px rgba(0, 0, 0, .32);
}
.vente-catalog-hero h1 strong {
    color: var(--vente-red-bright);
    transform: none;
}
.catalog-hero-bottom > p {
    color: #c2c2c2 !important;
    font-size: 17px !important;
    line-height: 1.75;
}
.catalog-hero-stats strong {
    font-weight: 700;
}
.catalog-hero-stats span,
.hero-running-text {
    letter-spacing: .1em;
}
.catalog-hero-stats span {
    color: #a2a2a2;
    font-size: 10px;
}
.hero-running-text {
    color: rgba(255,255,255,.38);
    font-weight: 600;
}

/* Catalog controls */
.sidebar-heading > span {
    font-weight: 700;
}
.sidebar-heading small,
.sidebar-help > span,
.sidebar-help a,
.product-status,
.card-corner-index {
    letter-spacing: .075em;
}
.sidebar-heading small {
    color: rgba(255,255,255,.88);
    font-size: 10px;
}
.sidebar-heading strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}
.vente-catalog-section .catalog-sidebar label {
    color: #b4b4b4;
    font-size: 11px;
    letter-spacing: .065em;
}
.vente-catalog-section .search-box input,
.vente-catalog-section .catalog-toolbar,
.vente-catalog-section .catalog-toolbar select,
.vente-catalog-section .category-filter {
    font-size: 14px;
}
.vente-catalog-section .category-filter {
    color: #c1c1c1;
}
.vente-catalog-section .category-filter b {
    color: #949494;
}
.sidebar-help > span {
    font-size: 10px;
}
.sidebar-help p {
    color: #b1b1b1;
    font-size: 13px;
    line-height: 1.7;
}
.sidebar-help a {
    font-size: 11px;
}
.vente-catalog-section .catalog-toolbar p {
    color: #b1b1b1;
}

/* Product cards */
.vente-product-card .product-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
}
.product-status {
    color: #9a9a9a;
    font-size: 9px;
    font-weight: 600;
}
.vente-product-card h3 {
    min-height: 54px;
    margin: 12px 0 19px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -.012em;
}
.vente-product-card .product-price {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.vente-product-card .product-link {
    color: #b3b3b3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .045em;
}
.vente-catalog-section .page-link {
    color: #d0d0d0;
}
.vente-catalog-section .empty-state p {
    color: #b5b5b5;
}

/* Product detail */
.vente-product-detail .breadcrumbs {
    color: #a9a9a9;
    font-size: 13px;
}
.detail-intro-line {
    color: #adadad;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .075em;
}
.gallery-caption {
    color: #a0a0a0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .065em;
}
.gallery-caption b {
    color: #b6b6b6;
}
.vente-product-detail .product-kicker {
    color: #a8a8a8;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .075em;
}
.vente-product-detail .product-info h1 {
    margin: 14px 0 20px;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.038em;
    text-transform: none;
    overflow-wrap: anywhere;
}
.vente-product-detail .detail-price {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.025em;
}
.price-row > span {
    color: #a4a4a4;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .075em;
}
.vente-product-detail .short-desc {
    color: #c3c3c3;
    font-size: 15px;
    line-height: 1.8;
}
.vente-product-detail .variant-label,
.vente-product-detail .quantity-wrap label {
    color: #e8e8e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .035em;
}
.vente-product-detail .quantity-wrap small {
    color: #aaa;
    font-size: 11px;
}
.vente-product-detail .variant-select,
.vente-product-detail .quantity-control {
    font-size: 14px;
}
.vente-product-detail .checkout-demo-note {
    color: #bdbdbd;
    font-size: 12px;
}
.vente-product-detail .checkout-demo-note strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}
.vente-product-detail .product-meta dt {
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
}
.vente-product-detail .product-meta dd {
    color: #d0d0d0;
    font-size: 13px;
}

/* Tabs and supporting copy */
.tabs-heading-row span {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}
.tabs-heading-row small {
    color: #b1b1b1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
}
.tabs-heading-row p {
    color: #b5b5b5;
    font-size: 14px;
    line-height: 1.7;
}
.vente-product-tabs .tab-buttons button {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .035em;
}
.vente-product-tabs .tab-panel h2,
.vente-related-products .section-heading h2 {
    text-transform: none;
    font-weight: 700;
    line-height: 1.12;
}
.vente-product-tabs .prose {
    color: #c0c0c0;
    font-size: 16px;
    line-height: 1.9;
}
.related-running-copy {
    font-weight: 700;
    letter-spacing: -.04em;
}

@media (max-width: 760px) {
    body { font-size: 15px; }
    .main-nav a { font-size: 14px; }
    .vente-catalog-hero h1 {
        font-size: clamp(48px, 15vw, 72px);
        line-height: .98;
        letter-spacing: -.045em;
    }
    .catalog-hero-bottom > p { font-size: 15px !important; }
    .vente-product-card h3 {
        min-height: 0;
        font-size: 17px;
    }
    .vente-product-detail .product-info h1 {
        font-size: 36px;
        line-height: 1.12;
    }
    .tabs-heading-row span { font-size: 39px; }
}

/* v6 — WooCommerce rich product content */
.product-rich-text {
    overflow-wrap: anywhere;
}
.product-rich-text > :first-child {
    margin-top: 0 !important;
}
.product-rich-text > :last-child {
    margin-bottom: 0 !important;
}
.product-rich-text p {
    margin: 0 0 16px;
}
.product-rich-text strong,
.product-rich-text b {
    color: #f4f4f4;
    font-weight: 750;
}
.product-rich-text em,
.product-rich-text i {
    color: #d7d7d7;
}
.product-rich-text ul,
.product-rich-text ol {
    display: grid;
    gap: 10px;
    margin: 14px 0 22px;
    padding-left: 23px;
}
.product-rich-text li {
    padding-left: 5px;
    line-height: 1.75;
}
.product-rich-text li::marker {
    color: var(--red);
    font-weight: 800;
}
.product-rich-text h2,
.product-rich-text h3,
.product-rich-text h4 {
    margin: 28px 0 12px;
    color: #fff;
    font-family: var(--font-display, "Manrope", sans-serif);
    line-height: 1.25;
    letter-spacing: -.025em;
}
.product-rich-text h2 { font-size: clamp(24px, 3vw, 34px); }
.product-rich-text h3 { font-size: clamp(20px, 2.3vw, 27px); }
.product-rich-text h4 { font-size: 18px; }
.product-rich-text blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 3px solid var(--red);
    background: rgba(255, 255, 255, .035);
    color: #d8d8d8;
}
.product-rich-text table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    font-size: 14px;
}
.product-rich-text th,
.product-rich-text td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .11);
    text-align: left;
    vertical-align: top;
}
.product-rich-text th {
    color: #fff;
    background: rgba(237, 28, 36, .13);
}
.vente-product-detail .short-desc.product-rich-text {
    color: #c9c9c9;
}
.vente-product-detail .short-desc.product-rich-text ul,
.vente-product-detail .short-desc.product-rich-text ol {
    margin-bottom: 10px;
}
@media (max-width: 760px) {
    .product-rich-text ul,
    .product-rich-text ol {
        padding-left: 20px;
    }
    .product-rich-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* =========================================================
   About & Partners pages — align with dark red theme
   These pages used the old light-card design; body text color
   is now near-white site-wide, so light backgrounds need to
   become dark panels instead (rather than re-darkening text).
   ========================================================= */
body.about-page .section.light,
body.about-page .values,
body.about-page .brands,
body.about-page .legal {
    background: var(--vente-panel);
}
body.about-page .prose,
body.about-page .prose.large {
    color: #c7c7c7;
}
body.about-page .vision-grid,
body.about-page .vision-grid article {
    border-color: var(--vente-border);
}
body.about-page .values-grid article {
    border-top-color: var(--vente-red);
}
body.about-page .values-grid p {
    color: #b7b7b7;
}
body.about-page .brands-grid article {
    background: var(--vente-panel-2);
    border: 1px solid var(--vente-border);
}
body.about-page .brands-grid p {
    color: #b7b7b7;
}
body.about-page .mini-brand {
    color: #fff;
    border-bottom-color: var(--vente-border);
}
body.about-page .mini-brand.vente {
    color: var(--vente-red-bright);
}
body.about-page .legal-grid article {
    background: var(--vente-panel-2);
    border: 1px solid var(--vente-border);
}
body.about-page .legal-grid th,
body.about-page .legal-grid td {
    border-bottom-color: var(--vente-border);
}

body.partners-page .section.light {
    background: var(--vente-panel);
}
body.partners-page .partner-search input {
    background: #0e0e0e;
    border: 1px solid var(--vente-border);
    color: #fff;
}
body.partners-page .partner-search input::placeholder {
    color: #8a8a8a;
}
body.partners-page .partner-table-wrap {
    background: var(--vente-panel-2);
    border: 1px solid var(--vente-border);
}
body.partners-page .partner-table th {
    background: #111;
    border-bottom: 2px solid var(--vente-red);
}
body.partners-page .partner-table td {
    border-bottom-color: var(--vente-border);
}
body.partners-page .empty-cell {
    color: #b7b7b7;
}
body.partners-page .page-link {
    color: #b0b0b0;
    border-color: var(--vente-border);
    background: #0d0d0d;
}
body.partners-page .page-item.active .page-link {
    background: var(--vente-red);
    border-color: var(--vente-red);
    color: #fff;
}
body.about-page .section-heading > p,
body.partners-page .section-heading > p {
    color: #b7b7b7;
}

/* =========================================================
   V7 — shared interaction polish and partner directory
   ========================================================= */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

html {
    scroll-padding-top: 96px;
}

body {
    overflow-x: hidden;
}

.section {
    padding-block: clamp(76px, 8vw, 116px);
}

.section-heading h2,
.page-hero h1,
.about-hero h1,
.cta-section h2 {
    text-wrap: balance;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 63, 72, .85);
    outline-offset: 4px;
}

input,
select,
textarea {
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.category-card,
.lighting-grid a,
.solution-card,
.testimonial-grid article,
.article-grid > a,
.values-grid article,
.brands-grid article,
.legal-grid article,
.contact-cards > a,
.contact-cards > div {
    transition: transform .5s var(--ease-vente), box-shadow .5s var(--ease-vente), border-color .35s ease, background-color .35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .category-card:hover,
    .lighting-grid a:hover,
    .solution-card:hover,
    .testimonial-grid article:hover,
    .article-grid > a:hover,
    .values-grid article:hover,
    .brands-grid article:hover,
    .legal-grid article:hover,
    .contact-cards > a:hover {
        transform: translate3d(0, -7px, 0);
    }

    .testimonial-grid article:hover,
    .article-grid > a:hover,
    .brands-grid article:hover,
    .legal-grid article:hover {
        box-shadow: 0 24px 60px rgba(0, 0, 0, .13);
    }
}

.faq-item > div {
    will-change: max-height;
    transition: max-height .55s var(--ease-vente), opacity .35s ease !important;
    opacity: 0;
}

.faq-item.open > div {
    max-height: none;
    opacity: 1;
}

.faq-item button b {
    transition: transform .4s var(--ease-vente), color .25s ease;
}

.floating-wa {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #25d366;
    box-shadow: 0 16px 42px rgba(37, 211, 102, .34) !important;
    transition: transform .35s var(--ease-vente), background-color .25s ease, box-shadow .35s ease;
}

.floating-wa img {
    width: 29px;
    height: 29px;
}

.floating-wa:hover {
    background: #20bd5a;
    box-shadow: 0 20px 48px rgba(37, 211, 102, .48) !important;
}

body.partners-page {
    color: #f5f5f5;
    background: var(--vente-black);
}

body.partners-page .partners-hero .hero-actions {
    margin-top: 30px;
}

body.partners-page .partner-map {
    background:
        radial-gradient(circle at 50% 30%, rgba(239, 27, 36, .12), transparent 44%),
        #160103;
}

body.partners-page .partner-map-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

body.partners-page .partner-map-frame img {
    width: 100%;
    transition: transform 1.1s var(--ease-vente), filter .6s ease;
}

@media (hover: hover) and (pointer: fine) {
    body.partners-page .partner-map-frame:hover img {
        transform: scale(1.018);
        filter: contrast(1.04) saturate(1.05);
    }
}

body.partners-page .partner-directory {
    scroll-margin-top: 88px;
    color: #d5d5d5;
    background:
        radial-gradient(circle at 88% 8%, rgba(239, 27, 36, .08), transparent 28%),
        var(--vente-panel);
}

body.partners-page .partner-directory h2 {
    color: #fff;
}

body.partners-page .partner-result-count {
    flex: 0 0 auto;
    margin: 0 0 7px;
    padding: 9px 13px;
    border: 1px solid var(--vente-border);
    color: #c8c8c8;
    background: rgba(255, 255, 255, .035);
    font-size: 12px;
}

body.partners-page .partner-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 820px;
    margin-bottom: 34px;
}

body.partners-page .partner-search input {
    min-width: 0;
    min-height: 56px;
    padding-inline: 18px;
    outline: 0;
}

body.partners-page .partner-search input:focus {
    border-color: rgba(255, 55, 64, .9);
    box-shadow: 0 0 0 4px rgba(239, 27, 36, .12);
}

body.partners-page .partner-search .btn {
    min-width: 150px;
}

body.partners-page .partner-search-reset {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    color: #aaa;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.partners-page .partner-table-wrap {
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

body.partners-page .partner-table {
    color: #d7d7d7;
}

body.partners-page .partner-table th {
    padding: 17px 19px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .055em;
}

body.partners-page .partner-table td {
    padding: 18px 19px;
    color: #d0d0d0;
    line-height: 1.55;
    transition: color .25s ease, background-color .3s ease;
}

body.partners-page .partner-table td strong {
    color: #fff;
    font-weight: 700;
}

body.partners-page .partner-table td small {
    margin-top: 2px;
    color: #9e9e9e;
}

body.partners-page .partner-table td a {
    color: #ff666d;
    font-weight: 650;
}

body.partners-page .partner-table td a:hover {
    color: #fff;
}

body.partners-page .partner-table tbody tr:hover td {
    color: #fff;
    background: rgba(255, 255, 255, .035);
}

body.partners-page .partner-no-contact {
    color: #858585;
    font-size: 12px;
}

body.partners-page .pagination-wrap {
    color: #c4c4c4;
}

@media (max-width: 720px) {
    html { scroll-padding-top: 78px; }

    .section { padding-block: 72px; }

    .floating-wa {
        right: 15px;
        bottom: max(15px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    body.partners-page .partners-hero .hero-actions {
        display: grid;
        gap: 10px;
    }

    body.partners-page .partners-hero .btn-ghost-light {
        margin-left: 0;
    }

    body.partners-page .partner-result-count {
        display: inline-flex;
        margin-top: 18px;
    }

    body.partners-page .partner-search {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    body.partners-page .partner-search .btn {
        width: 100%;
        margin: 0;
    }

    body.partners-page .partner-search-reset {
        position: static;
        justify-self: start;
        margin-top: 2px;
    }

    body.partners-page .partner-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    body.partners-page .partner-table,
    body.partners-page .partner-table tbody {
        display: block;
        width: 100%;
    }

    body.partners-page .partner-table thead {
        display: none;
    }

    body.partners-page .partner-table tbody {
        display: grid;
        gap: 12px;
    }

    body.partners-page .partner-table tr {
        display: grid;
        padding: 10px 16px;
        border: 1px solid var(--vente-border);
        background: var(--vente-panel-2);
    }

    body.partners-page .partner-table td {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 14px;
        padding: 10px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        overflow-wrap: anywhere;
    }

    body.partners-page .partner-table td:last-child {
        border-bottom: 0;
    }

    body.partners-page .partner-table td::before {
        content: attr(data-label);
        color: #888;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    body.partners-page .partner-table .empty-cell {
        display: block;
        padding: 24px 4px;
        text-align: center;
    }

    body.partners-page .partner-table .empty-cell::before {
        content: none;
    }
}

/* About-page contrast follows the same dark surface system. */
body.about-page {
    color: #f5f5f5;
    background: var(--vente-black);
}

body.about-page .two-col-story h2,
body.about-page .values-grid h3,
body.about-page .brands-grid h3,
body.about-page .legal-grid h2,
body.about-page .legal-grid h3,
body.about-page .legal-grid th {
    color: #fff;
}

body.about-page .legal-grid td {
    color: #c7c7c7;
}

body.about-page .legal-grid tr:last-child th,
body.about-page .legal-grid tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 800px) {
    .main-nav {
        visibility: hidden;
        pointer-events: none;
        transition: transform .5s var(--ease-vente), visibility 0s linear .5s;
    }

    .main-nav.open {
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-toggle span {
        transition: transform .35s var(--ease-vente), opacity .25s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.vente-catalog-section .catalog-filter-label {
    margin: 0 0 14px;
    color: #b4b4b4;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .065em;
}

.section.light .section-heading > p,
.solutions .section-heading > p,
.testimonials .testimonial-grid p,
.journal .article-grid p,
.contact-section .contact-grid > div > p:not(.eyebrow) {
    color: #626262;
}

/* =========================================================
   Homepage hero image slider
   ========================================================= */
.hero-slider {
    overflow: hidden;
}
.hero-slider.hero {
    background: var(--vente-black, #0c0c0c);
    background-image: none;
}
.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--hero);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.4s var(--ease-vente);
}
.hero-slide.is-active {
    opacity: 1;
}
.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.hero-dots button {
    width: 26px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background-color .25s ease, width .25s ease;
}
.hero-dots button:hover {
    background: rgba(255, 255, 255, .6);
}
.hero-dots button.is-active {
    background: var(--vente-red);
    width: 38px;
}
@media (max-width: 800px) {
    .hero-dots {
        bottom: 20px;
    }
    .hero-dots button {
        width: 18px;
    }
    .hero-dots button.is-active {
        width: 28px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

/* Article cards: keep the "BACA ARTIKEL" link aligned to the same baseline
   across a row regardless of how long each excerpt runs. */
.article-grid {
    align-items: stretch;
}
.article-grid > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-grid > a > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.article-grid p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-grid b {
    margin-top: auto;
    padding-top: 16px;
}

/* Products page: admin-curated highlight slider (Admin > Products > "Tampilkan
   di slider halaman Produk") — merged into the SAME hero panel as "THE VENTE
   COLLECTION", as its background, exactly like the homepage hero-slider (its
   images sit behind the homepage's headline the same way). Product photos
   are isolated cutouts (transparent PNGs), not wide lifestyle shots like the
   homepage hero uses, so background-size is "contain" rather than "cover" —
   full uncropped product rather than a zoomed-in crop. A dark scrim sits
   between the images and the hero's own grid-line/orbit decoration and text
   so both stay legible over a bright product photo. */
.product-highlight-slides {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.product-highlight-slides::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Same overlay formula as the homepage hero-overlay, so the text reads
       exactly the same way over the image. */
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 48%, rgba(0, 0, 0, .2) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 45%);
}
.product-highlight-slide {
    position: absolute;
    inset: 0;
    background-image: var(--highlight-bg);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.4s var(--ease-vente);
}
.product-highlight-slide.is-active {
    opacity: 1;
}
.product-highlight-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 62px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.product-highlight-dots button {
    width: 26px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background-color .25s ease, width .25s ease;
}
.product-highlight-dots button:hover {
    background: rgba(255, 255, 255, .6);
}
.product-highlight-dots button.is-active {
    background: var(--vente-red);
    width: 38px;
}
/* Contact page: icon-only links (WhatsApp / email / map) instead of spelled-out contact details */
.contact-icon-links {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}
.contact-icon-links a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .25s ease, transform .25s ease;
}
.contact-icon-links img {
    width: 20px;
    height: 20px;
}
@media (hover: hover) and (pointer: fine) {
    .contact-icon-links a:hover {
        background: var(--vente-red);
        transform: translateY(-4px);
    }
}

/* WhatsApp logo inside the product page's consultation button */
.btn-wa-icon {
    width: 16px;
    height: 16px;
    margin-right: 9px;
}

/* Catalog / partner results fade briefly while a filter/search/page fetch is in flight */
.catalog-main.is-loading,
[data-partner-results].is-loading {
    opacity: .5;
    pointer-events: none;
    transition: opacity .15s ease;
}

/* Checkout form error banner */
.checkout-form .alert.danger {
    background: #fff0f0;
    border: 1px solid #f3b8ba;
    color: #a1252b;
    font-size: 13px;
    line-height: 1.5;
    padding: 14px 16px;
    margin-bottom: 20px;
}
