/* ==========================================================================
   IN-HYPE THEME — CSS Principal
   Reproduction 1:1 du design Figma "NOCTA - EN"
   ========================================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #1a1a1a;
    background: #f5f5f5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
    --dark-1a: #1a1a1a;
    --light-f5: #f5f5f5;
    --light-f8: #f8f8f8;
    --fc: #fcfcfc;
    --secondary-accent: #272c3a;
    --dark: #363833;
    --gray-c: #cccccc;
    --card-shadow: 4px 4px 16px 0px rgba(69, 69, 69, 0.12);
}

/* ==========================================================================
   HEADER — 98px (promo 32px + nav 66px) — SEPARES
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* --- Barre promo (SEPAREE, son propre gradient) --- */
.promo-bar {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgb(247, 240, 172) 0%, rgb(172, 247, 240) 36.5%, rgb(240, 172, 247) 66%, rgb(247, 240, 172) 100%);
    width: 100%;
}

.promo-bar__text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark-1a);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.promo-bar__emoji {
    font-size: 14px;
}

.promo-bar__label {
    font-weight: 900;
}

.promo-bar__badge {
    background: rgba(36, 165, 145, 0.28);
    border-radius: 22px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 900;
}

.promo-bar__italic {
    font-style: italic;
    text-decoration: underline;
    font-weight: 900;
}

/* --- Navigation (SEPAREE, fond blanc, sous la promo bar) --- */
.nav-main {
    height: 66px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 68px;
    position: relative;
    background: var(--fc);
}

/* Burger */
.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav-burger__line {
    display: block;
    height: 2px;
    background: var(--dark-1a);
    border-radius: 22px;
}

.nav-burger__line:nth-child(1),
.nav-burger__line:nth-child(2) {
    width: 44px;
}

.nav-burger__line:nth-child(3) {
    width: 22px;
}

/* Logo centre */
.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 66px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo__text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--dark-1a);
    letter-spacing: -2px;
}

/* Droite : actions + langue + devise */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Actions pill (search/user/cart) */
.nav-actions {
    display: flex;
    align-items: center;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    background: var(--light-f8);
    border: 1px solid var(--dark-1a);
    padding: 0 12px;
}

.nav-actions__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    position: relative;
    cursor: pointer;
    border-radius: 32px;
    transition: background 0.2s ease;
}

.nav-actions__item:hover {
    background: rgba(26, 26, 26, 0.05);
}

.nav-actions__item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-actions__cart {
    position: relative;
}

.site-header__cart-count {
    position: absolute;
    top: 6px;
    right: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: var(--fc);
}

/* Langue selector */
.nav-lang,
.nav-currency {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-1a);
    cursor: pointer;
}

.nav-lang__flag {
    font-size: 16px;
}

.nav-lang__arrow,
.nav-currency__arrow {
    font-size: 10px;
    opacity: 0.5;
}

/* ==========================================================================
   HERO — 900px
   ========================================================================== */

.hero {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
    padding-top: 98px;
    background: linear-gradient(to left, #81a277, #1a1a1a 12.083%);
}

.hero__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.hero__images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 600px;
    height: 562px;
    z-index: 2;
}

