:root {
    --black: #000000;
    --matte-black: #121212;
    --gold: #D4AF37;
    --text-gray: #a0a0a0;
    --white: #ffffff;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 1. Global Background Setup */
body {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    
    /* This applies the image to the entire page */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), 
                url('/image/landingpagebg.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keep this 'fixed' for the premium feel */
    background-repeat: no-repeat;
}

/* 2. Remove background from non-hero sections */
.drop-section {
    background: transparent !important; /* This ensures the body background shows through */
    min-height: 100vh;
} /* .hero now has its own background image defined later */

/* 3. Optional: Add a subtle glassmorphism to content boxes */
.drop-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    backdrop-filter: blur(10px); /* Blurs the background image behind the text for readability */
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Navbar */
/* --- Master Layout Fix --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

/* --- Left Side Logic --- */
.nav-icon {
    height: 40px;
    margin-right: 30px; /* Space between icon and text links */
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

.direct-link {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
    opacity: 0.7;
}

.direct-link:hover {
    opacity: 1;
    color: #D4AF37; /* Glow effect on hover */
}

/* --- Center Brand --- */
.nav-center {
    justify-content: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 10px; /* High-end fashion spacing */
    color: #D4AF37;
    white-space: nowrap;
}

/* --- Right Side Trigger --- */
.nav-right {
    justify-content: flex-end;
}

.menu-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    margin-right: 12px;
    transition: color 0.22s ease;
}

.hamburger-container {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background-color: #fff;
    display: block;
    margin: 0;
    transform-origin: center;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.hamburger-container:hover .menu-text,
.hamburger-container:hover .hamburger span {
    color: var(--gold);
    background-color: var(--gold);
}

.hamburger-container.active .menu-text {
    color: var(--gold);
}

.hamburger-container.active .hamburger span {
    background-color: var(--gold);
}

.hamburger-container.active .hamburger span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.hamburger-container.active .hamburger span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    text-decoration: none;
    color: #fff;
    padding: 14px 5%;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-link:hover {
    color: var(--gold);
}

.wishlist-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    margin-left: 6px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold);
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
}

.shop-quick-link .wishlist-count {
    margin-left: 4px;
    min-width: 14px;
    height: 14px;
    font-size: 8px;
}

/* --- Pulse Animation for Center Icon --- */
.pulse-logo {
    animation: luxuryPulse 5s infinite ease-in-out;
}

@keyframes luxuryPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.4) drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .desktop-nav { display: none; } /* Hide text links on mobile to prevent overlap */
    .brand-name { font-size: 1.1rem; letter-spacing: 5px; }
}


/* new code for hamburger */



.nav-links {
    display: flex; /* Keeps the links themselves in a single row */
    gap: 40px; /* Space between THE DROP, ETHOS, and THE VAULT */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Hover effect for premium feel */
.nav-links a:hover {
    color: #D4AF37; /* Gold glow on hover */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    color: var(--gold);
}
/* Hero Section */
/* Hero Section Update */
.hero {
    height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 60px;
    box-sizing: border-box;
    
    /* ADD THESE LINES BELOW */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), 
                url('/image/landingpagebg.png'); /* absolute path ensures correct lookup */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a premium parallax effect */
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.32));
    pointer-events: none;
    z-index: 0;
}

.hero > *:not(.hero-overlay) {
    position: relative;
    z-index: 1;
}

.hero,
.why-section,
.blueprint-section,
.drop-section,
.quote-break,
.heritage-section,
.specs-section,
.atelier-section,
.card-reveal-section,
.footer {
    width: 100%;
    max-width: 100%;
}


.hero-logo {
    width: 80px;
    height: auto;
    z-index: 10;
    
    /* --- KEY TRANSPARENCY FIX --- */
    /* 'screen' blend mode removes dark backgrounds/checkers and keeps light colors (Gold) */
    mix-blend-mode: screen; 
    
    /* Enhances the gold brilliance so it stands out against the dark city */
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.hero-logo:hover {
    /* Gentle lift and intensified glow on interaction */
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
}

/* Mobile Responsiveness: Shrink the logo slightly for smaller screens */
@media (max-width: 768px) {
    .hero-logo {
        width: 140px;
        margin-bottom: 1.5rem;
    }
}

.hero-logo:hover {
    transform: scale(1.05); /* Slight interactive lift on hover */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.08;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: clamp(0.68rem, 1.6vw, 0.9rem);
    letter-spacing: clamp(4px, 1.2vw, 10px);
    color: var(--gold);
    margin-bottom: 14px;
}

.hero-subcopy {
    max-width: 760px;
    margin: 0 auto 28px;
    color: #c6c6c6;
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-transform: uppercase;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-proof {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-proof span {
    border: 1px solid rgba(212, 175, 55, 0.28);
    padding: 8px 12px;
    color: #c8c8c8;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.35);
}

.why-section {
    padding: 90px 0 30px;
    background: rgba(0, 0, 0, 0.32);
}

.why-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 45px;
}

.why-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin: 14px 0;
}

.why-header p {
    color: var(--text-gray);
}

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

.why-item {
    border: 1px solid rgba(212, 175, 55, 0.16);
    padding: 26px;
    background: rgba(255, 255, 255, 0.02);
}

.why-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-top: 0;
}

.why-item p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Buttons */
.cta-btn, .buy-btn {
    padding: 15px 45px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    background: transparent;
    cursor: pointer;
    transition: 0.4s;
}

.cta-btn:hover, .buy-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.drop-trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.drop-trust span {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bcbcbc;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding-bottom: 4px;
}

/* Drop Section */
.drop-section {
    padding: 150px 10%;
    background: var(--matte-black);
}

.drop-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.drop-content,
.blueprint-text,
.blueprint-image {
    min-width: 0;
}

.drop-image {
    background: #1a1a1a;
    height: 700px;
    position: relative;
    border: 1px solid #222;
}

.edition-label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--gold);
    font-size: 0.8rem;
    border: 1px solid var(--gold);
    padding: 5px 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
}

.description {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
    overflow-wrap: anywhere;
}

/* Ensure the container has a defined height to show the images */
.drop-image-gallery {
    height: 700px; /* Adjust based on your design */
    width: 100%;
    position: relative;
    background: #121212; /* Fallback matte black */
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures 240 GSM texture looks sharp */
    opacity: 0;
    z-index: 0;
    transition: transform 1s ease-in-out;
    animation: eliteFade 18s infinite ease-in-out;
}

/* Keyframes: 100% / 6 images = 16.6% per image cycle */
@keyframes eliteFade {
    0% { opacity: 0; z-index: 1; }
    5% { opacity: 1; z-index: 2; }   /* Fade In */
    16.6% { opacity: 1; z-index: 2; } /* Stay Visible */
    21.6% { opacity: 0; z-index: 1; } /* Fade Out */
    100% { opacity: 0; }
}

/* Staggered Timing (3s intervals for 18s total) */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }
.slide:nth-child(6) { animation-delay: 15s; }

