@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    height: 60px;
    width: auto;
    animation: splash-pulse 2s ease-in-out infinite;
}

@keyframes splash-pulse {
    0% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(0.98); }
}

:root {
    --primary: #C5A059;
    --primary-dark: #b08d4a;
    --black: #050505;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Luxury Gutters & Spacing */
    --gutter-mob: 6.4vw;
    --gutter-desk: 3.125vw;
    --section-spacing: 12vh;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white); /* Brighter for LV look */
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    padding-top: 8rem; /* Space for the more compact white navbar */
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-serif);
    font-weight: 400; /* Lighter weight for luxury */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Fluid Layout System */
.max-w-7xl {
    max-width: 100%;
    margin: 0 auto;
    padding-left: var(--gutter-mob);
    padding-right: var(--gutter-mob);
}

@media screen and (min-width: 48rem) {
    .max-w-7xl {
        padding-left: var(--gutter-desk);
        padding-right: var(--gutter-desk);
    }
}

/* Responsive Utilities */
.responsive-stack {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

@media (max-width: 768px) {
    .responsive-stack {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.mobile-hide { display: block; }
@media (max-width: 768px) { .mobile-hide { display: none !important; } }

.mobile-only { display: none !important; }
@media (max-width: 768px) { .mobile-only { display: block !important; } }

/* Navbar System - Tall Editorial Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: var(--white);
    padding: 1.25rem 0; /* Reduced from 1.5rem */
    border-bottom: 1px solid var(--gray-100);
    color: var(--black);
}

.dt-mark {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    z-index: 10;
    pointer-events: none;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem; /* Reduced from 1.5rem for more compact look */
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger-line {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .lang-switcher:not(.mobile-menu .lang-switcher) {
        display: none;
    }
}

.lang-switcher button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 0;
    transition: color 0.3s ease;
}

.lang-switcher button.active {
    color: var(--black);
}

.lang-switcher .divider {
    color: var(--gray-200);
}

.nav-left {
    flex: 1;
}

.nav-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-left, .nav-actions {
        flex: 1;
        min-width: 50px; /* Reduced since we have fewer icons now */
    }
}

.nav-bottom {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .nav-left { display: flex; align-items: center; justify-content: flex-start; }
    .nav-actions { gap: 1rem; flex: 1; justify-content: flex-end; }
    .nav-action-btn:not(.cart-icon-container) { padding-right: 0; }
}

.nav-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    padding: 0.5rem;
}

.nav-link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}

.logo-container {
    text-align: center;
}

.navbar-logo {
    height: 48px; /* High detailed horizontal logo */
    width: auto;
    display: block;
    transition: var(--transition);
}

.scrolled .navbar-logo {
    height: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0; /* Square buttons per image */
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white); /* Solid border for high visibility */
}

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

.btn-gold {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-gold:hover {
    background: transparent;
    color: var(--primary);
}

/* Liquid Glass Standard - "Pro Max" Luxury Edition */
.btn-liquid-glass {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle Gold Border */
    color: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: all 0.6s;
}

.btn-liquid-glass:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.btn-liquid-glass:hover::before {
    left: 100%;
}

.btn-liquid-glass:active {
    transform: translateY(0);
}

/* Wishlist Button Styles */
.product-card {
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--black);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--white);
}

.wishlist-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.wishlist-btn svg {
    width: 14px;
    height: 14px;
}

.best-seller-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    pointer-events: none;
}
.best-seller-badge svg {
    width: 12px;
    height: 12px;
}


/* Sections */
.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-align: center;
}

.editorial-title {
    font-size: 8rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .editorial-title { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 768px) {
    .editorial-title { font-size: clamp(2rem, 10vw, 3rem); }
}


.section-title-bold {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.section-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 2rem;
    text-align: center;
}

.manifesto-subtitle {
    letter-spacing: 0.8em;
    font-size: 0.65rem;
    margin-bottom: 2.5rem;
    text-align: left; /* Image shows left aligned */
}

.manifesto-title {
    color: var(--black);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: left;
}

.manifesto-title .italic {
    color: var(--gray-400); 
    font-family: var(--font-serif);
}

@media (max-width: 768px) {
    .manifesto-title { font-size: 3rem; }
    .manifesto-subtitle { text-align: center; }
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    animation: slowZoom 25s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 65rem;
    padding: 0 var(--gutter-mob);
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 3.5rem;
    line-height: 1.05;
    font-weight: 400;
}

.hero-subtitle {
    color: var(--white) !important;
    opacity: 1;
    font-size: 0.65rem;
    letter-spacing: 0.8em;
    margin-bottom: 2rem;
}

.hero-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 4.5rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-explorer {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-explorer:hover {
    opacity: 1;
}

.vertical-text {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--white);
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.explorer-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
}

@media (max-width: 768px) {
    .hero h1 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .hero-italic { font-size: clamp(2rem, 10vw, 2.8rem); }
    .hero-subtitle { letter-spacing: 0.4em; }
    .hero-content { padding-top: 10vh; }
}

.italic {
    font-style: italic;
    font-weight: 300;
}


/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media screen and (min-width: 48rem) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media screen and (min-width: 64rem) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--gutter-desk);
    }
}