.hero__image {
    position: absolute;
    width: 410px;
    height: 562px;
    border: 1px solid var(--dark-1a);
    border-radius: 8px;
    overflow: hidden;
    filter: blur(3.8px);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--1 {
    transform: rotate(-15.77deg);
    left: -80px;
    top: 0;
    z-index: 1;
}

.hero__image--2 {
    transform: rotate(0deg);
    left: 50%;
    top: 0;
    margin-left: -205px;
    z-index: 2;
}

.hero__image--3 {
    transform: rotate(6.46deg);
    right: -80px;
    top: 0;
    z-index: 3;
}

.hero__splash {
    position: absolute;
    width: 530px;
    height: 236px;
    background: #db8698;
    filter: blur(61.4px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 1;
    border-radius: 50%;
}

.hero__content {
    position: absolute;
    bottom: 140px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 98px;
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -7.84px;
    color: var(--light-f5);
    margin-bottom: 32px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--fc);
    border: 1px solid var(--dark-1a);
    height: 58px;
    padding: 0 32px;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-1a);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero__cta:hover {
    background: var(--dark-1a);
    color: var(--fc);
}

.hero__cta:hover img {
    filter: invert(1);
}

.hero__cta img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* --- Marquee --- */
.hero__marquee {
    position: absolute;
    bottom: 0;
    left: -60px;
    right: -60px;
    height: 62px;
    background: var(--dark-1a);
    transform: rotate(-3.41deg);
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.hero__marquee-group {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 0 24px;
    flex-shrink: 0;
}

.hero__marquee-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-f5);
}

.hero__marquee-timer {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light-f5);
}

.hero__marquee-sparkle {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HIGHLIGHTS — Cercles categories
   ========================================================================== */

.highlights {
    background: var(--dark-1a);
    padding: 124px 83px 48px;
}

.highlights__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.highlights__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.highlights__item:hover {
    transform: translateY(-4px);
}

.highlights__circle {
    width: 126px;
    height: 126px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights__ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 126px;
    height: 126px;
    object-fit: contain;
}

.highlights__product {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 50%;
}

.highlights__label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1.28px;
    color: var(--light-f5);
    text-align: center;
}

/* ==========================================================================
   BEST SELLERS + Sections produits generiques
   ========================================================================== */

.best-sellers,
.new-arrivals,
.product-carousel-section,
.flash-sale {
    background: var(--light-f5);
    padding: 86px 83px 64px;
}

.best-sellers__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.best-sellers__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--secondary-accent);
}

.best-sellers__nav {
    display: flex;
    gap: 12px;
}

.best-sellers__nav-btn {
    width: 48px;
    height: 48px;
    background: var(--dark-1a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.best-sellers__nav-btn:hover {
    opacity: 0.8;
}

.best-sellers__nav-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Bouton fleche generique pour tous les carousels */
.carousel-nav-btn {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    opacity: 0.8;
}

.carousel-nav-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Carousel container */
.best-sellers__carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.best-sellers__carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 24px;
}

.best-sellers__carousel::-webkit-scrollbar {
    display: none;
}

/* Overlay blur a droite */
.best-sellers__fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: calc(100% - 24px);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(245, 245, 245, 0.44);
    z-index: 5;
    pointer-events: none;
}

/* Product card */
.product-card {
    flex: 0 0 302px;
    width: 302px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.product-card__image {
    width: 302px;
    height: 302px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.64;
    color: var(--dark-1a);
    opacity: 0.9;
    text-align: center;
}

.product-card__price {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.64;
    color: var(--dark-1a);
    opacity: 0.9;
    text-align: center;
}

/* Prix barre (Flash Sale) */
.product-card__price del {
    opacity: 0.5;
    margin-right: 6px;
}

/* Scrollbar custom */
.best-sellers__scrollbar {
    width: 100%;
    height: 4px;
    background: #d9d9d9;
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.best-sellers__scrollbar-thumb {
    width: 77px;
    height: 4px;
    background: var(--dark-1a);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.1s ease;
}

/* Bouton VIEW ALL */
.best-sellers__viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    background: var(--fc);
    border: 1px solid var(--dark-1a);
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-1a);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.best-sellers__viewall:hover {
    background: var(--dark-1a);
    color: var(--fc);
}

.best-sellers__viewall:hover img {
    filter: invert(1);
}

.best-sellers__viewall img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* ==========================================================================
   FLASH SALE — Countdown dans le header
   ========================================================================== */

.flash-sale__countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-1a);
    padding: 10px 22px;
    margin-left: auto;
    margin-right: 22px;
}

.flash-sale__countdown-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-f5);
}

.flash-sale__countdown-timer {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light-f5);
}