/* Keep the 'Limited Edition' label on top of the images */
.edition-label {
    z-index: 10;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Heritage Section - Full Height Scrollytelling */
.heritage-section {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15%;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
}

/* Specs Grid */
.specs-section {
    padding: 100px 10%;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

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

.spec-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.spec-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Card Reveal Section */
.card-reveal-section {
    padding: 150px 10%;
    display: flex;
    justify-content: center;
}

.card-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
}

.card-container img {
    width: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.landing-page,
.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page .why-section {
    padding: clamp(72px, 9vw, 108px) 0 clamp(34px, 4vw, 46px);
}

.landing-page .blueprint-section,
.landing-page .drop-section,
.landing-page .specs-section,
.landing-page .atelier-section,
.landing-page .card-reveal-section {
    padding-top: clamp(84px, 9vw, 140px);
    padding-bottom: clamp(72px, 8vw, 120px);
}

.landing-page .quote-break,
.landing-page .heritage-section,
.landing-page .specs-section,
.landing-page .atelier-section,
.landing-page .card-reveal-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.landing-page .why-grid > *,
.landing-page .blueprint-grid > *,
.landing-page .drop-grid > *,
.landing-page .specs-grid > *,
.landing-page .atelier-visuals > *,
.landing-page .card-container > * {
    min-width: 0;
}

.landing-page .card-container {
    width: min(1000px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
}

.landing-page .card-container img {
    width: min(500px, 100%);
    max-width: 100%;
    justify-self: center;
}

.landing-page .heritage-content,
.landing-page .quote-wrap {
    width: min(1000px, 100%);
    margin: 0 auto;
}

.landing-page .quote,
.landing-page .big-quote,
.landing-page .sub-quote {
    overflow-wrap: anywhere;
}

.landing-page .sub-quote {
    max-width: 760px;
    margin: 0 auto;
    color: #d2d2d2;
    font-size: clamp(0.78rem, 1.8vw, 0.95rem);
    letter-spacing: 1.5px;
    line-height: 1.65;
    text-transform: uppercase;
}

.landing-page .card-text h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.15;
}

.landing-page .card-text p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .landing-page .specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .landing-page .card-reveal-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .landing-page .card-container {
        gap: 30px;
    }

    .landing-page .quote {
        font-size: clamp(2rem, 5.5vw, 3rem);
    }

    .landing-page .big-quote {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 900px) {
    .landing-page .blueprint-section,
    .landing-page .drop-section,
    .landing-page .specs-section,
    .landing-page .card-reveal-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .landing-page .card-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-page .card-text {
        text-align: center;
    }

    .landing-page .specs-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-page .heritage-section {
        height: auto;
        min-height: 58vh;
        padding: 80px 5%;
    }

    .landing-page .sub-quote {
        max-width: 100%;
        margin: 0 auto;
        letter-spacing: 1.3px;
    }
}

@media (max-width: 640px) {
    .landing-page .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .landing-page .atelier-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .landing-page .quote-author {
        letter-spacing: 3px;
    }

    .landing-page .gold-label,
    .landing-page .spec-item h3 {
        letter-spacing: 2px;
    }

    .landing-page .quote-break {
        min-height: 38vh;
        height: auto;
        padding: 46px 14px;
    }

    .landing-page .card-text h2 {
        font-size: clamp(1.5rem, 7.8vw, 2rem);
    }
}

@media (max-width: 360px) {
    .landing-page .navbar {
        padding: 0 8px;
    }

    .landing-page .brand-name {
        font-size: 0.78rem;
        letter-spacing: 1.4px;
    }

    .landing-page .hero {
        padding: 90px 10px 44px;
    }

    .landing-page .hero-btns,
    .landing-page .hero-proof {
        width: 100%;
    }

    .landing-page .cta-btn,
    .landing-page .buy-btn {
        padding: 12px 10px;
        letter-spacing: 1.5px;
        font-size: 0.68rem;
    }

    .landing-page .hero-proof span {
        font-size: 0.55rem;
        letter-spacing: 1.1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-page .slide {
        animation: none;
    }

    .landing-page .slide:first-child {
        opacity: 1;
    }
}


/* Vault page wrapper (full screen) */
.vault-page-wrapper {
    background: #050505;
    overflow: hidden;
}

/* Auth Overlay Background */
.auth-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 100%;
    min-height: 100vh;
    height: 100dvh;
    --vault-overlay-gap: clamp(8px, 2vh, 20px);
    padding: var(--vault-overlay-gap) 16px;
    background:
        radial-gradient(circle at 18% 16%, rgba(120, 0, 255, 0.12) 0%, transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(0, 80, 255, 0.1) 0%, transparent 32%),
        radial-gradient(circle at 50% 82%, rgba(184, 134, 11, 0.08) 0%, transparent 38%),
        rgba(4, 4, 8, 0.9);
    backdrop-filter: blur(18px) saturate(135%);
    z-index: 2000;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    box-sizing: border-box;
}

.auth-overlay.active {
    right: 0;
}

.auth-card {
    width: min(400px, 100%);
    max-width: 100%;
    max-height: calc(100dvh - (var(--vault-overlay-gap) * 2));
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    text-align: center;
    position: relative;
    margin: auto 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(6, 10, 20, 0.26) 38%, rgba(4, 4, 8, 0.88) 100%),
        rgba(4, 4, 8, 0.84);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    box-sizing: border-box;
}

.auth-card h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 5px;
    margin-bottom: 30px;
    color: var(--gold);
}

.auth-card--signup {
    padding: 14px 18px 12px;
    overflow: visible;
}

.auth-card--signup h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 3.6vw, 1.95rem);
    letter-spacing: 3px;
}

.auth-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.auth-card select {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-bottom: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, transparent calc(100% - 34px), rgba(212, 175, 55, 0.18) calc(100% - 34px));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: center, right 16px center;
    background-size: auto, 12px 12px;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.vault-select {
    position: relative;
    margin-bottom: 16px;
}

.vault-date {
    position: relative;
    margin-bottom: 16px;
}

.auth-card--signup input {
    padding: 10px 14px;
    margin-bottom: 8px;
}

.auth-card--signup select,
.auth-card--signup .vault-date-trigger,
.auth-card--signup .vault-select-trigger {
    padding: 10px 14px;
    margin-bottom: 0;
}

.auth-card--signup .vault-date,
.auth-card--signup .vault-select {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
}

.auth-card--signup .vault-date-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    right: auto;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100dvh - 24px);
    padding: 14px;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    z-index: 2200;
}

.auth-card--signup .vault-date-header {
    grid-template-columns: 34px 34px 1fr 34px 34px;
    gap: 6px;
    margin-bottom: 10px;
}

.auth-card--signup .vault-date-nav {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1rem;
}

.auth-card--signup .vault-date-weekdays {
    gap: 4px;
}

.auth-card--signup .vault-date-weekdays span {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
}

.auth-card--signup .vault-date-grid {
    gap: 4px;
}

.auth-card--signup .vault-date-day {
    min-height: 32px;
    border-radius: 10px;
    font-size: 0.78rem;
}

.auth-card--signup .vault-date-trigger,
.auth-card--signup .vault-select-trigger {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    gap: 10px;
}

.auth-card--signup #dobValue,
.auth-card--signup #genderValue {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-card--signup #dobValue {
    font-size: 0.76rem;
    letter-spacing: 0.4px;
}

.vault-date-trigger {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, transparent calc(100% - 40px), rgba(212, 175, 55, 0.2) calc(100% - 40px));
    color: rgba(255, 255, 255, 0.46);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.vault-date.has-value .vault-date-trigger {
    color: var(--white);
}

.vault-date.is-open .vault-date-trigger,
.vault-date-trigger:focus-visible {
    border-color: rgba(212, 175, 55, 0.42);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.012));
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
    transform: translateY(-1px);
    outline: none;
}

.vault-date-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1.5px solid rgba(212, 175, 55, 0.9);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.vault-date-icon::before,
.vault-date-icon::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 3px;
    height: 6px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.95);
}

.vault-date-icon::before {
    left: 4px;
}

.vault-date-icon::after {
    right: 4px;
}

.vault-date-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    z-index: 25;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
        radial-gradient(circle at top left, rgba(104, 140, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(17, 18, 30, 0.98), rgba(7, 8, 16, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(28px);
}

.vault-date-panel[hidden] {
    display: none;
}

.vault-date-header {
    display: grid;
    grid-template-columns: 40px 40px 1fr 40px 40px;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.vault-date-title-wrap {
    text-align: center;
}

.vault-date-caption {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.64rem;
    letter-spacing: 1.6px;
}

.vault-date-title {
    display: block;
    color: #f7f6f2;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.vault-date-nav {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vault-date-nav:hover,
.vault-date-nav:focus-visible {
    border-color: rgba(212, 175, 55, 0.26);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.03));
    transform: translateY(-1px);
    outline: none;
}

.vault-date-nav-year {
    font-size: 1rem;
    letter-spacing: -1px;
}

.vault-date-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
}

.vault-date-weekdays span {
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.vault-date-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.vault-date-day {
    position: relative;
    aspect-ratio: 1;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.vault-date-day:hover,
.vault-date-day:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
    outline: none;
}

.vault-date-day.is-outside-month {
    color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.018);
}

.vault-date-day.is-today::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    pointer-events: none;
}

.vault-date-day.is-selected {
    border-color: rgba(212, 175, 55, 0.42);
    background:
        radial-gradient(circle at top, rgba(255, 246, 214, 0.24), transparent 55%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.34), rgba(130, 92, 18, 0.54));
    color: #fff9ea;
    box-shadow: 0 12px 22px rgba(111, 78, 14, 0.28);
}

.vault-date-day.is-disabled {
    opacity: 0.32;
    cursor: default;
    pointer-events: none;
}

.vault-select-trigger {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, transparent calc(100% - 40px), rgba(212, 175, 55, 0.2) calc(100% - 40px));
    color: rgba(255, 255, 255, 0.46);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.vault-select.has-value .vault-select-trigger {
    color: var(--white);
}

.vault-select.is-open {
    z-index: 40;
}

.vault-select.is-open .vault-select-trigger,
.vault-select-trigger:focus-visible {
    border-color: rgba(212, 175, 55, 0.42);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.012));
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
    transform: translateY(-1px);
    outline: none;
}