/* Product Cards (Premium Luxury Edition) */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: transparent;
    transition: var(--transition);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #fdfdfd; /* Very subtle off-white for contrast */
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08); /* Slightly more pronounced zoom */
}

/* Glassmorphism Overlays */
.product-card .overlay-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.product-card:hover .overlay-actions {
    transform: translateY(0);
}

.quick-add-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.quick-add-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Refined Badges */
.best-seller-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px; /* More sophisticated than full round */
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wishlist-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--black);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.wishlist-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Product Info Refinement */
.product-info {
    padding-top: 1rem;
    width: 100%;
}

.product-info h3 {
    font-size: 0.95rem;
    font-family: var(--font-serif);
    font-weight: 400;
    margin: 0.5rem 0;
    text-transform: none; /* Serifs look better in mixed case */
    letter-spacing: 0;
    color: #111;
}

.product-category {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--gray-400);
}

.product-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.05em;
    display: block;
    margin-top: 0.25rem;
}

/* Legacy grid-3 support */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 1s forwards;
}

/* Luxury Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 480px;
    background: #fff;
    z-index: 2000;
    box-shadow: -30px 0 80px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-header {
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-50);
}

.cart-header h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-100) transparent;
}

/* Cart Item Card */
.cart-item-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-50);
    opacity: 0;
    transform: translateY(20px);
}

.cart-drawer.open .cart-item-card {
    animation: cartItemFadeIn 0.5s forwards;
}

@keyframes cartItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-image {
    width: 90px;
    height: 110px;
    background: var(--gray-50);
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.cart-item-card:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-category {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: block;
}

.cart-item-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-100);
    padding: 0.2rem;
    border-radius: 20px; /* Pill shape */
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.qty-btn:hover:not(:disabled) {
    color: var(--black);
}

.qty-val {
    font-size: 0.7rem;
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--black);
}

/* Cross-sell Section */
.cross-sell-section {
    padding: 2rem 3rem;
    background: #fdfdfd;
    border-top: 1px solid var(--gray-50);
}

