@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
:root {
    /* Old Money Aesthetic Colors */
    --color-bg: #FDFCF0; /* Creamy off-white, cashmere tone */
    --color-surface-soft: #F4F1E1; /* Soft contrast for cards */
    --color-text: #171614; /* Extremely dark charcoal brown, almost black */
    --color-text-muted: #6B685E;
    --color-accent: #171614; /* Deep, rich black-brown for buttons/accents */
    --color-gold: #A78C53; /* Antique gold */
    --color-border: #E8E5D5;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Edwardian Script ITC', 'Great Vibes', cursive;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- Common UI Components --- */
.elegant-huge-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
}
@media(max-width: 768px) { .elegant-huge-text { font-size: 3rem; } }

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--color-accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-dark {
    background-color: var(--color-accent);
    color: var(--color-bg);
}
.btn-dark:hover {
    background-color: transparent;
    color: var(--color-accent);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
}
.btn-outline:hover {
    background-color: var(--color-bg);
    border-color: var(--color-border);
}
.btn-white {
    background-color: white;
    color: var(--color-text);
    border: none;
    padding: 0.6rem 2rem;
    font-weight: 500;
    border-radius: 2px;
}
.btn-white:hover {
    background-color: #f0f0f0;
}
.btn-transparent {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.6rem 2rem;
    font-weight: 500;
    border-radius: 2px;
}
.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
}
.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}
.mobile-menu-btn { display: none; }
.nav-left { gap: 2rem; }
.nav-left a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 500;
}
.nav-left a:hover { color: var(--color-gold); }
.nav-center {
    flex: 1;
    text-align: center;
}
.gambino-logo-text {
    font-family: var(--font-logo);
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1;
}
.gambino-logo-text.white { color: #fff; }

/* --- Search Bar --- */
.search-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.search-input {
    width: 0;
    max-width: 0;
    opacity: 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text);
    padding: 0;
    outline: none;
    transition: max-width 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.search-wrapper.open .search-input {
    max-width: 200px;
    width: 200px;
    opacity: 1;
    padding: 0.2rem 0.5rem;
}
.search-input::placeholder { color: var(--color-text-muted); }
.currency-select {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    outline: none;
    padding-right: 0.5rem;
}
.currency-select:hover {
    color: var(--color-gold);
}
.icon-btn, .cart-btn {
    background: none; border: none; cursor: pointer; color: var(--color-text);
    display: flex; align-items: center; gap: 0.5rem;
}
#cart-count {
    font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
}