.vault-select-icon {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-right: 2px solid rgba(212, 175, 55, 0.92);
    border-bottom: 2px solid rgba(212, 175, 55, 0.92);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.22s ease;
}

.vault-select.is-open .vault-select-icon {
    transform: rotate(-135deg) translateY(-1px);
}

.vault-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 20;
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: linear-gradient(180deg, rgba(14, 10, 26, 0.98), rgba(8, 7, 17, 0.98));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(24px);
}

.auth-card--signup #genderMenu {
    top: calc(100% + 8px);
    padding: 6px;
    gap: 5px;
    border-radius: 16px;
}

.vault-select-menu[hidden] {
    display: none;
}

.vault-select-option {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.auth-card--signup #genderMenu .vault-select-option {
    padding: 8px 11px;
    min-height: 30px;
    border-radius: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.75px;
}

.vault-select-option:hover,
.vault-select-option:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
    outline: none;
}

.vault-select-option.active {
    border-color: rgba(212, 175, 55, 0.26);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.gender-option-male {
    background: linear-gradient(135deg, rgba(35, 53, 110, 0.88), rgba(15, 22, 48, 0.96));
    color: #eef3ff;
}

.gender-option-female {
    background: linear-gradient(135deg, rgba(103, 34, 83, 0.88), rgba(44, 14, 41, 0.96));
    color: #fff0f8;
}

.gender-option-others {
    background: linear-gradient(135deg, rgba(84, 62, 25, 0.88), rgba(39, 28, 12, 0.96));
    color: #fff6de;
}

.gender-option-male.active {
    border-color: rgba(138, 170, 255, 0.34);
}

.gender-option-female.active {
    border-color: rgba(255, 167, 223, 0.34);
}

.gender-option-others.active {
    border-color: rgba(255, 219, 128, 0.34);
}

.vault-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.auth-card input::placeholder {
    color: rgba(255, 255, 255, 0.46);
    letter-spacing: 0.8px;
}

.auth-card input:focus,
.auth-card select:focus {
    border-color: rgba(212, 175, 55, 0.42);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.012));
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
    transform: translateY(-1px);
}

#registrationFields {
    margin-top: 8px;
}

.auth-card--signup #registrationFields {
    margin-top: 2px;
    margin-bottom: 8px;
    display: flex !important;
    flex-direction: column;
    overflow: visible;
}

.auth-card--signup #authForm {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.auth-card--signup .input-row {
    gap: 8px;
}

.auth-card--signup .signup-name-row,
.auth-card--signup .signup-meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.auth-card--signup #phone {
    margin-bottom: 0;
}

.auth-card--signup .signup-email-group,
.auth-card--signup .signup-password-group {
    margin-bottom: 0;
}

.auth-card--signup .signup-email-group {
    order: 3;
}

.auth-card--signup .signup-password-group {
    order: 4;
}

.auth-card--signup .signup-meta-row {
    order: 5;
}

.auth-card--signup .auth-inline-row {
    order: 6;
}

.auth-card--signup .vault-submit {
    order: 7;
}

.input-half {
    min-width: 0;
}

#dob,
#gender,
#phone,
#firstName,
#lastName {
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.vault-native-date {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

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

    .vault-date-panel {
        padding: 14px;
    }

    .vault-date-day {
        min-height: 34px;
        border-radius: 12px;
    }
}

.auth-inline-row {
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
    margin-bottom: 18px;
}

.auth-inline-link,
.vault-secondary-action {
    background: transparent;
    border: none;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    font-size: 0.72rem;
}

.auth-inline-link:hover,
.vault-secondary-action:hover {
    opacity: 0.82;
}

.auth-switch {
    margin: 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
}

#switchPrefix {
    color: rgba(255, 255, 255, 0.82);
}

#switchLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    color: #f3d97a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

#switchLink:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 175, 55, 0.42);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.08));
    color: #fff0b8;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-helper-copy {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.6;
}

.vault-alt-form {
    margin-top: 6px;
}

.otp-input-group {
    margin-top: 8px;
}

.otp-input-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.signup-otp-digit {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 14px 0 !important;
}

.signup-otp-digit:focus {
    border-color: rgba(212, 175, 55, 0.9) !important;
}

.otp-resend-hint {
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.8px;
}

.vault-secondary-action {
    width: 100%;
    margin-top: 14px;
}

.vault-secondary-action:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.vault-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 236, 184, 0.34);
    background:
        linear-gradient(135deg, rgba(255, 248, 227, 0.34), rgba(255, 255, 255, 0.08) 28%, transparent 30%),
        linear-gradient(180deg, rgba(255, 236, 184, 0.94) 0%, rgba(231, 190, 67, 0.94) 42%, rgba(184, 126, 24, 0.96) 100%);
    color: #1c1304;
    letter-spacing: 3px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow:
        0 18px 34px rgba(96, 63, 7, 0.28),
        0 8px 18px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -10px 24px rgba(121, 74, 6, 0.18);
    backdrop-filter: blur(18px) saturate(135%);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, opacity 0.2s ease;
}

.vault-submit::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.vault-submit::after {
    content: '';
    position: absolute;
    inset: auto -12% -36% 42%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 248, 224, 0.28) 0%, rgba(255, 248, 224, 0) 68%);
    pointer-events: none;
    transform: rotate(-8deg);
}

.vault-submit:hover,
.vault-submit:focus-visible {
    transform: translateY(-1px);
    filter: saturate(1.06) brightness(1.02);
    box-shadow:
        0 22px 42px rgba(103, 68, 7, 0.34),
        0 10px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -12px 26px rgba(121, 74, 6, 0.22);
    outline: none;
}

.vault-submit:disabled {
    opacity: 0.82;
}

.vault-submit.is-loading {
    cursor: wait;
}

.vault-submit.is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.26);
    border-top-color: var(--black);
    animation: vault-submit-spin 0.7s linear infinite;
}

@keyframes vault-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
    border: none;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.close-vault {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gold);
}

/* Vault World Background */
.vault-world-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 18% 18%, rgba(138, 72, 184, 0.24) 0%, transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(57, 101, 196, 0.22) 0%, transparent 24%),
        radial-gradient(circle at 50% 78%, rgba(212, 175, 55, 0.14) 0%, transparent 32%),
        linear-gradient(135deg, rgba(11, 8, 18, 0.98) 0%, rgba(4, 4, 8, 0.96) 48%, rgba(7, 17, 32, 0.98) 100%);
    background-size: cover;
    background-position: center;
    filter: saturate(118%) brightness(0.82);
    z-index: -1;
    transition: transform 10s ease-in-out;
}

.vault-world-bg::before,
.vault-world-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vault-world-bg::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.12;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.18));
}

.vault-world-bg::after {
    background:
        radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22));
}

.auth-overlay.active .vault-world-bg {
    transform: scale(1.06); /* Subtle zoom when opened */
}

/* Glassmorphism Card (merge with main definition)
   keep same width constraints as earlier */
.auth-card {
    width: min(400px, 100%);
    max-width: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(6, 10, 20, 0.26) 36%, rgba(3, 3, 6, 0.92) 100%),
        rgba(4, 4, 8, 0.78);
    backdrop-filter: blur(24px) saturate(135%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Product Cards */
.artifact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.artifact-card:hover {
    border-color: #D4AF37; /* VURKISHÉ Gold */
    transform: translateY(-10px);
}

.artifact-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.artifact-image-container img {
    width: 100%;
    filter: grayscale(0.2);
    transition: 0.5s ease;
}

.artifact-card:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.mall-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 12px;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 5px;
}

.mall-subtitle {
    font-size: 10px;
    letter-spacing: 4px;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

/* Gold Glowing Buttons */
.gold-fill {
    background: #D4AF37 !important;
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.gold-fill:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}


.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Blueprint Section */
.blueprint-section { padding: 150px 0; background: rgba(0,0,0,0.4); }
.blueprint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gold-label { color: var(--gold); letter-spacing: 5px; font-size: 10px; font-weight: 700; }
.blueprint-text h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin: 20px 0; }
.spec-list { list-style: none; padding: 0; margin-top: 40px; }
.spec-list li { border-bottom: 1px solid rgba(212,175,55,0.2); padding: 15px 0; font-size: 0.9rem; color: var(--text-gray); }
.spec-list span { color: var(--gold); font-weight: 700; margin-right: 15px; }
.blueprint-img { width: 100%; border: 1px solid rgba(212,175,55,0.3); padding: 10px; }

/* Quote Break */
.quote-break {
    height: 60vh; display: flex; align-items: center; justify-content: center;
    background: fixed; text-align: center;
}
.big-quote { font-family: 'Playfair Display', serif; font-size: 4rem; font-style: italic; color: var(--gold); }
.quote-author { letter-spacing: 8px; font-size: 10px; opacity: 0.6; }