.cross-sell-title {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.cross-sell-grid {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.cross-sell-item {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
}

.cross-sell-img {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    margin-bottom: 0.5rem;
    border-radius: 50%; /* Circle look */
    overflow: hidden;
    margin-inline: auto;
}

.cross-sell-name {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-footer {
    padding: 3rem;
    border-top: 1px solid var(--gray-50);
    background: #fff;
}

/* Admin / Dark Card */
.dark-card {
    background: #050505;
    padding: 6rem 4rem;
    color: white;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .dark-card {
        padding: 4rem 1.5rem;
        border-radius: 2px;
    }
    .dark-card .section-title {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
    }
    .dark-card .btn + .btn {
        margin-top: 1rem;
    }
}

.glow {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 3rem; }
    .section-title-bold { font-size: 3rem; }
    .hero h1 { font-size: 3.5rem; }
}


@media (max-width: 768px) {
    .nav-links { display: none; }
    .section { padding: 4rem 0; }
    .section-title { font-size: 2.5rem; }

    /* ---- Footer Mobile ---- */
    .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        text-align: left;
    }
    .footer-brand-section {
        align-items: center;
    }
    .footer-newsletter-v2 {
        max-width: 100%;
    }
    .newsletter-form-v2 {
        justify-content: center;
    }
    .footer-social-v2 {
        justify-content: center;
    }
    .footer-bottom-v2 {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-meta-v2 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-logo-v2 img {
        height: 40px;
    }
}

/* Mobile Menu System */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2600;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-menu-logo {
    height: 32px;
}

.mobile-menu-close {
    font-size: 2rem;
    line-height: 1;
    color: var(--gray-400);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-grow: 1;
}

.mobile-nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

/* Fluid Typography & Spacing */
@media (max-width: 768px) {
    :root {
        --section-spacing: 8vh;
    }
    
    body {
        padding-top: 6rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-logo {
        height: 32px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .section-title-bold {
        font-size: 2.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .nav-top {
        grid-template-columns: 1fr auto 1fr;
    }
    
    .nav-actions {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}



/* ============================================
   FOOTER — Different Touch The Brand
   ============================================ */
.footer {
    background: #000;
    color: #fff;
    padding: 8rem 0 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    overflow-x: hidden;
}

.footer-container { /* No extra padding — max-w-7xl handles it */ }

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 8vw;
    margin-bottom: 6rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo-v2 img {
    height: 56px;
    width: auto;
}

.footer-newsletter-v2 { max-width: 300px; }

.newsletter-title-v2 {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-desc-v2 {
    font-size: 0.6rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newsletter-form-v2 {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.newsletter-input-v2 {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    flex-grow: 1;
    outline: none;
}

.newsletter-submit-v2 {
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    padding-left: 1rem;
    border: none;
    cursor: pointer;
}

.footer-social-v2 {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: #555;
    font-weight: 600;
    text-decoration: none;
}

.social-link:hover { color: var(--white); }

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.footer-link {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8c8c8c;
    margin-bottom: 1.25rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-link:hover { color: var(--white); }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 3rem;
}

.footer-bottom-v2 {
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-v2 {
    font-size: 0.45rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-meta-v2 {
    display: flex;
    gap: 3rem;
    align-items: center;
    font-size: 0.45rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.footer-admin-link {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer — Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 5vw;
    }
}

/* Footer — Mobile (≤ 768px) */
@media (max-width: 768px) {
    .footer { padding: 4rem 0 3rem; }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer-brand-section { align-items: center; }
    .footer-logo-v2 img { height: 36px; }
    .footer-newsletter-v2 { max-width: 100%; width: 100%; }
    .newsletter-form-v2 { justify-content: center; }
    .footer-social-v2 { justify-content: center; }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
    }

    .footer-meta-v2 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Disable admin link on mobile */
    .footer-copyright-v2 {
        pointer-events: none;
        cursor: default;
    }
}

/* Manifesto Section */
/* Manifesto Section */
.manifesto-section {
    background: var(--white);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 8vw;
}

.manifesto-quote-card {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--gray-100);
    max-width: 350px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .manifesto-quote-card {
        position: relative;
        inset: auto;
        margin: -2rem auto 0;
        max-width: 90%;
        padding: 2rem;
        right: 0;
    }
}

/* Product Detail System */
.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 8vw;
    align-items: start;
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    #product-info-panel {
        position: static !important;
    }
}

/* LV Staggered Grid */
.lv-staggered-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: flex-start;
    padding: 0 var(--gutter-desk);
    min-height: 100vh;
}

.lv-gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--gray-50);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); /* Softer, more elegant shadow */
    border-radius: 20px; /* Elegant soft curves */
}

.lv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 { margin-top: 15vh; }
.item-2 { margin-top: 35vh; }
.item-3 { margin-top: 5vh; }
.item-4 { margin-top: 20vh; }
@media (max-width: 1024px) {
    .item-1, .item-2, .item-3, .item-4 {
        margin-top: 0 !important;
    }
}

.grey-placeholder {
    width: 100%;
    height: 100%;
    background: #9fa1a0; /* Grey from mockup */
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 1024px) {
    .lv-staggered-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        min-height: auto;
    }
    .lv-gallery-item {
        margin: 0 !important;
    }
}

/* Shop Layout with Sidebar */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.shop-sidebar {
    position: sticky;
    top: 12rem;
    height: fit-content;
    padding-right: 2rem;
    border-right: 1px solid var(--gray-100);
}

.filter-group {
    margin-bottom: 3rem;
}

.filter-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-item {
    font-size: 0.75rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-item:hover, .filter-item.active {
    color: var(--black);
}

.filter-checkbox {
    width: 14px;
    height: 14px;
    border: 1px solid var(--gray-300);
    display: inline-block;
    position: relative;
}

.filter-item.active .filter-checkbox {
    background: var(--black);
    border-color: var(--black);
}

.price-slider-container {
    margin-top: 1rem;
}

/* Heritage Aesthetics */
.heritage-img-bw {
    filter: grayscale(100%);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.heritage-img-bw:hover {
    filter: grayscale(0%);
}

#heritage-hero-img {
    filter: grayscale(100%);
}


/* Top Filters Bar */
.top-filters-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--gray-50);
    padding-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.top-filters-bar::-webkit-scrollbar {
    display: none;
}

.top-filter-btn {
    background: none;
    border: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gray-400);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.top-filter-btn:hover, .top-filter-btn.active {
    color: var(--black);
    border-bottom-color: var(--black);
}


/* Cart Item Removal */
.cart-remove-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: var(--transition);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: 1rem;
    display: inline-block;
}

.cart-remove-btn:hover {
    color: var(--black);
    text-decoration-color: var(--primary);
}

.cart-item-card.removing {
    animation: cartItemFadeOut 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cartItemFadeOut {
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}


.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-200);
    font-size: 0.7rem;
    font-family: var(--font-sans);
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    #shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    /* Product Card Mobile Shrink */
    .product-info h3 {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem;
    }
    
    .product-category {
        font-size: 0.5rem !important;
    }
    
    .product-price {
        font-size: 0.7rem !important;
    }

    .top-filters-bar {
        justify-content: flex-start !important;
        padding-left: var(--gutter-mob);
        padding-right: var(--gutter-mob);
        gap: 1.5rem !important;
        margin-bottom: 3rem;
    }

    /* Sidebar to Drawer Transformation */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100%;
        background: white;
        z-index: 3000;
        padding: 3rem 2rem;
        box-shadow: 20px 0 50px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: block !important; /* Ensure it's a block when open */
        overflow-y: auto;
    }

    .shop-sidebar.active {
        transform: translateX(0);
    }

    /* Filter Drawer Overlay */
    .filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(4px);
        z-index: 2999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }

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

    .mobile-filter-toggle-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 var(--gutter-mob);
    }

    .mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--black);
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.2rem;
        font-weight: 600;
        cursor: pointer;
    }

    .sidebar-close-btn {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--gray-400);
        cursor: pointer;
    }

    .price-range-inputs {
        flex-direction: column;
        align-items: stretch !important;
    }
}

