/* ============================================
   GINS 4U — True Luxury
   Reference: Rolls Royce, Tom Ford, The Macallan
   Sans-serif. Restraint. Confidence. Silence.
   ============================================ */

:root {
    --black: #090909;
    --white: #ffffff;
    --grey-100: rgba(255,255,255,0.08);
    --grey-text: rgba(255,255,255,0.55);
    --grey-muted: rgba(255,255,255,0.3);
    --accent: rgba(255,255,255,0.12);

    --font: 'Outfit', 'Inter', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --header-height: 72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.4s var(--ease);
}

a:hover { opacity: 0.6; }

ul { list-style: none; }

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section {
    padding: 140px 0;
    background: var(--black);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.5s var(--ease);
}

.header.scrolled {
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.navbar {
    height: var(--header-height);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-img {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.4s;
}

.logo:hover .logo-img { opacity: 1; }

.nav-links {
    display: flex;
    gap: 48px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: rgba(255,255,255,0.5);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.4s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.4s;
}

.nav-icon:hover { color: var(--white); opacity: 1; }

.cart-count {
    position: absolute;
    top: -3px;
    right: -5px;
    background: var(--white);
    color: var(--black);
    font-size: 0.5rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    transition: all 0.4s var(--ease);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== SEARCH ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9,9,9,0.97);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.search-overlay.active { opacity: 1; visibility: visible; }

.search-overlay-inner {
    width: 50%;
    max-width: 500px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 200;
    padding: 16px 0;
    outline: none;
}

.search-input::placeholder { color: rgba(255,255,255,0.15); }

.search-close {
    color: rgba(255,255,255,0.2);
    font-size: 2rem;
    transition: color 0.3s;
}

.search-close:hover { color: var(--white); opacity: 1; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-nav-links { text-align: center; }
.mobile-nav-links li { margin-bottom: 6px; }

.mobile-nav-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 14px 0;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 200;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.mobile-nav-links a:hover { color: var(--white); opacity: 1; }

/* ============================================
   HERO — Cinematic
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.1) 60%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 200;
    letter-spacing: 0.05em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: var(--font);
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    text-align: center;
    cursor: pointer;
}

.btn-hero {
    padding: 18px 56px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
}

.btn-hero:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    opacity: 1;
}

.btn-primary {
    padding: 16px 48px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    opacity: 1;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-cart {
    display: inline-block;
    padding: 13px 32px;
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.btn-cart:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

/* ============================================
   FULLSCREEN IMAGE SECTIONS
   ============================================ */
.fullscreen-image {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
}

.fullscreen-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.fullscreen-overlay-heavy {
    background: rgba(0,0,0,0.65);
}

.fullscreen-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.fullscreen-caption h2 {
    font-family: var(--font);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 200;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--white);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--white);
}

/* ============================================
   COLLECTIONS / PRODUCTS
   ============================================ */
.collections {
    background: var(--black);
}

.collection-block {
    margin-bottom: 120px;
}

.collection-block:last-child { margin-bottom: 0; }

.collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-name {
    font-family: var(--font);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 8px;
}

.collection-desc {
    max-width: 450px;
    margin: 0 auto;
    color: var(--grey-text);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
}

.products-grid-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    transition: all 0.6s var(--ease);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font);
    font-size: 0.55rem;
    font-weight: 500;
    padding: 4px 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
}

.product-image-link { display: block; }