/* Atelier Section */
.atelier-section { padding: 100px 5%; background: var(--matte-black); }
.atelier-header { text-align: center; margin-bottom: 80px; }
.atelier-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); }
.atelier-visuals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v-card img { width: 100%; height: 400px; object-fit: cover; filter: grayscale(1); transition: 0.5s; border: 1px solid #222; }
.v-card:hover img { filter: grayscale(0); border-color: var(--gold); }
.v-card h3 { text-align: center; margin-top: 20px; font-family: 'Playfair Display', serif; letter-spacing: 3px; }

/* Mobile Fixes */
@media (max-width: 900px) {
    .blueprint-grid, .atelier-visuals { grid-template-columns: 1fr; }
    .big-quote { font-size: 2rem; }
}

@media (max-width: 1200px) {
    .drop-section,
    .specs-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .drop-grid {
        gap: 40px;
    }

    .section-title {
        font-size: clamp(2.2rem, 4.8vw, 3rem);
    }
}

@media (max-width: 980px) {
    .drop-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .drop-image {
        height: min(68vw, 560px);
    }

    .drop-content {
        padding: 26px 20px;
    }

    .drop-trust {
        gap: 8px;
    }

    .drop-trust span {
        letter-spacing: 1.2px;
    }
}

/* Premium Footer Social Link */
.footer .social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5); /* Muted initial state */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-item i {
    font-size: 14px; /* Slightly smaller icon for elegance */
}

.social-item span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px; /* Increased spacing for luxury feel */
    text-transform: uppercase;
}

.social-item:hover {
    color: #D4AF37; /* Glow to VURKISHÉ Gold */
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Optional: Subtle underline animation */
.social-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.4s ease;
}

.social-item:hover::after {
    width: 100%;
}

.footer-trust {
    margin-top: 14px;
    color: #9c9c9c;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-trigger-btn {
    margin-top: 16px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold);
    padding: 10px 18px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-trigger-btn:hover {
    background: rgba(212, 175, 55, 0.12);
}

.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2600;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-card {
    width: min(560px, 96vw);
    background: #060606;
    border: 1px solid rgba(212, 175, 55, 0.24);
    padding: 28px 26px;
    position: relative;
}

.contact-modal-card h2 {
    margin: 0 0 18px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    letter-spacing: 2px;
}

.contact-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    color: #b9b9b9;
    font-size: 1.6rem;
    cursor: pointer;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: #cfcfcf;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #101010;
    border: 1px solid #2f2f2f;
    color: #fff;
    padding: 11px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit-btn {
    margin-top: 6px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #000;
    padding: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-status {
    min-height: 18px;
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: #c5c5c5;
}

.mobile-sticky-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    padding: 12px 22px;
    font-size: 0.72rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.9);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .landing-page .why-grid {
        grid-template-columns: 1fr;
    }

    .landing-page,
    .landing-page .hero {
        background-attachment: scroll;
    }

    .landing-page .navbar {
        height: 78px;
        padding: 0 14px;
    }

    .landing-page .nav-icon {
        height: 32px;
        margin-right: 0;
    }

    .landing-page .brand-name {
        font-size: 0.98rem;
        letter-spacing: 3px;
    }

    .landing-page .menu-text {
        letter-spacing: 2px;
        margin-right: 10px;
    }

    .landing-page .hero {
        min-height: 100svh;
        padding: 110px 18px 56px;
    }

    .landing-page .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .landing-page .hero-subcopy {
        max-width: 92vw;
        font-size: 0.78rem;
        letter-spacing: 1px;
        line-height: 1.55;
        padding: 0;
    }

    .landing-page .hero-proof span {
        padding: 7px 10px;
        letter-spacing: 1.4px;
    }
}

@media (max-width: 768px) {
    .landing-page .hero-btns {
        flex-direction: column;
        width: min(320px, 90vw);
    }

    .landing-page .cta-btn,
    .landing-page .buy-btn {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        letter-spacing: 2px;
    }

    .landing-page .hero-proof span {
        font-size: 0.58rem;
    }

    .landing-page .drop-section {
        padding-top: 108px;
        padding-bottom: 86px;
    }

    .landing-page .drop-image {
        height: min(76vw, 430px);
    }

    .landing-page .section-title {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
        line-height: 1.12;
    }

    .landing-page .footer {
        padding-bottom: calc(128px + env(safe-area-inset-bottom));
    }

    .landing-page .footer-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .landing-page .copyright,
    .landing-page .footer-trust {
        overflow-wrap: anywhere;
        word-break: normal;
        line-height: 1.6;
    }

    .landing-page .footer-trust {
        letter-spacing: 1.2px;
    }

    .landing-page .mobile-sticky-cta {
        display: inline-block;
    }
}

@media (min-width: 769px) {
    .landing-page .mobile-sticky-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .landing-page .hamburger span {
        width: 16px;
    }

    .landing-page .navbar {
        height: 72px;
        padding: 0 10px;
    }

    .landing-page .nav-left,
    .landing-page .nav-right {
        min-width: 72px;
    }

    .landing-page .brand-name {
        font-size: 0.86rem;
        letter-spacing: 2px;
    }

    .landing-page .menu-text {
        letter-spacing: 2.2px;
        margin-right: 8px;
    }

    .landing-page .hero {
        padding: 96px 14px 48px;
    }

    .landing-page .hero h1 {
        font-size: clamp(1.9rem, 11vw, 2.6rem);
    }

    .landing-page .tagline {
        margin-bottom: 12px;
    }

    .landing-page .hero-proof {
        width: min(320px, 92vw);
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .hero-proof span {
        text-align: center;
    }

    .landing-page .drop-content {
        padding: 20px 14px;
    }

    .landing-page .description {
        margin-bottom: 26px;
    }

    .landing-page .mobile-sticky-cta {
        width: calc(100% - 24px);
        left: 12px;
        transform: none;
        text-align: center;
        letter-spacing: 1.6px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Inter:wght@400;700&display=swap');

#mallSection {
    width: 100%;
    min-height: 100vh;
    display: none;
    background-color: transparent; /* Allows your background art to show */
    padding: 0;
    margin: 0;
}

/* HEADER FIX: Ensures visibility and constant position */
.mall-header {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 1000; /* Higher than background elements */
    position: sticky; 
    top : 0 ;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.mall-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem); /* Responsive giant text */
    color: #D4AF37; /* Gold from the logo */
    letter-spacing: 12px;
    margin: 0;
    text-transform: uppercase;
}

.scarcity-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 10px 25px;
    display: inline-block;
    margin-top: 15px;
    letter-spacing: 5px;
}

/* GRID FIX: Spreads across the whole page */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    padding: 28px 20px 36px;
    max-width: 100%; /* Spreads whole page */
    box-sizing: border-box;
}

.artifact-card {
    background: rgba(0, 0, 0, 0.85); /* Semi-transparent black to pop text */
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 410px;
}

.artifact-card:hover {
    border-color: #D4AF37;
    transform: translateY(-3px);
}

.main-artifact {
    width: 100%;
    aspect-ratio: 0.88 / 1;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}

.product-intel {
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

.artifact-name {
    font-size: 0.88rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
    min-height: 2.35em;
}

.artifact-price {
    color: #D4AF37;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    gap: 7px;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
}

.product-price {
    color: #D4AF37;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    gap: 6px;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(96, 196, 126, 0.16);
    border: 1px solid rgba(96, 196, 126, 0.28);
    color: #9fffad;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.price-cut {
    display: inline-block;
    color: #9b9b9b;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    font-size: 0.66rem;
    font-weight: 500;
    opacity: 0.92;
}

.price-final {
    color: #f3e9c3;
    font-size: 0.92rem;
    font-weight: 700;
}

/* UI Controls */
.size-selector {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
    align-items: center;
    flex-wrap: wrap;
}

/* Premium circular size buttons (used on artifact cards) */
.size-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.45), 0 8px 20px rgba(0,0,0,0.6);
}

.size-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.7), 0 0 18px rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.25);
}

.size-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.07);
}

/* Active / selected state */
.size-btn.active {
    background: linear-gradient(180deg, #F4D79A, #D4AF37);
    color: var(--black);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.35), inset 0 -3px 0 rgba(0,0,0,0.15);
    transform: translateY(-2px) scale(1.02);
}

/* Plain size spans (used in vault listing) styled as elegant chips */
.size {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
    border: 1px solid rgba(255,255,255,0.03);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-right: 8px;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.size:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,0.18);
}