/* ==========================================================================
   VIDEO SCROLL / CITATION DRAKE
   ========================================================================== */

.video-scroll {
    background: linear-gradient(to bottom, #1a1a1a, #111111);
    padding: 64px 83px 124px;
    position: relative;
    overflow: hidden;
}

.video-scroll__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.video-scroll__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 991px;
    height: 388px;
    background: linear-gradient(135deg, #ee9ca7, #ffdde1);
    filter: blur(61.4px);
    opacity: 0.2;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Citation */
.video-scroll__quote {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 866px;
    margin: 0 auto 48px;
}

.video-scroll__quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -2.56px;
    color: var(--gray-c);
    margin-bottom: 22px;
}

.video-scroll__quote-sep {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    opacity: 0.2;
    margin: 22px 0;
}

.video-scroll__quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -1.1px;
    text-transform: uppercase;
    color: var(--light-f5);
}

/* Header avec fleches (alignees a droite) */
.video-scroll__header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.video-scroll__nav {
    display: flex;
    gap: 12px;
}

.video-scroll__nav-btn {
    width: 48px;
    height: 48px;
    background: var(--dark-1a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.video-scroll__nav-btn:hover {
    opacity: 0.8;
}

.video-scroll__nav-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Carousel video */
.video-scroll__carousel-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.video-scroll__carousel {
    display: flex;
    gap: 22px;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 24px;
}

.video-scroll__carousel::-webkit-scrollbar {
    display: none;
}

/* Video cards — 3 tailles */
.video-card {
    position: relative;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-card:hover {
    transform: scale(1.03);
    opacity: 1 !important;
}

.video-card--small {
    width: 178px;
    height: 306px;
    opacity: 0.7;
}

.video-card--medium {
    width: 230px;
    height: 379px;
    opacity: 0.85;
}

.video-card--large {
    width: 284px;
    height: 388px;
}

.video-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.64);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-card__play:hover {
    background: rgba(26, 26, 26, 0.9);
}

.video-card__play svg {
    width: 14px;
    height: 14px;
}

/* Scrollbar video */
.video-scroll__scrollbar {
    width: 100%;
    height: 4px;
    background: rgba(217, 217, 217, 0.2);
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.video-scroll__scrollbar-thumb {
    width: 77px;
    height: 4px;
    background: rgba(252, 252, 252, 0.45);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.1s ease;
}

/* ==========================================================================
   GLOBAL CTA — BUILT TO PERFORM
   ========================================================================== */

.global-cta {
    width: 100%;
    height: 728px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to left, #81a277, #1a1a1a 12.083%);
}

.global-cta__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.global-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.global-cta__text {
    position: absolute;
    left: 83px;
    top: 165px;
    width: 626px;
    z-index: 3;
}

.global-cta__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--gray-c);
    margin-bottom: 12px;
}

.global-cta__desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.64;
    color: var(--light-f8);
    margin-bottom: 48px;
}

.global-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--fc);
    border: 1px solid var(--dark-1a);
    height: 58px;
    padding: 0 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-1a);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.global-cta__btn:hover {
    background: var(--dark-1a);
    color: var(--fc);
}

.global-cta__btn:hover img {
    filter: invert(1);
}

.global-cta__btn img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* Images produit inclinees a droite */
.global-cta__images {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 560px;
    z-index: 2;
}

.global-cta__img {
    position: absolute;
    width: 300px;
    height: 420px;
    border: 0.831px solid var(--dark-1a);
    border-radius: 8px;
    overflow: hidden;
}

.global-cta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-cta__img--1 {
    transform: rotate(14.55deg);
    left: 0;
    top: 20px;
    z-index: 1;
}

.global-cta__img--2 {
    transform: rotate(6.48deg);
    left: 100px;
    top: 0;
    z-index: 2;
}

.global-cta__img--3 {
    transform: rotate(-1.45deg);
    left: 200px;
    top: 40px;
    z-index: 3;
}

