*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── LOADER ──────────────────────────────────── */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.loader__content {
    position: relative;
    z-index: 4;
    
}

.loader__letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 240px;
    color: #0047FF;
    letter-spacing: 4px;
    display: inline-block;
    opacity: 0;
    font-weight: 900;
}

.loader__dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.loader__dot {
    width: 65px;
    height: 65px;
    background: #0047FF;
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
}

.loader__panel {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background: #000;
    z-index: 1;
    transform-origin: top center;
}

.loader__panel:nth-child(2) { left: 0%; }
.loader__panel:nth-child(3) { left: 25%; }
.loader__panel:nth-child(4) { left: 50%; }
.loader__panel:nth-child(5) { left: 75%; }

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: black;
}

/* ── SLIDER ─────────────────────────────────── */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* ── SLIDES ─────────────────────────────────── */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    transition: opacity 0.8s ease;
    will-change: transform, filter, opacity;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── SLIDE CONTENT ───────────────────────────── */
.slide__content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 340px;
    z-index: 2;
}

.slide__content h2 {
    font-size: 65px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    width: 150%;
    font-family: Bebas Neue;
}

.slide__price {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    font-family: Bebas Neue;
}

.slide__content p {
    font-size: 1.3rem;
    line-height: 1.2;
    
    margin-bottom: 30px;
    font-family: Bebas Neue;
    text-transform: capitalize;
}

/* ── ADD TO CART ─────────────────────────────── */
.btn-cart {
    display: inline-block;
    padding: 24px 100px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    white-space: nowrap;
    font-family: Bebas Neue;
}

.btn-cart:hover {
    background: #000;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

/* ── NAV ARROWS ──────────────────────────────── */
.slider__nav {
    display: flex;
    gap: 50px;
    position: absolute;
    bottom: -90px;
    left: 40%;
    transform: translateX(-50%);
    z-index: 10;
    
}

.nav-btn {
    width: 105px;
    height: 52px;
    background: white;
    border-radius: 7%;
    border: none;
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: Bebas Neue;
}

.nav-btn:hover {
    background: #000;
    color: #fff;
}

/* ── NAVBAR ──────────────────────────────────── */
.slider__navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 24px 60px;
    background: transparent;
}

.slider__brand {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.slider__nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.slider__nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.slider__nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.slider__nav-links a:hover {
    opacity: 0.65;
}

/* ── CART ICON ───────────────────────────────── */
.slider__cart {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__cart:hover {
    opacity: 0.65;
}

/* ── THUMBNAILS ──────────────────────────────── */
.slider__thumbnails {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thumbnail {
    width: 120px;
    height: 86px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.thumbnail:hover {
    opacity: 0.85;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section-2 {
    padding: 0;
    color: #111;
    text-align: center;
    width: 100%;
    height: auto;
}

.section-2 .product-card__back-info {
    text-align: left;
}
/* ── PRODUCT GRID ────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 65vh;
    width: 100%;
    gap: 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
background: black;
}

.product-card {
    perspective: 1000px;
    cursor: pointer;
    background: transparent;
    border-radius: 12px;
}

.product-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.product-card:hover .product-card__inner {
    transform: rotateY(180deg);
}

@keyframes card-shine-border {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }
    50%       { box-shadow: 0 0 0 1.5px rgba(255,255,255,0.55), 0 0 22px rgba(255,255,255,0.09); }
}

.product-card__front,
.product-card__back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 12px;
    animation: card-shine-border 3s ease-in-out infinite;
}

.product-card__front {
    background: rgb(243, 243, 243);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, );
}
.product-card__front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.product-card__back {
    transform: rotateY(180deg);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.product-card__back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__back-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: #fff;
    
}

.product-card__back-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

.product-card__back-info span {
    font-size: 1.3rem;
    color: #ccc;
    display: block;
    margin-bottom: 12px;
}

.card-back__logo {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-back__logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 4px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.logo-dots {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    grid-template-rows: repeat(3, 8px);
    gap: 1px;
}

.logo-dots span {
    display: block;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.logo-dots span:nth-child(1) { grid-column: 2; grid-row: 1; }
.logo-dots span:nth-child(2) { grid-column: 1; grid-row: 2; }
.logo-dots span:nth-child(3) { grid-column: 3; grid-row: 2; }
.logo-dots span:nth-child(4) { grid-column: 2; grid-row: 3; }

.card-front__shop {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.card-front__shop:hover {
    opacity: 0.6;
}

.product-card__back-info a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}




.section-2 h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    color: white;
}
.section-2 p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}
/* ── SECTION 3 ───────────────────────────────── */
.section-3 {
    display: flex;
    width: 100%;
    height: 100vh;
}

.section-3__text {
    width: 50%;
    flex-shrink: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 60px;
    gap: 4px;
}

.section-3__text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 200px;
    font-weight: 900;
    color: #fff;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.col-blue   { color: #0047FF; }
.col-red    { color: #FF1A1A; }
.col-yellow { color: #FFE000; }

.section-3__media {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 60px 60px 60px 24px;
}

.section-3__media video,
.section-3__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
}

/* ── MARQUEE IMAGES ──────────────────────────── */
.section-marquee-images {
    width: 100%;
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}


.marquee-images__track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-images__item {
    flex-shrink: 0;
    width: 280px;
    height: auto;
    overflow: hidden;
    border-radius: 6px;
}

.marquee-images__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.marquee-images__item:hover img {
    transform: scale(1.08);
}

/* ── SECTION 5 ───────────────────────────────── */
.section-5 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-5__bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    will-change: transform, filter;
}

.section-5__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.section-5__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    perspective: 600px;
}

.section-5__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 14rem);
    color: #fff;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-align: center;
    mix-blend-mode: difference;
}



.section-5__btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    background: #fff;
    text-decoration: none;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 0;
}

.section-5__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 50px;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -1;
}