/* Active state for plain size chips */
.size.active {
    background: linear-gradient(180deg, #F4D79A, #D4AF37);
    color: var(--black);
    border-color: #D4AF37;
    box-shadow: 0 8px 22px rgba(212,175,55,0.25);
    transform: translateY(-2px);
}

/* Small screens: slightly smaller chips */
@media (max-width: 480px) {
    .size-btn { width: 36px; height: 36px; font-size: 0.85rem; }
    .size { padding: 5px 10px; font-size: 0.8rem; }
}

.mall-btn.solid {
    width: 100%;
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 11px 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1.3px;
    font-size: 0.68rem;
}

@media (max-width: 1400px) { .product-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: 1fr; } .mall-title { font-size: 2rem; letter-spacing: 10px; } }


/* The Container: Uses Grid to keep items side-by-side */
.artifact-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(286px, 1fr)); /* Responsive columns */
    gap: 28px;
    padding: 50px 5%;
    background: linear-gradient(180deg, rgba(7, 7, 12, 0.28), rgba(7, 7, 12, 0.5));
}

/* The Card: Ensures each product has its own space */
.product-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(5, 8, 18, 0.34) 42%, rgba(5, 5, 8, 0.82) 100%),
        rgba(8, 8, 12, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* Keeps the tag inside the card */
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.product-card::before,
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-card::before {
    inset: -18% auto auto -14%;
    width: 58%;
    height: 52%;
    background: radial-gradient(circle, rgba(240, 230, 210, 0.16) 0%, rgba(212, 175, 55, 0.08) 34%, transparent 72%);
    filter: blur(22px);
    opacity: 0.85;
}

.product-card::after {
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.04) 72%, rgba(212, 175, 55, 0.06));
    opacity: 0.8;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), 0 0 26px rgba(212, 175, 55, 0.08);
}

.product-image-wrapper {
    width: 100%;
    height: 348px; /* Reduced product block size */
    overflow: hidden;
    position: relative;
    margin: 12px 12px 0;
    width: calc(100% - 24px);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
    transform: scale(0.965);
    transition: transform 0.45s ease;
}

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

.product-info {
    padding: 14px 16px 16px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.product-name {
    margin: 0 0 8px;
    font-size: 0.94rem;
}

.product-price {
    margin-bottom: 14px;
}

.size-chips {
    gap: 7px;
    margin-bottom: 14px;
}

.size {
    padding: 5px 8px;
    font-size: 0.68rem;
}

.vault-btn {
    padding: 11px 12px;
    font-size: 0.68rem;
}

.product-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: #f0e1ad;
    font-size: 0.6rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-name {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.vault-btn {
    width: 100%;
    padding: 13px 14px;
    letter-spacing: 2px;
    font-size: 0.72rem;
}

/* Navigation Bar */
.shop-body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(120, 0, 255, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(0, 80, 255, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(184, 134, 11, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #08070d 0%, #050505 46%, #071120 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.shop-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    padding: 30px 5%;
    background: rgba(10, 12, 25, 0.72);
    backdrop-filter: blur(18px) saturate(155%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    position: sticky;
    top: 0;
    z-index: 2100;
}

.shop-nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    justify-self: end;
    justify-content: flex-end;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.shop-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(20, 20, 24, 0.94), rgba(10, 10, 12, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 245, 214, 0.06), 0 12px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.shop-search-wrap::before {
    content: '⌕';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-52%);
    color: rgba(225, 198, 153, 0.76);
    font-size: 0.88rem;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.shop-search {
    width: 194px;
    max-width: 34vw;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(248, 242, 227, 0.96);
    padding: 10px 12px 10px 34px;
    font-size: 0.68rem;
    letter-spacing: 1.55px;
    text-transform: uppercase;
    outline: none;
    padding-right: 28px;
}

.shop-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(225, 198, 153, 0.68);
    font-size: 0.92rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-search-clear.visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-search-clear:hover {
    color: #fff4cf;
    background: rgba(225, 198, 153, 0.14);
    transform: translateY(-50%) scale(1.05);
}

.shop-search::placeholder {
    color: rgba(193, 181, 154, 0.56);
}

.shop-search:focus {
    border-color: transparent;
}

.shop-search-wrap:focus-within {
    border-color: rgba(225, 198, 153, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 245, 214, 0.08), 0 0 0 3px rgba(225, 198, 153, 0.08), 0 14px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.shop-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #2b2b2b;
    background: #111;
    color: #d4af37;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-account-link.is-authenticated {
    border-color: rgba(212, 175, 55, 0.34);
    background: rgba(17, 17, 17, 0.92);
}

.shop-account-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-account-link:hover {
    color: #f0e1ad;
    border-color: #4a4a4a;
    transform: translateY(-1px);
}

.shop-account-link .account-initials-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.08));
    color: #f4ead3;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.shop-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid #2b2b2b;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.shop-cart-link:hover {
    color: #d0d0d0;
    border-color: #4a4a4a;
}

.shop-cart-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    filter: contrast(1.08) saturate(1.08);
}

.shop-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    border-radius: 999px;
    background: #D4AF37;
    color: #000;
    border: 1px solid #000;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vault-toast {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -16px);
    width: min(92vw, 560px);
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    color: #f3f3f3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 4500;
}

.vault-toast.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.vault-toast.warning {
    border-color: rgba(255, 182, 90, 0.62);
}

.vault-toast-mark {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.65);
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

.vault-toast.warning .vault-toast-mark {
    border-color: rgba(255, 182, 90, 0.7);
    color: #ffb65a;
}

.vault-toast-copy {
    font-size: 0.78rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    line-height: 1.5;
}

.vault-toast-close {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #e8e8e8;
    padding: 7px 11px;
    font-size: 0.62rem;
    letter-spacing: 1.4px;
    cursor: pointer;
}

.vault-toast-close:hover {
    border-color: rgba(212, 175, 55, 0.65);
    color: #d4af37;
}

.shop-no-results {
    display: none;
    text-align: center;
    color: #9a9a9a;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 5% 0;
}

.shop-no-results.visible {
    display: block;
}

.shop-controls {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 14px;
    padding: 14px 5% 0;
}

.shop-filter-trigger {
    min-width: 160px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid #2b2b2b;
    background: #111;
    color: #fff;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
}

.shop-filter-trigger:hover {
    border-color: #4a4a4a;
}

.shop-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 2690;
}

.shop-filter-backdrop[hidden] {
    display: none;
}

.shop-filter-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.18);
    z-index: 2700;
    display: flex;
    flex-direction: column;
}

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

.shop-filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-filter-kicker {
    color: #b89a3a;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.shop-filter-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
}

.shop-filter-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #f1f1f1;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.shop-filter-body {
    display: grid;
    gap: 14px;
    padding: 18px;
    overflow-y: auto;
}

.shop-control-item-drawer {
    gap: 8px;
}

.shop-search-wrap-drawer .shop-search {
    width: 100%;
    max-width: none;
}

.shop-control-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-control-item-inline {
    justify-content: flex-end;
}

.shop-control-label {
    color: #8a8a8a;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-control-select {
    background: #111;
    border: 1px solid #2b2b2b;
    color: #fff;
    min-height: 38px;
    padding: 9px 12px;
    box-sizing: border-box;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    min-width: 160px;
    outline: none;
}

.shop-control-select:focus {
    border-color: #4a4a4a;
}

.shop-quick-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-quick-link {
    text-decoration: none;
    color: #bdbdbd;
    border: 1px solid #2b2b2b;
    padding: 9px 10px;
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.shop-quick-link:hover {
    color: #fff;
    border-color: #4a4a4a;
}

.artifact-card,
.product-card {
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    color: #ddd;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
}

.wishlist-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.wishlist-btn.active {
    border-color: #E1C699;
    color: #E1C699;
    background: rgba(225, 198, 153, 0.18);
}

.shop-control-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8c8c8;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    min-height: 38px;
}

.shop-control-checkbox {
    width: 14px;
    height: 14px;
    accent-color: #d4af37;
    cursor: pointer;
}

.shop-apply-filters {
    background: #c9aa5c;
    border: 1px solid #c9aa5c;
    color: #0a0a0a;
    padding: 9px 12px;
    font-size: 0.66rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 38px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

.shop-apply-filters:hover {
    background: #d4b96a;
    border-color: #d4b96a;
}

.shop-clear-filters {
    background: transparent;
    border: 1px solid #2f2f2f;
    color: #c8c8c8;
    padding: 9px 12px;
    font-size: 0.66rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 38px;
}

.shop-clear-filters:hover {
    border-color: #4a4a4a;
    color: #fff;
}

/* The Back Button */
.back-btn {
    text-decoration: none;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    justify-self: start;
    position: relative;
    z-index: 2;
}

.back-btn:hover {
    color: #fff;
    transform: translateX(-5px); /* Subtle slide effect */
}

.back-btn .arrow {
    font-size: 1.2rem;
}

/* Center Logo in Shop */
.shop-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.36rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    width: max-content;
    max-width: calc(100% - 190px);
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 4;
}