@media (min-width: 1025px) {
    .mobile-filter-btn, .sidebar-close-btn, .filter-overlay {
        display: none !important;
    }
}

@media (min-width: 48rem) and (max-width: 64rem) {
    #shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 4.5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-50);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }
    
    .page-header {
        padding-top: 6rem !important;
    }

    .shop-hero {
        height: 35vh !important;
        min-height: 250px !important;
    }

    .heritage-title {
        font-size: 3rem !important;
    }

    .heritage-hero {
        min-height: 50vh !important;
    }

    .section-title {
        font-size: 2.25rem !important;
        margin-bottom: 3rem !important;
    }
}

.heritage-title {
    font-size: 6rem;
}

/* Heritage Editorial Gallery System */
.heritage-editorial-gallery {
    display: flex;
    flex-direction: column;
    gap: 15vh;
}

.heritage-editorial-block {
    display: flex;
    align-items: center;
    gap: 8vw;
}

.heritage-editorial-block.reverse {
    flex-direction: row-reverse;
}

.heritage-editorial-img {
    flex: 1.2;
    min-width: 300px;
}

.heritage-editorial-text {
    flex: 0.8;
    min-width: 250px;
    padding: 2rem;
}

.heritage-editorial-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.heritage-editorial-block.image-left h3 {
    border-left: 2px solid var(--primary);
}

.heritage-editorial-block.image-right h3 {
    border-right: 2px solid var(--primary);
    text-align: right;
}

@media (max-width: 1024px) {
    .heritage-editorial-gallery {
        gap: 8vh;
    }
    
    .heritage-editorial-block {
        flex-direction: column !important;
        gap: 3rem;
    }
    
    .heritage-editorial-text {
        padding: 0;
        text-align: left !important;
    }
    
    .heritage-editorial-text h3 {
        font-size: 1.75rem;
        padding: 0 0 0 1.5rem !important;
        border-right: none !important;
        border-left: 2px solid var(--primary) !important;
        text-align: left !important;
        margin-bottom: 1.25rem;
    }
    
    .heritage-editorial-img {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .heritage-editorial-gallery {
        gap: 6rem;
    }
    
    .heritage-editorial-text h3 {
        font-size: 1.5rem;
    }
}

/* Checkout Page */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    margin-top: 4rem;
}

.checkout-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.checkout-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition);
}

.checkout-input:focus {
    border-bottom-color: var(--black);
}