/* --- Hero Section (Split Layout) --- */
.hero-split {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 7rem 3rem 3rem; /* account for navbar */
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}
.hero-left {
    flex: 1;
    padding-right: 2rem;
}
.hero-left p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 2rem 0;
    max-width: 90%;
    font-weight: 300;
}
.hero-btns {
    display: flex; gap: 1rem;
}
.hero-right {
    flex: 1.2;
    display: flex; justify-content: flex-end;
}
.hero-img-container {
    background-color: var(--color-surface-soft);
    padding: 2rem 2rem 0 2rem;
    border-radius: 40px;
    border-top-left-radius: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.hero-img-container img {
    width: 115%;
    max-width: none;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 -7.5%;
}
@media(max-width: 1024px) {
    .hero-split { flex-direction: column; text-align: center; padding-top: 4rem; }
    .hero-left { padding: 0; }
    .hero-left p { margin: 2rem auto; }
    .hero-btns { justify-content: center; }
}

/* --- Marquee --- */
.marquee {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: scroll 25s linear infinite;
}
.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-right: 1rem;
    color: #fff;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Promo Section --- */
.promo-section {
    max-width: 1600px;
    margin: 5rem auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.promo-card {
    background-color: var(--color-surface-soft);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.promo-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.large-promo {
    height: 600px;
    overflow: visible; /* Prevent clipping so guys can pop out of the top */
}
.large-promo img { height: 85%; border-radius: 20px 20px 0 0; }

/* Dynamic Cutout Overrides */
.promo-img-1 {
    position: absolute; bottom: 0; 
    height: 105% !important; 
    width: auto !important; max-width: none !important;
    left: 50%; transform: translateX(-45%); 
    border-radius: 0 !important;
}
.promo-img-2 {
    position: absolute; bottom: 0; 
    height: 115% !important; 
    width: auto !important; max-width: none !important;
    left: 50%; transform: translateX(-48%); 
    border-radius: 0 !important;
}

.large-promo .promo-btn {
    position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
    background: #fff; border: 1px solid #fff; padding: 0.8rem 2.5rem;
    font-weight: 500; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s;
}
.large-promo .promo-btn:hover { background: var(--color-text); color: white; border-color: var(--color-text); }
.promo-stack {
    display: flex; flex-direction: column; gap: 2rem;
}

.small-promo.horizontal {
    height: 290px;
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 2rem;
    overflow: visible; /* Allow images to pop out the top if oversized */
}
.promo-cutout {
    position: absolute;
    bottom: 0;
    right: -15%; /* Push image heavily to the side */
    height: 130%; 
    width: auto;
    object-fit: contain;
    z-index: 1;
}
.promo-text { width: 50%; position: relative; z-index: 2; } /* give image more space */
.promo-text .muted { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.promo-text h3 { 
    font-size: 2.5rem; 
    margin: 0.5rem 0 1.5rem; 
    line-height: 1.1; 
    font-family: 'Archivo Black', 'Impact', sans-serif; 
    font-weight: 900; /* Ultra bold */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.outline-sm {
    background: transparent; border: 1px solid var(--color-accent); padding: 0.5rem 1.5rem; cursor: pointer; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px;
}
@media(max-width: 1024px) {
    .promo-section { grid-template-columns: 1fr; }
}

/* --- Collection Section --- */
.collection-section {
    max-width: 1600px;
    margin: 8rem auto 5rem;
    padding: 0 3rem;
}
.collection-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}
.collection-desc {
    max-width: 400px; font-size: 0.9rem; color: var(--color-text-muted); text-align: right;
}
.category-tabs {
    display: flex; gap: 1rem; margin-bottom: 3rem;
}
.tab {
    background: transparent; border: 1px solid var(--color-border); padding: 0.6rem 1.5rem;
    font-family: var(--font-body); font-size: 0.85rem; cursor: pointer; color: var(--color-text-muted);
}
.tab.active, .tab:hover {
    background: var(--color-accent); color: white; border-color: var(--color-accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media(max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
    text-align: left;
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
    background-color: var(--color-surface-soft);
    border-radius: 10px;
}
.product-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}
.wishlist-btn {
    position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.7); border: none;
    border-radius: 50%; padding: 0.5rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: all 0.3s ease; color: var(--color-text);
}
.wishlist-btn:hover { background: white; color: #6B4C31; }
.wishlist-btn.active { color: #6B4C31; }
.wishlist-btn svg { width: 16px; height: 16px; }

/* Hover Overlay matching the UI Reference */
.hover-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    opacity: 0; transition: opacity 0.3s ease;
}
.product-img-wrapper:hover .hover-overlay { opacity: 1; }

.product-info { display: flex; justify-content: space-between; align-items: flex-end; }
.product-info h3 { font-size: 0.9rem; font-family: var(--font-body); font-weight: 500; }
.product-price { font-size: 0.9rem; font-weight: 600; }

/* --- About Section --- */
.about-section { max-width: 1200px; margin: 8rem auto; padding: 0 3rem; display: flex; gap: 4rem; align-items: flex-start; }
.about-section h2 { flex: 1; position: sticky; top: 100px; }
.about-content { flex: 1.5; display: flex; flex-direction: column; gap: 1.5rem; }
.about-content p { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.8; }
.about-content p:first-child { font-size: 1.5rem; color: var(--color-text); font-family: var(--font-heading); line-height: 1.4; }
@media(max-width: 1024px) {
    .about-section { flex-direction: column; }
    .about-section h2 { position: static; margin-bottom: 2rem; }
}

/* --- Bottom Banner --- */
.bottom-banner {
    max-width: 1600px;
    margin: 5rem auto; padding: 0 3rem;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.bottom-banner p { max-width: 400px; font-size: 0.9rem; color: var(--color-text-muted); }
.text-right { text-align: right; }

/* --- Footer --- */
.footer {
    background-color: var(--color-accent); color: white;
}
.footer-layout {
    display: flex; min-height: 500px; max-width: 1600px; margin: 0 auto;
}
.footer-left { width: 30%; background: #000; }
.footer-left img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.footer-right {
    width: 70%; padding: 5rem 5rem 5rem 8rem; display: flex; flex-direction: column; justify-content: center;
}
.footer-right h2 { color: white; margin-bottom: 1rem; }
.footer-right p { color: #aaa; font-size: 0.9rem; max-width: 500px; margin-bottom: 3rem; }
.logo-large-wrap { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }


/* --- Modal --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: var(--color-bg); width: 90%; max-width: 800px; padding: 3rem; position: relative; border-radius: 4px; border: 1px solid var(--color-border);
}
.close-btn {
    position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--color-text);
}
.modal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.order-summary { padding: 2rem; background: var(--color-surface-soft); border-radius: 4px; }
.summary-item { display: flex; gap: 1rem; }
.summary-item img { width: 80px; height: 100px; object-fit: cover; border-radius: 4px; }
.payment-section h3 { margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 500; }
.payment-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.payment-option { display: flex; align-items: center; padding: 1rem; border: 1px solid var(--color-border); background: white; cursor: pointer; }
.payment-option:hover, .payment-option input:checked + .option-content { border-color: var(--color-gold); }
.payment-option input { margin-right: 1rem; accent-color: var(--color-accent); }
.customer-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.customer-details input, .customer-details textarea { padding: 1rem; border: 1px solid var(--color-border); font-family: var(--font-body); outline: none; background: white; resize: vertical; }
.customer-details input:focus, .customer-details textarea:focus { border-color: var(--color-gold); }

/* --- Size Selector --- */
.size-selector { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn { 
    background: transparent; border: 1px solid var(--color-border); padding: 0.5rem 1rem; 
    font-family: var(--font-body); font-weight: 500; cursor: pointer; transition: all 0.2s;
    min-width: 45px; text-align: center;
}
.size-btn:hover { border-color: var(--color-text); }
.size-btn.active { background: var(--color-text); color: white; border-color: var(--color-text); }

/* --- Full Page Product Details Mode --- */
.modal-content.full-page {
    max-width: 95vw;
    height: 95vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}
.full-page-layout {
    display: flex;
    height: 100%;
}
.fp-image-col {
    flex: 1.2;
    background: #fcecdc;
    position: relative;
}
#fp-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    cursor: zoom-in;
    background-color: #fcecdc;
}
.fp-details-col {
    flex: 1;
    padding: 3rem 4rem;
    overflow-y: auto;
}

/* Product Detail Utilities */
.rating-row { color: var(--color-text); font-size: 0.8rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.rating-stars { letter-spacing: 2px; }
.price-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.price-old { text-decoration: line-through; color: var(--color-text-muted); font-size: 1rem; }
.price-new { color: #6F4E37; font-size: 1.4rem; font-weight: 600; }
.badge-save { background: #6F4E37; color: white; padding: 0.2rem 0.5rem; font-size: 0.7rem; font-weight: bold; border-radius: 2px; }

.pd-section-label { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; display: block; }

.color-swatches { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; align-items: flex-start; }

/* Image thumbnail swatches (legacy / non-color products) */
.color-swatch { width: 40px; height: 50px; border: 1px solid var(--color-border); cursor: pointer; object-fit: cover; transition: border-color 0.2s; }
.color-swatch.active { border: 2px solid var(--color-text); }
.color-swatch:hover { border-color: var(--color-text); }

/* Circle + label swatches (color variant products) */
.color-swatch-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    cursor: pointer; min-width: 52px;
}
.color-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px var(--color-border);
    transition: box-shadow 0.2s, transform 0.2s;
}
.color-swatch-wrap:hover .color-circle { transform: scale(1.08); box-shadow: 0 0 0 2px var(--color-text); }
.color-swatch-wrap.active .color-circle { box-shadow: 0 0 0 2px var(--color-text); border-color: var(--color-bg); outline: 2px solid var(--color-text); outline-offset: 2px; }
.color-label {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--color-text-muted); text-align: center; white-space: nowrap;
    transition: color 0.2s;
}
.color-swatch-wrap.active .color-label { color: var(--color-text); font-weight: 600; }

.stock-indicator { font-size: 0.8rem; color: var(--color-text); margin-top: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.stock-dot { width: 8px; height: 8px; background: #6F4E37; border-radius: 50%; display: inline-block; }
.stock-bar { height: 2px; background: var(--color-border); margin: 0.5rem 0 1.5rem; position: relative; }
.stock-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 20%; background: #6F4E37; }

.promo-box { border: 1px solid var(--color-border); background: var(--color-surface-soft); padding: 1rem; font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;}
.info-boxes { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--color-border); margin-bottom: 2rem; }
.info-box { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.info-box:last-child { border-right: none; }
.info-box p { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.2; }

/* Zoom Modal Lightbox */
#zoom-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 9999; display: flex; flex-direction: column;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
#zoom-modal.active { opacity: 1; pointer-events: auto; }
.zoom-header { padding: 1.5rem 3rem; display: flex; justify-content: flex-end; position: absolute; top:0; right:0; z-index:10; }
.zoom-close { background: none; border: none; font-size: 3rem; cursor: pointer; color: var(--color-text); line-height: 1;}
.zoom-gallery { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.zoom-img-wrapper { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.zoom-img-wrapper img { max-width: 100%; max-height: 100vh; object-fit: contain; }
.zoom-btn { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 3rem; cursor: pointer; color: var(--color-text); z-index: 10; opacity: 0.5; transition: opacity 0.3s; padding: 2rem; }
.zoom-btn:hover { opacity: 1; }
.zoom-btn.prev { left: 0; }
.zoom-btn.next { right: 0; }

.gallery-thumbs {
    position: absolute; bottom: 2rem; display: flex; gap: 0.5rem; justify-content: center; width: 100%; z-index: 10;
}
.g-btn { width: 10px; height: 10px; border-radius: 50%; background: #ccc; border: none; cursor: pointer; transition: background 0.3s; padding: 0; }
.g-btn.active { background: var(--color-text); }

/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */

.mobile-disclaimer { display: none; }
.search-wrapper, .currency-select { display: none !important; }
#mobile-disclaimer { display: none; }
@media (max-width: 768px) {
    #mobile-disclaimer {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: space-between;
        background: var(--color-accent);
        color: #fff;
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
        z-index: 101;
        box-sizing: border-box;
    }
    /* Navbar mobile */
    .navbar {
        padding: 0.5rem 1rem;
        position: fixed;
        top: 35px;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }
    body, main {
        padding-top: 5rem;
    }
    .nav-right .cart-btn {
        padding: 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-left {
        display: flex;
        flex: 1;
        justify-content: flex-start;
        align-items: center;
        min-width: 0;
    }
    .nav-left a {
        display: none;
    }
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.5rem 0.5rem 0;
    }
    .mobile-menu-btn svg {
        width: 24px;
        height: 24px;
        color: var(--color-text);
    }
    .nav-center {
        position: absolute;
        left: 3.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
        width: auto;
    }
    .gambino-logo-text {
        font-size: 2rem;
    }
    .nav-right {
        flex: 1;
        gap: 0.5rem;
        justify-content: flex-end;
        min-width: 0;
    }
    .currency-select {
        display: none;
    }
    .icon-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile nav overlay */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        z-index: 200;
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    .mobile-nav.active {
        display: flex;
    }
    .mobile-nav a {
        font-size: 1.2rem;
        color: var(--color-text);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--color-border);
    }
    .mobile-nav .close-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    /* Hero section mobile */
    .hero-split {
        padding: 2rem 1rem;
        gap: 2rem;
        min-height: auto;
    }
    .hero-left h1 {
        font-size: 2rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    .hero-img-container {
        border-radius: 20px;
        border-top-left-radius: 80px;
        padding: 3rem 1.5rem 0 1.5rem;
    }
    .hero-img-container img {
        margin-bottom: -1rem;
    }
    
    /* Promo section mobile */
    .promo-section {
        padding: 0 1rem;
        gap: 1rem;
    }
    .promo-text h3 {
        font-size: 1.5rem;
    }
    .small-promo.horizontal {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        padding-bottom: 0;
        overflow: hidden;
    }
    .promo-text {
        width: 100%;
    }
    .promo-cutout {
        position: relative;
        right: auto;
        height: auto;
        width: 100%;
        margin-bottom: -5px;
        display: block;
    }
    
    /* Collection section mobile */
    .collection-section {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    .collection-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .collection-desc {
        text-align: left;
    }
    .category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .tab {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Product grid mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .product-card {
        font-size: 0.8rem;
    }
    .product-info h3 {
        font-size: 0.75rem;
    }
    .product-price {
        font-size: 0.8rem;
    }
    
    /* About section mobile */
    .about-section {
        padding: 0 1rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Bottom banner mobile */
    .bottom-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    .text-right {
        text-align: center;
    }
    
    /* Footer mobile */
    .footer-layout {
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
        height: 200px;
    }
    .footer-right {
        width: 100%;
        padding: 2rem 1rem;
    }
    
    /* Modal mobile */
    .modal-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        padding: 1.5rem;
        border-radius: 0;
    }
    .modal-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .close-btn {
        top: 0.5rem;
        right: 1rem;
    }
    
    /* Full page product modal mobile */
    .modal-content.full-page {
        width: 100vw;
        height: 100vh;
        max-width: 100%;
        max-height: 100%;
    }
    .full-page-layout {
        flex-direction: column;
    }
    .fp-image-col {
        flex: none;
        height: 45vh;
    }
    .fp-details-col {
        flex: 1;
        padding: 1.5rem;
        overflow-y: auto;
    }
    .gallery-thumbs {
        bottom: 1rem;
    }
    
    /* Checkout modal mobile */
    .payment-options {
        gap: 0.5rem;
    }
    .payment-option {
        padding: 0.8rem;
    }
    .customer-details input,
    .customer-details textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    #upi-payment-details {
        padding: 1rem 0.5rem;
    }
    #upi-payment-details img {
        max-width: 200px;
    }
    #upi-transaction-id {
        font-size: 16px;
    }
    
    /* Size selector mobile */
    .size-selector {
        gap: 0.4rem;
    }
    .size-btn {
        padding: 0.4rem 0.8rem;
        min-width: 40px;
        font-size: 0.8rem;
    }
    
    /* Color swatches mobile */
    .color-swatches {
        gap: 0.5rem;
    }
    .color-swatch-wrap {
        min-width: 45px;
    }
    .color-circle {
        width: 30px;
        height: 30px;
    }
    
    /* Wishlist modal mobile */
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .summary-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .summary-details {
        padding: 0.5rem 0;
    }
    
    /* Info boxes mobile */
    .info-boxes {
        grid-template-columns: 1fr;
    }
    .info-box {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 1rem;
    }
    .info-box:last-child {
        border-bottom: none;
    }
    
    /* Touch improvements */
    button, 
    .btn,
    .tab,
    .size-btn,
    .color-swatch-wrap,
    .payment-option {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        min-height: 44px;
    }
    
    /* Prevent horizontal scroll */
html {
    overflow-x: hidden;
}
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    /* Form inputs better on mobile */
    input, 
    textarea, 
    select {
        font-size: 16px;
    }
    
    /* Swipeable product gallery */
    .product-image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .gambino-logo-text {
        font-size: 1.6rem;
    }
    .hero-btns .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .modal-content.full-page {
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    .fp-image-col {
        height: 40vh;
    }
}

/* =========================================
   ADDITIONAL MOBILE FIXES
   ========================================= */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    /* Hero section mobile */
    .hero-split {
        padding: 2rem 1rem;
        gap: 2rem;
        min-height: auto;
    }
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    .hero-img-container {
        border-radius: 20px;
        border-top-left-radius: 80px;
        padding: 3rem 1.5rem 0 1.5rem;
    }
    .hero-img-container img {
        margin-bottom: -1rem;
    }
    .search-wrapper {
        display: none;
    }
    
    /* Smaller nav icons */
    .icon-btn {
        padding: 0.3rem;
    }
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    .cart-btn, .wishlist-btn {
        padding: 0.3rem;
    }
    #wishlist-count, #cart-count {
        font-size: 0.6rem;
        min-width: 14px;
        height: 14px;
    }
    

    /* Center logo */
    .nav-center {
        text-align: center;
        padding: 0 2rem;
    }
    .gambino-logo-text {
        font-size: 1.3rem;
    }
    
    /* Fix quick buy modal - make it scrollable */
    .modal-content.full-page {
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
    }
    .fp-details-col {
        padding: 1rem;
        padding-bottom: 4rem; /* Space for buttons */
    }
    .fp-details-col::-webkit-scrollbar {
        width: 4px;
    }
    
    /* Fix complete the look section */
    #complete-the-look .fp-details-col {
        max-height: 40vh;
        overflow-y: auto;
    }
    
    /* Fix homepage product grid */
    .hero-split {
        padding: 2rem 1rem;
        min-height: auto;
    }
    .hero-split h1 {
        font-size: 1.8rem;
    }
    .hero-img-container {
        padding: 0.5rem;
    }
    .hero-img-container img {
        max-height: 250px;
    }
    
    /* Promos smaller */
    .promo-section {
        padding: 0 1rem;
    }
    .promo-card {
        border-radius: 12px;
    }
    .promo-text h3 {
        font-size: 1rem;
    }
    
    /* Product cards smaller */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .product-card {
        padding: 0.5rem;
    }
    .product-info h3 {
        font-size: 0.7rem;
    }
    .product-price {
        font-size: 0.75rem;
    }
    
    /* Color swatches smaller */
    .grid-color-circle {
        width: 12px;
        height: 12px;
    }
    
    /* Footer smaller */
    .footer-layout {
        flex-direction: column;
    }
    .footer-left {
        height: 150px;
    }
    .footer-right {
        padding: 1.5rem 1rem;
    }
    
    /* Collection page */
    .collection-page-hero {
        padding: 5rem 1rem 2rem;
    }
    .collection-page-hero h1 {
        font-size: 2rem;
    }
    .collection-gender-tabs {
        margin: 0 1rem 1rem;
        overflow-x: auto;
    }
    
    /* Buttons easier to tap */
    .btn, .btn-dark, .btn-outline {
        min-height: 44px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Size selectors */
    .size-selector {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .size-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    /* Color swatches */
    .color-swatches {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .color-circle {
        width: 28px;
        height: 28px;
    }
    
    /* Quick buy button in grid */
    .hover-overlay {
        display: none; /* Hide hover overlay on touch */
    }
    
    /* Instead show quick actions below image */
    .product-card .product-info {
        padding: 0.5rem 0;
    }
    
    /* Hide marquee on mobile */
    .marquee {
        display: none;
    }
    
    /* Touch-friendly inputs */
    input, textarea, select {
        font-size: 16px !important; /* Prevents iOS zoom */
    }
}

/* =========================================
   CURRENCY MODAL STYLES
   ========================================= */
.currency-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.currency-modal-content {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.currency-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}
.currency-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.currency-modal-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.currency-search-wrap {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}
.currency-search-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
}
.currency-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}
.currency-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.currency-item:hover {
    background: rgba(0,0,0,0.02);
}
.currency-item strong {
    font-family: var(--font-body);
}
.currency-item span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