.product-section .section-title {
    text-align: center;
    margin: 0 auto 25px;
}

.vault-hero {
    margin: 10px 5% 16px;
    min-height: 98px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(8, 11, 20, 0.38));
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.vault-hero::before,
.vault-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
    transform: translateY(-50%);
}

.vault-hero::before {
    left: 16px;
}

.vault-hero::after {
    right: 16px;
}

.vault-kicker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #b89a3a;
    font-size: 0.56rem;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    margin: 0;
    width: calc(100% - 40px);
}

.vault-title {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    font-size: clamp(1.55rem, 3.2vw, 2.45rem);
    letter-spacing: 1.1px;
    line-height: 1.05;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(105deg, #f7f1dd 20%, #d4af37 50%, #ffffff 78%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.14);
    animation: vaultTitleShimmer 9s linear infinite;
}

.vault-subtitle {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    margin: 0;
    width: min(560px, calc(100% - 40px));
    color: #aeaeae;
    font-size: 0.68rem;
    letter-spacing: 1.1px;
    line-height: 1.45;
    text-transform: uppercase;
}

@keyframes vaultTitleShimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .vault-title {
        animation: none;
        background-position: 50% 0;
    }
}

@media (max-width: 900px) {
    .shop-nav {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 18px 16px 14px;
    }

    .back-btn {
        gap: 6px;
        font-size: 0.64rem;
        letter-spacing: 1.2px;
    }

    .back-btn .text {
        display: none;
    }

    .shop-nav-actions {
        min-width: 0;
        width: 136px;
    }

    .shop-search-wrap {
        width: 136px;
        max-width: 136px;
    }

    .shop-search {
        width: 136px !important;
        max-width: 136px !important;
        min-width: 136px;
        padding: 8px 9px;
        padding-right: 26px;
    }

    .shop-logo {
        font-size: 1.02rem;
        letter-spacing: 3px;
        max-width: calc(100% - 120px);
        z-index: 3;
    }
}

@media (max-width: 640px) {
    .shop-controls {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .shop-control-select {
        min-width: 132px;
        font-size: 0.62rem;
    }

    .shop-control-check {
        min-height: auto;
    }

    .shop-apply-filters,
    .shop-clear-filters {
        min-height: auto;
    }

    .shop-search {
        width: 126px;
        max-width: 32vw;
        min-width: 96px;
        font-size: 0.62rem;
        letter-spacing: 0.95px;
        padding: 7px 7px;
        padding-right: 24px;
    }

    .shop-cart-link {
        white-space: nowrap;
    }

    .vault-hero {
        margin: 8px 4% 14px;
        min-height: 88px;
        padding: 7px 12px;
    }

    .vault-hero::before,
    .vault-hero::after {
        display: none;
    }

    .vault-kicker {
        font-size: 0.52rem;
        letter-spacing: 2.2px;
        top: 8px;
    }

    .vault-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.85px;
        bottom: 11px;
        width: calc(100% - 28px);
    }
}