.section-5__btn:hover {
    color: #fff;
}

.section-5__btn:hover::before {
    transform: scaleY(1);
    transform-origin: bottom center;
}

.section-5__btn:active {
    transform: scale(0.97);
}


.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

* {
    cursor: none;
}
.menu-btn{
    background: white;
    color: black;
    border: none;
    padding: 14px 30px;
    font-weight: 550;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    border-radius: 50px;
    transform: translateY(5px);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 999;
}
.menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 50px;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -1;
}

.menu-btn:hover {
    color: #fff;
}

.menu-btn:hover::before {
    transform: scaleY(1);
    transform-origin: bottom center;
}
/* ── MENU ────────────────────────────────────── */
.menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0047FF;
    z-index: 100;
    will-change: clip-path;
    pointer-events: none;
}

.menu__inner {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 60px 20px;
}

.menu__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

.menu__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.menu__link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    color: #fff;
    cursor: none;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

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

.menu__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu__link:hover { color: rgba(255, 255, 255, 0.6); }
.menu__link:hover::after { width: 100%; }

.menu__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex: 0 0 45%;
}

.menu__video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.menu__info {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
}

.menu__info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.menu__info-col span,
.menu__info-col a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
}

.menu__info-col a:hover { opacity: 0.5; }

.menu__bottom { width: 100%; }

.menu__holm {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 20vw, 260px);
    font-weight: 900;
    color: #fff;
    line-height: 0.85;
    letter-spacing: -0.02em;
    width: 100%;
}
.marquee {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 20px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.marquee__track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 12s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee__track span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: #fff;
    flex-shrink: 0;
}