.product-image {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

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

.product-card-featured .product-img {
    height: 480px;
}

.product-info {
    padding: 28px 22px 34px;
    text-align: center;
}

.product-name {
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.product-name a { color: var(--white); }
.product-name a:hover { opacity: 0.6; }

.product-meta {
    font-size: 0.72rem;
    color: var(--grey-muted);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 300;
}

.product-price {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* ============================================
   SPLIT SCREEN
   ============================================ */
.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.split-screen:hover .split-img {
    transform: scale(1.02);
}

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 70px;
    background: var(--black);
}

.split-inner {
    max-width: 420px;
}

.split-title {
    font-family: var(--font);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--white);
}

.split-body {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

/* ============================================
   FULLSCREEN CTA
   ============================================ */
.fullscreen-cta {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fullscreen-cta-bg {
    position: absolute;
    inset: 0;
}

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

.fullscreen-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 550px;
}

.cta-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 200;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.cta-price {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.cta-price span {
    font-size: 0.72rem;
    font-weight: 300;
    opacity: 0.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================
   FOOTER — Minimal
   ============================================ */
.footer {
    background: var(--black);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo {
    height: 26px;
    width: auto;
    opacity: 0.5;
}

.footer-center {
    display: flex;
    gap: 36px;
}

.footer-center a,
.footer-right a {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-right {
    display: flex;
    gap: 28px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #111;
    z-index: 1101;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer-header h3 {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.cart-close {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}

.cart-close:hover { color: var(--white); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}

.cart-empty {
    text-align: center;
    color: rgba(255,255,255,0.25);
    padding: 50px 0;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 300;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-item-name {
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 300;
    flex: 1;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0 14px;
    white-space: nowrap;
}

.cart-item-remove {
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
    transition: color 0.3s;
}

.cart-item-remove:hover { color: var(--white); }

.cart-drawer-footer {
    padding: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    background: var(--black);
}

.product-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-page-real-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.product-page-title {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 200;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.product-page-collection {
    font-family: var(--font);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    font-weight: 400;
}

.product-page-price {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 200;
    margin-bottom: 6px;
}

.product-page-tax {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin-bottom: 30px;
    font-weight: 300;
}

.product-page-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.spec-tag {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 14px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-page-desc h3 {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 14px;
}

.product-page-desc p {
    color: var(--grey-text);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.88rem;
    font-weight: 300;
}

.tasting-notes {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    margin: 32px 0;
}

.tasting-notes h4 {
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 400;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
}

.tasting-note { margin-bottom: 12px; }
.tasting-note strong { font-weight: 400; font-size: 0.95rem; }
.tasting-note span { color: var(--grey-text); font-size: 0.88rem; font-weight: 300; }

.serving-rec {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0 0;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--grey-text);
    line-height: 1.9;
    font-weight: 300;
}

.serving-rec strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* Atelier page */
.atelier-hero {
    background: var(--black);
    color: var(--white);
    padding-top: calc(var(--header-height) + 100px);
    padding-bottom: 100px;
    text-align: center;
}

.atelier-hero-subtitle {
    font-size: 0.92rem;
    color: var(--grey-text);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.atelier-hero-price {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 200;
    margin-top: 24px;
    color: var(--white);
}

.atelier-hero-price span {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.atelier-content {
    padding: 120px 0;
    background: var(--black);
}

.section-img,
.atelier-section-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.atelier-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.atelier-feature {
    border: 1px solid rgba(255,255,255,0.06);
    padding: 44px;
    transition: border-color 0.5s var(--ease);
}

.atelier-feature:hover { border-color: rgba(255,255,255,0.15); }

.atelier-feature h3 {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 14px;
}

.atelier-feature p {
    color: var(--grey-text);
    line-height: 1.9;
    font-size: 0.88rem;
    font-weight: 300;
}

.atelier-cta-section {
    text-align: center;
    padding: 100px 0;
    background: var(--black);
}

.breadcrumb {
    padding: 20px 0;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.06em;
    font-weight: 300;
}

.breadcrumb a { opacity: 0.6; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 8px; opacity: 0.3; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .container { padding: 0 40px; }
    .products-grid { gap: 14px; }
    .product-img { height: 340px; }
}

@media (max-width: 1024px) {
    .split-screen {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-reverse { direction: ltr; }

    .split-image {
        height: 60vh;
        min-height: 350px;
    }

    .split-content { padding: 60px 40px; }

    .product-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .atelier-features { grid-template-columns: 1fr; }
    .section { padding: 100px 0; }
    .fullscreen-image { height: 70vh; }

    .footer-inner { flex-direction: column; gap: 30px; align-items: center; }
    .footer-center, .footer-right { flex-wrap: wrap; justify-content: center; }

    .nav-links { gap: 30px; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }

    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    .section { padding: 80px 0; }

    .fullscreen-image { height: 55vh; min-height: 320px; }
    .fullscreen-caption h2 { font-size: clamp(1.6rem, 7vw, 2.6rem); }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .products-grid-2 { grid-template-columns: 1fr 1fr; }
    .product-img { height: 260px; }
    .product-card-featured .product-img { height: 300px; }
    .product-info { padding: 18px 14px 26px; }
    .product-name { font-size: 1rem; }

    .split-image { height: 50vh; min-height: 280px; }
    .split-content { padding: 50px 24px; }

    .collection-block { margin-bottom: 80px; }
    .product-page-real-img { height: 380px; }

    .fullscreen-cta { min-height: 480px; height: 70vh; }
    .section-header { margin-bottom: 60px; }
}

@media (max-width: 480px) {
    .products-grid, .products-grid-2 { grid-template-columns: 1fr; gap: 14px; }
    .product-img { height: 360px; }
    .product-card-featured .product-img { height: 400px; }
    .cta-price { font-size: 1.8rem; }
    .search-overlay-inner { width: 90%; }
    .search-input { font-size: 1.3rem; }
}