.payment-methods {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.payment-method {
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-method:hover {
    border-color: var(--black);
}

.payment-method.active {
    border-color: var(--black);
    background: var(--gray-50);
}

.payment-method input {
    display: none;
}

.payment-radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method.active .payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
}

.order-summary {
    position: sticky;
    top: 8rem;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--gray-50);
    box-shadow: 0 40px 80px rgba(0,0,0,0.03);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.summary-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 1.5rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
        margin-top: 4rem;
    }
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2.5rem var(--gutter-desk);
    display: flex;
    justify-content: center;
}

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

.search-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8vh;
}

.search-logo {
    height: 32px;
}

.search-close {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--black);
    cursor: pointer;
    line-height: 1;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 6vh;
}

#search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--black);
    padding: 1rem 0;
    outline: none;
    text-align: center;
}

#search-input::placeholder {
    color: var(--gray-200);
}

.search-input-line {
    height: 1px;
    background: var(--gray-100);
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.open .search-input-line {
    transform: scaleX(1);
}

.search-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 5rem;
    scrollbar-width: none;
}

.search-section-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gray-400);
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.search-result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s;
}

.search-result-card:hover {
    transform: translateY(-10px);
}

.search-result-image {
    width: 100%;
    aspect-ratio: 0.8;
    background: var(--gray-50);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-category {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.search-result-name {
    font-size: 0.85rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

.search-result-price {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gray-400);
    padding: 4rem 0;
}

.search-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.search-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--black);
    transition: color 0.3s;
}

.search-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    #search-input { font-size: 2rem; }
    .search-results-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .search-links a { font-size: 1.5rem; }
}

/** MODERN CHECKOUT (V2) **/
.modern-checkout-page { display: flex; min-height: 100vh; flex-direction: row; font-family: var(--font-sans); }
.modern-checkout-left { flex: 1; padding: 5rem 10%; background: #ffffff; display: flex; flex-direction: column; }
.modern-checkout-right { width: 45%; background: var(--gray-50); padding: 5rem 5%; border-left: 1px solid var(--gray-100); }
.modern-checkout-header { width: 100%; padding: 2rem 10%; display: flex; justify-content: space-between; align-items: center; background: white; }
.modern-checkout-logo { width: 150px; }
.return-link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); text-decoration: none; transition: color 0.3s; }
.return-link:hover { color: var(--black); }
.checkout-step-title { font-size: 1.5rem; font-family: var(--font-serif); margin-bottom: 3rem; margin-top: 3rem; position: relative; }
.modern-input-group { margin-bottom: 1.5rem; position: relative; }
.modern-input { width: 100%; padding: 1.5rem 1rem 0.5rem; border: 1px solid var(--gray-200); background: transparent; font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
.modern-label { position: absolute; left: 1rem; top: 1rem; font-size: 0.85rem; color: var(--gray-400); transition: all 0.3s; pointer-events: none; }
.modern-input:focus, .modern-input:not(:placeholder-shown) { border-color: var(--black); }
.modern-input:focus ~ .modern-label, .modern-input:not(:placeholder-shown) ~ .modern-label { top: 0.4rem; font-size: 0.65rem; color: var(--gray-600); }
.modern-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.modern-payment-option { border: 1px solid var(--gray-200); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: all 0.3s; background: white; }
.modern-payment-option.active { border-color: var(--black); background: var(--gray-50); }
.modern-payment-option svg { width: 24px; height: 24px; margin-bottom: 0.5rem; }
.modern-payment-option span { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.summary-items { max-height: 50vh; overflow-y: auto; margin-bottom: 2rem; padding-right: 1rem; }
.summary-item-card { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center; }
.summary-item-img { width: 60px; height: 75px; background: var(--gray-200); flex-shrink: 0; }
.summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-item-details { flex-grow: 1; }
.summary-item-title { font-size: 0.75rem; text-transform: uppercase; font-weight: 500; margin-bottom: 0.2rem; }
.summary-item-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--gray-500); }

@media (max-width: 900px) {
    .modern-checkout-page { flex-direction: column-reverse; }
    .modern-checkout-right { width: 100%; padding: 2rem 5%; border-left: none; border-bottom: 1px solid var(--gray-100); }
    .modern-checkout-left { padding: 2rem 5%; }
    .modern-payment-grid { grid-template-columns: 1fr; }
    .modern-checkout-header { justify-content: center; }
    .return-link { display: none; }
}