/* Marquee du CTA global */
.global-cta__marquee {
    position: absolute;
    bottom: 0;
    left: -60px;
    right: -60px;
    height: 62px;
    background: var(--dark-1a);
    transform: rotate(-3.41deg);
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   MARQUEE 2 (entre Global CTA et Reviews)
   ========================================================================== */

.marquee-2 {
    background: var(--dark-1a);
    height: 62px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-2__track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews {
    background: var(--light-f5);
    padding: 86px 83px 64px;
}

.reviews__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 22px;
}

.reviews__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--secondary-accent);
}

/* Trustpilot bar */
.trustpilot-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trustpilot-bar__excellent {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.trustpilot-bar__score {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.trustpilot-bar__stars {
    display: flex;
    gap: 4px;
}

.trustpilot-bar__stars img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trustpilot-bar__based {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1.28px;
    color: #000;
}

.trustpilot-bar__count {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1.28px;
    color: #000;
    text-decoration: underline;
}

.trustpilot-bar__logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trustpilot-bar__logo-shape {
    width: 32px;
    height: 29.7px;
    object-fit: contain;
}

.trustpilot-bar__logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* Carousel reviews */
.reviews__carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews__carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 24px;
}

.reviews__carousel::-webkit-scrollbar {
    display: none;
}

/* Review card */
.review-card {
    flex: 0 0 410px;
    width: 410px;
    height: 496px;
    background: var(--fc);
    box-shadow: var(--card-shadow);
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 68px;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__avatar-initials {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.review-card__verified {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-card__verified img {
    width: 7.2px;
    height: 6px;
    object-fit: contain;
}

.review-card__verified span {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #000;
    opacity: 0.5;
}

.review-card__date {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-1a);
    opacity: 0.5;
    text-align: right;
    flex-shrink: 0;
}

.review-card__score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-card__score-number {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-1a);
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.review-card__score-stars {
    width: 117px;
    height: 22px;
    object-fit: contain;
}

.review-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.review-card__photos {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.review-card__photo {
    width: 64px;
    height: 74px;
    object-fit: cover;
    border-radius: 4px;
}

.review-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.64;
    color: var(--dark);
    flex: 1;
}

/* Scrollbar reviews */
.reviews__scrollbar {
    width: 100%;
    height: 4px;
    background: #d9d9d9;
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.reviews__scrollbar-thumb {
    width: 77px;
    height: 4px;
    background: var(--dark-1a);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.1s ease;
}

/* ==========================================================================
   STICKY SECTIONS x3
   ========================================================================== */

.sticky-wrapper {
    position: relative;
}

.sticky-section {
    position: sticky;
    top: 0;
    width: 100%;
    height: 728px;
    background: var(--dark-1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-section__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* Image produit au centre */
.sticky-section__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 371px;
    height: 509px;
    border: 0.831px solid var(--dark-1a);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.8;
    z-index: 2;
}

.sticky-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-section__image--rot1 {
    transform: translate(-50%, -50%) rotate(-1.45deg);
}

.sticky-section__image--rot2 {
    transform: translate(-50%, -50%) rotate(-3.64deg);
}

.sticky-section__image--rot3 {
    transform: translate(-50%, -50%) rotate(3.61deg);
}

/* Contenu texte centre */
.sticky-section__content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 626px;
    max-width: 90%;
}

.sticky-section__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--gray-c);
    margin-bottom: 12px;
}

.sticky-section__desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.64;
    color: var(--light-f8);
}

.sticky-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 626px;
    height: 58px;
    background: var(--fc);
    border: 1px solid var(--dark-1a);
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-1a);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-section__btn:hover {
    background: var(--dark-1a);
    color: var(--fc);
    border-color: var(--fc);
}

.sticky-section__btn:hover img {
    filter: invert(1);
}

.sticky-section__btn img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* Ombres empilees entre sticky sections */
.sticky-section--1 { z-index: 10; }
.sticky-section--2 {
    z-index: 11;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}