/* ── BRAND GRAVITY ───────────────────────────── */
.brand-gravity {
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-gravity__text {
    text-align: center;
}

.brand-gravity__line {
    display: block;
    overflow: hidden;
}

.word {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.02em;
}

.block-word {
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.block-blue   { background: #0047FF; color: #fff; }
.block-red    { background: #FF1A1A; color: #fff; }
.block-yellow { background: #FFE000; color: #fff; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
    background: #000;
    color: #fff;
}

.footer__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.trust-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #fff;
    margin: 0 0 8px;
}

.trust-sub {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.05em;
    margin: 0;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    border-bottom: 1px solid #222;
}

.footer__section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    margin: 0 0 12px;
}

.footer__small {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.03em;
    margin: 0 0 24px;
    line-height: 1.6;
}

.footer__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-size: 0.85rem;
    padding: 12px 0;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.footer__input::placeholder {
    color: #555;
}

.footer__subscribe-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-top: 16px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer__subscribe-btn:hover {
    background: #222;
    color: #fff;
}

.footer__contact-email {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 24px;
    letter-spacing: 0.05em;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
}

.footer__copy,
.footer__social {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
}

.footer__brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (769px – 1024px)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* Loader */
    .loader__letter { font-size: clamp(100px, 14vw, 180px); }
    .loader__dot    { width: 44px; height: 44px; }
    .loader__dots   { gap: 24px; }

    /* Slide */
    .slide__content { left: 40px; }
    .slide__content h2 { font-size: clamp(48px, 6vw, 65px); width: 120%; }

    /* Product grids */
    .product-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
    .product-card { height: 40vw; }

    /* Section 3 */
    .section-3__text h2 { font-size: clamp(80px, 11vw, 150px); }

    /* Brand gravity */
    .word { font-size: clamp(56px, 8vw, 100px); }

    /* Menu */
    .menu__inner { padding: 80px 40px 20px; }
    .menu__info  { gap: 24px; }

    /* Footer */
    .footer__main   { padding: 60px 40px; gap: 40px; }
    .footer__bottom { padding: 24px 40px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Reset cursor for touch devices */
    * { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }

    /* ── Loader ─────────────────────────────────── */
    .loader__letter { font-size: clamp(40px, 12vw, 80px); }
    .loader__dot    { width: 16px; height: 16px; }
    .loader__dots   { gap: 8px; }
    .loader__logo   { gap: 8px; }

    /* ── Navbar ─────────────────────────────────── */
    .slider__navbar { padding: 16px 20px; }
    .menu-btn { padding: 10px 18px; font-size: 1rem; }

    /* ── Hero slider ────────────────────────────── */
    .slide__content {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
    .slide__content h2 {
        font-size: clamp(34px, 9vw, 52px);
        width: 100%;
    }
    .slide__content p { font-size: 0.95rem; margin-bottom: 20px; }
    .slide__price     { font-size: 0.95rem; }
    .btn-cart         { padding: 14px 28px; font-size: 1rem; }

    .slider__nav {
        bottom: -80px;
        left: 0;
        transform: none;
        gap: 12px;
    }
    .nav-btn { width: 72px; height: 44px; font-size: 1.3rem; }

    /* Thumbnails → horizontal strip at bottom */
    .slider__thumbnails {
        flex-direction: row;
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        gap: 8px;
    }
    .thumbnail { width: 58px; height: 42px; }

    /* ── Full-screen menu ───────────────────────── */
    .menu__inner    { padding: 80px 24px 24px; }
    .menu__top      { flex-direction: column; gap: 24px; }
    .menu__right    { display: none; }
    .menu__link     { font-size: clamp(40px, 12vw, 60px); }
    .menu__info     { flex-direction: column; gap: 8px; justify-content: flex-start; }
    .menu__info-col { text-align: left; }
    .menu__holm     { font-size: clamp(56px, 18vw, 100px); }

    /* ── Product grids ──────────────────────────── */
    .product-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
    .product-card { height: 52vw; }

    /* ── Section 3 ──────────────────────────────── */
    .section-3          { height: auto; min-height: 100vh; }
    .section-3__text    { width: 45%; padding: 0 0 0 20px; }
    .section-3__text h2 { font-size: clamp(32px, 10vw, 56px); }
    .section-3__media   { width: 55%; padding: 20px 20px 20px 8px; }
    .section-3__media video,
    .section-3__media img { height: 100%; }

    /* ── Marquee images ─────────────────────────── */
    .section-marquee-images { padding: 60px 0; }
    .marquee-images__item   { width: 160px; }

    /* ── Brand gravity ──────────────────────────── */
    .word           { font-size: clamp(48px, 14vw, 80px); }
    .block-word     { padding: 0 10px; }
    .brand-gravity  { min-height: 60vh; padding: 40px 20px; }

    /* ── Section 5 ──────────────────────────────── */
    .section-5__title { font-size: clamp(3rem, 11vw, 7rem); }

    /* ── Footer ─────────────────────────────────── */
    .footer__trust { grid-template-columns: 1fr; }
    .footer__trust-col {
        padding: 24px 20px;
        border-bottom: 1px solid #222;
    }
    .footer__trust-col:last-child { border-bottom: none; }
    .footer__main   { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
    .footer__links  { gap: 16px; }
}