@media (max-width: 768px) {
    .shop-nav {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 14px 12px;
    }

    .back-btn {
        gap: 6px;
        font-size: 0.64rem;
        letter-spacing: 1.2px;
    }

    .back-btn .text {
        display: none;
    }

    .shop-logo {
        font-size: 1.02rem;
        letter-spacing: 3px;
        max-width: calc(100% - 136px);
    }

    .shop-nav-actions {
        gap: 0;
    }

    .shop-search {
        width: 146px;
        max-width: none;
    }

    .shop-controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 10px;
        padding: 12px 12px 0;
    }

    .shop-control-item,
    .shop-control-item-inline {
        min-width: 0;
    }

    .shop-control-item:first-child {
        grid-column: auto;
    }

    .shop-control-select,
    .shop-apply-filters,
    .shop-clear-filters,
    .shop-control-check,
    .shop-quick-link,
    .shop-quick-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .shop-quick-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .shop-quick-link,
    .shop-quick-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 10px 8px;
    }

    .vault-hero {
        margin: 8px 12px 12px;
        min-height: 86px;
        padding: 7px 12px;
        border-radius: 18px;
    }

    .vault-title {
        font-size: clamp(1.15rem, 5.2vw, 1.5rem);
        letter-spacing: 0.9px;
        top: 40%;
        width: calc(100% - 28px);
    }

    .artifact-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 12px 24px;
        background: transparent;
    }

    .product-card {
        border-radius: 16px;
        border-color: rgba(212, 175, 55, 0.16);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.14)),
            rgba(6, 6, 6, 0.94);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    }

    .product-image-wrapper {
        height: auto;
        aspect-ratio: 0.72;
        width: calc(100% - 16px);
        margin: 8px 8px 0;
        border-radius: 14px;
    }

    .product-info {
        padding: 10px 10px 12px;
    }

    .product-name {
        min-height: 2.6em;
        margin-bottom: 6px;
        font-size: 0.8rem;
        line-height: 1.28;
    }

    .product-price {
        gap: 6px;
        margin-bottom: 10px;
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .discount-badge,
    .price-cut {
        font-size: 0.72rem;
    }

    .price-final {
        font-size: 0.92rem;
    }

    .size-chips {
        gap: 5px;
        margin-bottom: 10px;
    }

    .size {
        margin-right: 0;
        padding: 4px 8px;
        font-size: 0.66rem;
        letter-spacing: 0.6px;
    }

    .vault-btn {
        padding: 9px 8px;
        font-size: 0.6rem;
        letter-spacing: 1.4px;
    }

    .wishlist-btn {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .product-tag {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 6px 8px;
        font-size: 0.52rem;
        letter-spacing: 1.1px;
    }
}

@media (max-width: 420px) {
    .shop-controls {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .shop-quick-links {
        grid-template-columns: 1fr;
    }

    .artifact-grid-container {
        gap: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-info {
        padding: 11px 10px 12px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        margin-bottom: 10px;
    }

    .size-chips {
        margin-bottom: 10px;
    }

    .size {
        padding: 4px 8px;
        font-size: 0.66rem;
    }

    .vault-btn {
        padding: 10px 8px;
        font-size: 0.59rem;
        letter-spacing: 1.1px;
    }
}

.shop-quick-btn {
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.shop-body,
.utility-page-body {
    padding-bottom: 32px;
}

.shop-body {
    padding-bottom: 104px;
}

.shop-body .mobile-bottom-dock {
    display: grid;
}

.mobile-bottom-dock {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(440px, calc(100% - 36px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(225, 198, 153, 0.2);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(26, 25, 31, 0.92), rgba(10, 10, 14, 0.94)),
        rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 245, 214, 0.06);
    z-index: 2600;
}

.mobile-dock-link {
    position: relative;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: rgba(223, 216, 199, 0.66);
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.mobile-dock-link.active,
.mobile-dock-link:hover {
    background: linear-gradient(180deg, rgba(225, 198, 153, 0.14), rgba(255, 255, 255, 0.03));
    color: #f6e4bb;
    border-color: rgba(225, 198, 153, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 245, 214, 0.07);
    transform: translateY(-1px);
}

.mobile-dock-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-dock-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-dock-label {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.mobile-dock-badge {
    position: absolute;
    top: -8px;
    right: -9px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #f3dd98, #e1c699);
    color: #17120b;
    border: 1px solid rgba(255, 250, 236, 0.88);
    box-shadow: 0 4px 12px rgba(225, 198, 153, 0.28);
    font-size: 0.5rem;
    font-weight: 700;
}

.utility-page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 120px;
}

.utility-hero {
    margin: 18px 0 22px;
    padding: 28px 24px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18));
    position: relative;
    overflow: hidden;
}

.utility-kicker {
    color: #b89a3a;
    font-size: 0.64rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.utility-title {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: 1.5px;
}

.utility-copy {
    margin: 0;
    max-width: 760px;
    color: #bdbdbd;
    font-size: 0.84rem;
    letter-spacing: 1.3px;
    line-height: 1.7;
    text-transform: uppercase;
}

.account-hero {
    margin: 12px 0 16px;
    padding: 16px 18px;
    min-height: 0;
}

.settings-hero {
    margin: 12px 0 16px;
    padding: 16px 18px;
    min-height: 0;
}

.account-hero .utility-kicker {
    font-size: 0.56rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.settings-hero .utility-kicker {
    font-size: 0.56rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.account-hero .utility-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 8px;
}

.settings-hero .utility-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 8px;
}

.account-hero .utility-copy {
    max-width: 620px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

.utility-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
}

.utility-panel {
    border: 1px solid rgba(212, 175, 55, 0.16);
    background: rgba(5, 5, 5, 0.86);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.settings-list,
.account-list {
    display: grid;
    gap: 0;
}

.settings-row,
.account-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.settings-row:last-child,
.account-row:last-child {
    border-bottom: none;
}

.settings-row-collapsible {
    display: block;
    padding: 0;
}

.settings-collapse {
    width: 100%;
}

.settings-collapse-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 22px;
    margin: 0;
    text-align: left;
    padding-inline-start: 6px;
    padding-inline-end: 22px;
    cursor: pointer;
    list-style: none;
}

.settings-collapse-summary::-webkit-details-marker {
    display: none;
}

.settings-collapse-summary::marker {
    content: '';
}

.settings-collapse-icon {
    color: rgba(232, 201, 122, 0.9);
    font-size: 0.9rem;
    line-height: 1;
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}

.settings-collapse[open] .settings-collapse-icon {
    transform: rotate(0deg);
}

.settings-collapse-body {
    display: grid;
    gap: 12px;
    padding: 0 22px 20px;
}

.settings-collapse-body .settings-row-copy {
    margin-top: 0;
}

.settings-address-manager {
    border: 1px solid rgba(232, 201, 122, 0.24);
    background: rgba(10, 10, 12, 0.68);
    padding: 10px;
}

.settings-address-list {
    display: grid;
    gap: 8px;
}

.settings-address-item {
    border: 1px solid rgba(232, 201, 122, 0.22);
    background: rgba(24, 18, 34, 0.58);
    padding: 10px;
}

.settings-address-item.is-default {
    border-color: rgba(232, 201, 122, 0.45);
}

.settings-address-label {
    color: #f4f4f4;
    font-size: 0.68rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.settings-address-meta {
    color: #b8b4ad;
    font-size: 0.7rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

.settings-address-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-address-item-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.settings-address-pill {
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(232, 201, 122, 0.42);
    background: rgba(232, 201, 122, 0.12);
    color: #f0dca3;
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
}

.settings-address-pill.delete {
    border-color: rgba(220, 120, 120, 0.52);
    background: rgba(130, 38, 38, 0.24);
    color: #f2c3c3;
}

.settings-address-empty {
    color: #b8b4ad;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
}

.settings-row-title,
.account-row-title {
    color: #f4f4f4;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.settings-row-copy,
.account-row-copy {
    margin-top: 6px;
    color: #9f9f9f;
    font-size: 0.74rem;
    letter-spacing: 1px;
    line-height: 1.55;
    text-transform: uppercase;
}

.settings-select {
    min-width: 156px;
    padding: 10px 12px;
    background: #0e0e0e;
    border: 1px solid #2f2f2f;
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    outline: none;
}

.settings-select:focus {
    border-color: #4a4a4a;
}

.settings-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.09);
    color: #f2e1a7;
    font-size: 0.66rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.settings-toggle {
    position: relative;
    width: 54px;
    height: 32px;
    display: inline-flex;
}

.settings-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #1b1b1b;
    border: 1px solid #333;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.settings-toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.settings-toggle input:checked + .settings-toggle-slider {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.45);
}

.settings-toggle input:checked + .settings-toggle-slider::before {
    transform: translateX(21px);
    background: #d4af37;
}

.settings-side-panel,
.account-side-panel {
    padding: 24px 22px;
}

.side-panel-title {
    margin: 0 0 14px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.side-panel-copy {
    margin: 0 0 20px;
    color: #a3a3a3;
    line-height: 1.7;
    letter-spacing: 0.4px;
}

.side-panel-stack {
    display: grid;
    gap: 12px;
}

.side-panel-card {
    padding: 16px 16px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.side-panel-label {
    color: #e8d48d;
    font-size: 0.64rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.side-panel-card p {
    margin: 0;
    color: #bcbcbc;
    line-height: 1.6;
    font-size: 0.82rem;
}

.account-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
}

.account-action-btn {
    position: relative;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 14px;
    text-decoration: none;
    color: #f1f1f1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18)),
        rgba(6, 6, 6, 0.88);
    font-size: 0.9rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.account-action-btn:hover {
    border-color: rgba(212, 175, 55, 0.48);
    color: #fff;
    transform: translateY(-2px);
}

.account-action-btn .wishlist-count {
    margin-left: 10px;
}

.account-action-btn.logout {
    cursor: pointer;
    font-family: inherit;
}

.account-list {
    padding: 0 22px 22px;
}

.account-row {
    padding: 16px 0;
}

.account-row-arrow {
    color: rgba(212, 175, 55, 0.78);
    font-size: 1rem;
}

.account-placeholder {
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(212, 175, 55, 0.08);
    color: #f2e1a7;
    padding: 7px 10px;
    font-size: 0.6rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.utility-note {
    margin-top: 14px;
    color: #8f8f8f;
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

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

@media (max-width: 768px) {
    .shop-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        padding: 14px 14px 10px;
        gap: 8px;
    }

    .shop-nav .shop-cart-link {
        display: none;
    }

    .shop-nav-actions {
        display: flex;
        justify-self: end;
        width: auto;
        max-width: none;
        margin-right: 0;
    }

    .shop-search-wrap {
        width: 100%;
        max-width: 108px;
    }

    .shop-search {
        width: 100%;
        max-width: none;
        font-size: 0.61rem;
        letter-spacing: 0.92px;
        padding: 7px 7px;
        padding-right: 23px;
    }

    .shop-body,
    .utility-page-body {
        padding-bottom: 92px;
    }

    .mobile-bottom-dock {
        display: grid;
        left: 50%;
        right: auto;
        bottom: calc(10px + env(safe-area-inset-bottom));
        width: min(420px, calc(100% - 20px));
        transform: translateX(-50%);
        padding: 7px;
        border-radius: 26px;
        border: 1px solid rgba(225, 198, 153, 0.18);
        background: linear-gradient(180deg, rgba(26, 25, 31, 0.94), rgba(10, 10, 14, 0.96));
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 245, 214, 0.06);
        z-index: 2600;
    }

    .mobile-dock-link {
        position: relative;
        min-height: 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: rgba(223, 216, 199, 0.66);
        text-decoration: none;
        border-radius: 18px;
        transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

    .mobile-dock-link.active,
    .mobile-dock-link:hover {
        background: linear-gradient(180deg, rgba(225, 198, 153, 0.14), rgba(255, 255, 255, 0.03));
        color: #f6e4bb;
        border-color: rgba(225, 198, 153, 0.22);
    }

    .mobile-dock-icon {
        position: relative;
        width: 23px;
        height: 23px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-dock-icon svg {
        width: 23px;
        height: 23px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-dock-label {
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1;
    }

    .mobile-dock-badge {
        position: absolute;
        top: -8px;
        right: -9px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: linear-gradient(180deg, #f4d790, #d4af37);
        color: #000;
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.26);
        font-size: 0.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .shop-controls {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        padding: 8px 14px 0;
        align-items: end;
    }

    .shop-control-item {
        min-width: 0;
    }

    .shop-control-label {
        margin-bottom: 6px;
    }

    .shop-control-select,
    .shop-filter-trigger {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .shop-filter-drawer {
        width: min(390px, 100%);
    }

    .utility-page-shell {
        width: min(100%, calc(100% - 24px));
        padding-top: 14px;
        padding-bottom: 118px;
    }

    .utility-hero {
        margin-top: 10px;
        padding: 22px 16px;
        border-radius: 20px;
    }

    .account-hero {
        margin-top: 8px;
        margin-bottom: 12px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .settings-hero {
        margin-top: 8px;
        margin-bottom: 12px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .account-hero .utility-kicker {
        font-size: 0.5rem;
        letter-spacing: 2.4px;
        margin-bottom: 4px;
    }

    .settings-hero .utility-kicker {
        font-size: 0.5rem;
        letter-spacing: 2.4px;
        margin-bottom: 4px;
    }

    .account-hero .utility-title {
        font-size: clamp(1.22rem, 6.2vw, 1.75rem);
        margin-bottom: 6px;
    }

    .settings-hero .utility-title {
        font-size: clamp(1.22rem, 6.2vw, 1.75rem);
        margin-bottom: 6px;
    }

    .account-hero .utility-copy {
        font-size: 0.56rem;
        letter-spacing: 0.72px;
        line-height: 1.42;
    }

    .account-action-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 16px;
    }

    .settings-collapse-summary {
        padding: 16px;
        padding-inline-start: 0;
    }

    .settings-collapse-body {
        padding: 0 16px 16px;
    }

    .account-action-btn {
        min-height: 48px;
        padding: 0 11px;
        font-size: 0.8rem;
        letter-spacing: 1.4px;
    }

    .settings-row,
    .account-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    .settings-select,
    .settings-chip {
        width: 100%;
        box-sizing: border-box;
    }

    .account-list {
        padding: 0 16px 18px;
    }

    .account-row {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 420px) {
    .shop-nav {
        padding: 12px 10px 8px;
        gap: 6px;
    }

    .shop-nav-actions {
        width: auto;
        max-width: none;
        margin-right: 0;
    }

    .shop-search-wrap {
        max-width: 100px;
    }

    .shop-logo {
        font-size: 0.92rem;
        letter-spacing: 2.2px;
        max-width: calc(100% - 126px);
    }

    .vault-hero {
        margin: 6px 10px 10px;
        min-height: 78px;
        padding: 5px 10px;
    }

    .vault-title {
        top: 39%;
        font-size: 1.02rem;
        letter-spacing: 0.7px;
    }

    .vault-subtitle {
        font-size: 0.54rem;
        letter-spacing: 0.72px;
        bottom: 9px;
    }

    .account-hero {
        margin: 6px 0 10px;
        padding: 10px 12px;
    }

    .settings-hero {
        margin: 6px 0 10px;
        padding: 10px 12px;
    }

    .account-hero .utility-kicker {
        font-size: 0.46rem;
        letter-spacing: 2px;
    }

    .settings-hero .utility-kicker {
        font-size: 0.46rem;
        letter-spacing: 2px;
    }

    .account-hero .utility-title {
        font-size: 1.02rem;
        margin-bottom: 4px;
    }

    .settings-hero .utility-title {
        font-size: 1.02rem;
        margin-bottom: 4px;
    }

    .account-hero .utility-copy {
        font-size: 0.5rem;
        letter-spacing: 0.62px;
        line-height: 1.35;
    }

    .shop-search {
        font-size: 0.55rem;
        letter-spacing: 0.72px;
        padding: 6px 7px;
        padding-right: 20px;
    }

    .mobile-bottom-dock {
        width: min(400px, calc(100% - 16px));
        padding-left: 4px;
        padding-right: 4px;
    }

    .mobile-dock-link {
        min-height: 47px;
    }

    .mobile-dock-label {
        font-size: 0.58rem;
    }

    .mobile-dock-icon,
    .mobile-dock-icon svg {
        width: 19px;
        height: 19px;
    }

    .account-action-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-card--signup .auth-switch {
    margin-top: 6px;
    font-size: 0.7rem;
    gap: 8px;
}

.auth-card--signup #switchLink {
    min-height: 28px;
    padding: 0 12px;
    letter-spacing: 2px;
}

.auth-card--signup .vault-submit {
    min-height: 40px;
    margin-top: 10px;
    padding: 10px;
    letter-spacing: 2.2px;
    border-radius: 16px;
}

@media (max-width: 560px) {
    .auth-card--signup #registrationFields {
        gap: 8px;
    }

    .auth-card--signup .signup-name-row,
    .auth-card--signup .signup-meta-row {
        grid-template-columns: 1fr;
    }
}

img,
video {
    max-width: 100%;
    height: auto;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 640px) {
    .shop-nav {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        padding: 12px 10px;
    }

    .shop-logo {
        min-width: 0;
        font-size: 0.92rem;
        letter-spacing: 2px;
        max-width: calc(100% - 124px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .shop-nav-actions {
        gap: 0;
    }

    .shop-search {
        width: 112px;
        min-width: 0;
        max-width: 112px;
    }
}

@media (max-width: 420px) {
    .shop-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-control-item,
    .shop-control-item-inline,
    .shop-quick-links {
        grid-column: auto;
    }

    .shop-logo {
        font-size: 0.84rem;
        letter-spacing: 1.4px;
        max-width: calc(100% - 116px);
    }

    .shop-search-wrap {
        min-width: 0;
    }

    .shop-search {
        width: 100px;
        max-width: 100px;
        font-size: 0.58rem;
        letter-spacing: 0.6px;
    }

    .artifact-grid-container {
        grid-template-columns: 1fr;
    }

    .product-card {
        width: min(100%, 360px);
        justify-self: center;
    }
}

/* Editorial mobile grid override */
.artifact-grid-container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 0 16px 28px;
    background: transparent;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(191, 149, 63, 0.55);
    background:
        linear-gradient(180deg, rgba(17, 18, 26, 0.96), rgba(9, 9, 14, 0.98)),
        rgba(8, 8, 12, 0.96);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.product-card::before {
    inset: auto;
    top: auto;
    left: auto;
    width: 0;
    height: 0;
    opacity: 0;
}

.product-card::after {
    inset: 3px;
    border-radius: 13px;
    border: 1px solid rgba(244, 215, 154, 0.28);
    background: none;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 215, 154, 0.72);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.36);
}

.product-image-wrapper {
    width: calc(100% - 12px);
    margin: 6px 6px 0;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 11px;
    border: 1px solid rgba(191, 149, 63, 0.45);
    background:
        radial-gradient(circle at 24% 24%, rgba(107, 61, 145, 0.44), transparent 56%),
        radial-gradient(circle at 78% 20%, rgba(59, 85, 158, 0.32), transparent 48%),
        linear-gradient(135deg, rgba(60, 35, 78, 0.9), rgba(19, 26, 61, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transform: none;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    padding: 8px 8px 10px;
    text-align: center;
}

.product-tag {
    position: static;
    display: block;
    max-width: none;
    padding: 0;
    background: none;
    border: 0;
    color: #b9914f;
    font-size: 0.42rem;
    letter-spacing: 1.4px;
    line-height: 1.2;
    white-space: normal;
    text-overflow: clip;
}

.product-name {
    margin: 0;
    color: #f6f0e3;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 0.82rem;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    text-wrap: balance;
}

.product-note {
    min-height: 1.2em;
    margin: 0;
    color: rgba(217, 188, 133, 0.68);
    font-size: 0.4rem;
    letter-spacing: 1.15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-price {
    justify-content: center;
    margin: 0;
    color: #f8f2de;
}

.price-final {
    color: #f8f2de;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.size-chips,
.vault-btn,
.artifact-grid-container .size-chips,
.artifact-grid-container .vault-btn {
    display: none;
}

.product-card .discount-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(96, 196, 126, 0.16);
    border: 1px solid rgba(96, 196, 126, 0.28);
    color: #9fffad;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
}

.product-card .price-cut {
    display: inline-block !important;
    color: #9b9b9b;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    font-size: 0.62rem;
    font-weight: 500;
    opacity: 0.92;
}

.product-card .price-final {
    font-size: 0.78rem;
    font-weight: 700;
}

.wishlist-btn {
    top: 9px;
    right: 9px;
    width: 26px;
    height: 26px;
    border-color: rgba(132, 137, 150, 0.4);
    background: rgba(18, 18, 22, 0.88);
    color: rgba(181, 187, 198, 0.78);
    font-size: 13px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.26);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wishlist-btn:hover {
    border-color: rgba(244, 215, 154, 0.9);
    color: #f3cf82;
    background: rgba(32, 28, 22, 0.96);
    transform: translateY(-1px);
}

.wishlist-btn.active {
    border-color: #E1C699;
    color: #E1C699;
    background: rgba(56, 44, 25, 0.96);
    box-shadow: 0 6px 16px rgba(225, 198, 153, 0.24);
}

@media (max-width: 768px) {
    .artifact-grid-container {
        gap: 12px;
        padding: 0 14px 24px;
    }

    .product-card {
        border-radius: 17px;
    }

    .product-image-wrapper {
        width: calc(100% - 16px);
        margin: 8px 8px 0;
        border-radius: 12px;
    }

    .product-info {
        padding: 10px 9px 12px;
    }

    .product-name {
        font-size: 0.84rem;
    }

    .product-note {
        font-size: 0.42rem;
        letter-spacing: 1.3px;
    }

    .price-final {
        font-size: 0.8rem;
    }
}

@media (max-width: 1400px) {
    .artifact-grid-container {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .artifact-grid-container {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .product-name {
        font-size: 0.78rem;
    }

    .product-tag {
        font-size: 0.4rem;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 992px) {
    .artifact-grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .artifact-grid-container {
        gap: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .product-name {
        font-size: 0.78rem;
    }

    .product-note {
        font-size: 0.4rem;
        letter-spacing: 1.15px;
    }

    .product-tag {
        font-size: 0.45rem;
        letter-spacing: 1.6px;
    }

    .wishlist-btn {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .artifact-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card {
        width: 100%;
    }
}