.sticky-section--3 {
    z-index: 12;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   FOLLOW US
   ========================================================================== */

.follow-us {
    background: var(--light-f5);
    padding: 86px 83px 96px;
}

.follow-us__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 59px;
}

.follow-us__titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.follow-us__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--dark-1a);
}

.follow-us__handle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -1.76px;
    line-height: 1.14;
    color: var(--dark-1a);
}

.follow-us__nav {
    display: flex;
    gap: 12px;
}

/* Carousel follow */
.follow-us__carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.follow-us__carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 24px;
}

.follow-us__carousel::-webkit-scrollbar {
    display: none;
}

.follow-us__card {
    flex: 0 0 302px;
    width: 302px;
    height: 302px;
    border: 0.831px solid var(--dark-1a);
    overflow: hidden;
}

.follow-us__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.follow-us__card:hover img {
    transform: scale(1.05);
}

/* Scrollbar follow */
.follow-us__scrollbar {
    width: 100%;
    height: 4px;
    background: rgba(217, 217, 217, 1);
    border-radius: 12px;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
}

.follow-us__scrollbar-thumb {
    width: 77px;
    height: 4px;
    background: var(--dark-1a);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.1s ease;
}

/* Bouton SUBSCRIBE */
.follow-us__subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    background: var(--fc);
    border: 1px solid var(--dark-1a);
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-1a);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.follow-us__subscribe:hover {
    background: var(--dark-1a);
    color: var(--fc);
}

.follow-us__subscribe:hover img {
    filter: invert(1);
}

.follow-us__subscribe img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    width: 100%;
    min-height: 656px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to left, #81a277, #1a1a1a 12.083%);
}

.faq__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/faq-noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.faq__container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 130px;
    padding: 112px 83px;
    max-width: 1440px;
    margin: 0 auto;
}

.faq__left {
    width: 410px;
    flex-shrink: 0;
}

.faq__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -2.2px;
    text-transform: uppercase;
    color: var(--gray-c);
    margin-bottom: 22px;
}

.faq__desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.64;
    color: var(--light-f5);
}

.faq__right {
    flex: 1;
    max-width: 734px;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.faq__item {
    background: var(--light-f8);
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 3px 2px 22px;
    cursor: pointer;
    user-select: none;
}

.faq__question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -1.28px;
    line-height: 1.14;
}

.faq__question-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__question-arrow img {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg) scaleY(-1);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question-arrow img {
    transform: rotate(90deg) scaleY(-1);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__answer-inner {
    padding: 12px 56px 22px 22px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.64;
    color: var(--dark);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__viewmore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    background: transparent;
    border: 1px solid var(--light-f5);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-f5);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.faq__viewmore:hover {
    background: var(--light-f5);
    color: var(--dark-1a);
}

.faq__viewmore:hover img {
    filter: invert(1);
}

.faq__viewmore img {
    width: 10px;
    height: 10px;
    transition: filter 0.3s ease;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.benefits {
    background: var(--light-f5);
    padding: 0 83px;
}

.benefits__inner {
    background: var(--dark-1a);
    height: 493px;
    padding: 45px 83px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefits__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.benefit {
    width: 247px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.benefit__icon {
    width: 160px;
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit__icon-img {
    position: relative;
    z-index: 2;
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.benefit__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.benefit__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -1.76px;
    color: var(--light-f5);
    text-align: center;
}

.benefit__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.64;
    color: var(--light-f8);
    text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--dark-1a);
    color: var(--light-f5);
    padding: 64px 83px 32px;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.site-footer__logo img {
    height: 38px;
    margin-bottom: 16px;
}

.site-footer__tagline {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.64;
    color: var(--gray-c);
    max-width: 300px;
}

.site-footer__links {
    display: flex;
    gap: 64px;
}

.site-footer__col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-f5);
    margin-bottom: 16px;
}

.site-footer__col ul li {
    margin-bottom: 8px;
}

.site-footer__col ul li a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-c);
    transition: color 0.2s ease;
}

.site-footer__col ul li a:hover {
    color: var(--light-f5);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__copy {
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-c);
}

.site-footer__payments {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero__title {
        font-size: 72px;
        letter-spacing: -5px;
    }

    .best-sellers,
    .new-arrivals,
    .product-carousel-section,
    .flash-sale,
    .reviews,
    .follow-us {
        padding-left: 40px;
        padding-right: 40px;
    }

    .highlights {
        padding-left: 40px;
        padding-right: 40px;
    }

    .video-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }

    .faq__container {
        padding-left: 40px;
        padding-right: 40px;
        gap: 60px;
    }

    .benefits {
        padding: 0 40px;
    }

    .benefits__inner {
        padding: 45px 40px;
    }

    .site-footer {
        padding: 64px 40px 32px;
    }

    .global-cta__text {
        left: 40px;
        width: 500px;
    }

    .global-cta__images {
        right: 40px;
        width: 400px;
    }

    .global-cta__img {
        width: 240px;
        height: 340px;
    }
}

@media (max-width: 1024px) {
    .faq {
        min-height: auto;
    }

    .faq__container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }

    .faq__left {
        width: 100%;
    }

    .faq__right {
        max-width: 100%;
    }

    .benefits__inner {
        flex-wrap: wrap;
        height: auto;
        gap: 40px;
        justify-content: center;
    }

    /* Global CTA empile */
    .global-cta {
        height: auto;
        padding-bottom: 80px;
    }

    .global-cta__content {
        flex-direction: column;
        height: auto;
    }

    .global-cta__text {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        padding: 80px 40px 40px;
    }

    .global-cta__images {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        padding: 0 40px;
    }

    .global-cta__img {
        position: relative;
        width: 200px;
        height: 280px;
    }

    .global-cta__img--1 { left: auto; top: auto; }
    .global-cta__img--2 { left: auto; top: auto; margin-left: -40px; }
    .global-cta__img--3 { left: auto; top: auto; margin-left: -40px; }

    /* Sticky sections hauteur auto */
    .sticky-section {
        height: 600px;
    }

    .sticky-section__image {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 82px;
    }

    .nav-main {
        height: 50px;
        padding: 0 16px;
    }

    .nav-logo {
        height: 48px;
        padding: 0 20px;
    }

    .nav-logo img {
        height: 28px;
        width: auto;
    }

    .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

    .nav-burger__line:nth-child(1),
    .nav-burger__line:nth-child(2) {
        width: 32px;
    }

    .nav-burger__line:nth-child(3) {
        width: 16px;
    }

    .nav-actions__item {
        padding: 10px 14px;
    }

    .nav-actions__item img {
        width: 24px;
        height: 24px;
    }

    .hero {
        height: 600px;
        padding-top: 82px;
    }

    .hero__images {
        width: 320px;
        height: 300px;
    }

    .hero__image {
        width: 220px;
        height: 300px;
    }

    .hero__title {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero__content {
        bottom: 100px;
    }

    .hero__cta {
        height: 48px;
        padding: 0 24px;
        font-size: 14px;
    }

    .hero__marquee {
        height: 48px;
    }

    .hero__marquee-label,
    .hero__marquee-timer {
        font-size: 16px;
    }

    /* Highlights */
    .highlights {
        padding: 64px 20px 32px;
    }

    .highlights__inner {
        gap: 24px;
    }

    .highlights__circle {
        width: 90px;
        height: 90px;
    }

    .highlights__ring {
        width: 90px;
        height: 90px;
    }

    .highlights__product {
        width: 78px;
        height: 78px;
    }

    .highlights__label {
        font-size: 13px;
    }

    /* Sections produits */
    .best-sellers,
    .new-arrivals,
    .product-carousel-section,
    .flash-sale,
    .reviews,
    .follow-us {
        padding: 48px 20px 40px;
    }

    .best-sellers__title,
    .reviews__title,
    .follow-us__title,
    .sticky-section__title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .product-card {
        flex: 0 0 240px;
        width: 240px;
    }

    .product-card__image {
        width: 240px;
        height: 240px;
    }

    .review-card {
        flex: 0 0 320px;
        width: 320px;
        height: auto;
        min-height: 400px;
    }

    /* Video scroll */
    .video-scroll {
        padding: 48px 20px 80px;
    }

    .video-scroll__quote-text {
        font-size: 24px;
        letter-spacing: -1.5px;
    }

    .video-scroll__quote-author {
        font-size: 18px;
    }

    .video-card--small { width: 140px; height: 240px; }
    .video-card--medium { width: 180px; height: 300px; }
    .video-card--large { width: 220px; height: 310px; }

    /* Global CTA */
    .global-cta__title {
        font-size: 32px;
    }

    .global-cta__images {
        height: 300px;
    }

    .global-cta__img {
        width: 160px;
        height: 220px;
    }

    /* Sticky */
    .sticky-section {
        height: 500px;
    }

    .sticky-section__image {
        width: 220px;
        height: 300px;
    }

    .sticky-section__title {
        font-size: 32px;
    }

    /* Flash sale countdown */
    .flash-sale__countdown {
        padding: 6px 12px;
    }

    .flash-sale__countdown-label,
    .flash-sale__countdown-timer {
        font-size: 13px;
    }

    .best-sellers__header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .flash-sale__countdown {
        margin-left: 0;
        margin-right: 0;
    }

    /* Follow us */
    .follow-us__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .follow-us__nav {
        align-self: flex-end;
    }

    .follow-us__title {
        font-size: 32px;
    }

    .follow-us__handle {
        font-size: 18px;
    }

    .follow-us__card {
        flex: 0 0 240px;
        width: 240px;
        height: 240px;
    }

    .faq__container {
        padding: 40px 20px;
    }

    .faq__title {
        font-size: 32px;
    }

    .benefits {
        padding: 0 20px;
    }

    .benefits__inner {
        padding: 40px 20px;
        flex-direction: column;
        gap: 32px;
        height: auto;
    }

    .site-footer {
        padding: 40px 20px 24px;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer__links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .trustpilot-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Marquee 2 */
    .marquee-2 {
        height: 48px;
    }

    .global-cta__marquee {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 36px;
        letter-spacing: -2px;
    }

    .hero__images {
        width: 260px;
        height: 260px;
    }

    .hero__image {
        width: 180px;
        height: 260px;
    }

    .hero__image--1 {
        left: -50px;
    }

    .hero__image--3 {
        right: -50px;
    }

    .best-sellers__title,
    .reviews__title,
    .faq__title,
    .follow-us__title,
    .sticky-section__title,
    .global-cta__title {
        font-size: 28px;
        letter-spacing: -1.2px;
    }

    .review-card {
        flex: 0 0 280px;
        width: 280px;
    }

    .review-card__title {
        font-size: 18px;
    }

    .highlights__circle {
        width: 72px;
        height: 72px;
    }

    .highlights__ring {
        width: 72px;
        height: 72px;
    }

    .highlights__product {
        width: 62px;
        height: 62px;
    }

    .highlights__label {
        font-size: 11px;
    }

    .highlights__inner {
        gap: 16px;
    }

    .video-card--small { width: 120px; height: 200px; }
    .video-card--medium { width: 150px; height: 250px; }
    .video-card--large { width: 180px; height: 260px; }

    .video-scroll__quote-text {
        font-size: 20px;
    }

    .sticky-section {
        height: 420px;
    }

    .sticky-section__image {
        width: 180px;
        height: 250px;
    }

    .follow-us__card {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
    }

    .global-cta__img {
        width: 130px;
        height: 180px;
    }
}
