/* ===== DESIGN TOKENS ===== */
:root {
    --pearl-white: #F8F6F2;
    --soft-beige: #EFE7DA;
    --champagne: #F2E8D5;
    --blush-pink: #F9EBEA;
    --gold: #D4AF37;
    --gold-light: #F0DFC8;
    --gold-dark: #B8960C;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --text-dark: #2C2C2C;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(212, 175, 55, 0.22);
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 30px 80px rgba(212, 175, 55, 0.2);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --radius-card: 20px;
    --radius-sm: 12px;
}

/* ===== GLOBAL RESET — removes browser default blue links ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--pearl-white);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Remove ALL default link styles globally */
a {
    text-decoration: none !important;
    color: inherit !important;
}

a:visited {
    color: inherit !important;
}

a:hover {
    color: inherit !important;
}

a:active {
    color: inherit !important;
}

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

/* ===== CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background-color .3s, border-color .3s;
}

.cursor-active {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, .12);
    border-color: transparent;
}

/* ===== NOISE ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noise .2s infinite;
}

@keyframes noise {
    0% { transform: translate(0, 0) }
    20% { transform: translate(-5%, 5%) }
    40% { transform: translate(-10%, -5%) }
    60% { transform: translate(5%, 10%) }
    80% { transform: translate(-5%, -15%) }
    100% { transform: translate(5%, 0) }
}

/* ===== PARTICLES ===== */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: particleDrift 12s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .9), rgba(212, 175, 55, .15));
}

@keyframes particleDrift {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: .3; }
    33% { transform: translateY(-30px) translateX(15px) scale(1.1); opacity: .6; }
    66% { transform: translateY(-15px) translateX(-20px) scale(.9); opacity: .4; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.4rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(248, 246, 242, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: .9rem 5vw;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .04);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-logo h2 {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.nav-logo h2 span {
    color: var(--gold);
    font-style: italic;
}

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

.nav-links a {
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    color: var(--text-dark) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s cubic-bezier(.23, 1, .32, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold) !important;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons i, .nav-icons svg {
    color: var(--text-dark);
    transition: var(--transition);
    width: 24px;
    height: 24px;
}

.nav-icons i:hover, .nav-icons svg:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

#cart-btn {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-family: var(--font-body);
    border: 2px solid var(--white);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 600;
    border-radius: 3px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, .35);
    font-family: var(--font-body);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, .4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 600;
    border-radius: 3px;
    border: 1.5px solid rgba(212, 175, 55, .5);
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .15);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8vw;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 62% 50%, #FCF9F3 0%, #F5ECDD 100%);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    filter: brightness(0.9);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(252, 249, 243, .1) 0%, rgba(245, 236, 221, .25) 100%);
    z-index: 1;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    flex: 1.2;
    z-index: 3;
    padding-right: 4rem;
}

.hero-subtitle {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: .8rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
}

.text-reveal {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.text-reveal span {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(.19, 1, .22, 1), opacity .8s ease;
}

.text-reveal.active span {
    transform: translateY(0);
    opacity: 1;
}

.hero-image {
    flex: 1;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img-container {
    width: 100%;
    aspect-ratio: 1/1.08;
    max-width: 520px;
    border-radius: 50% / 45% 45% 55% 55%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
    opacity: 0;
    transform: scale(.88);
    border: 8px solid rgba(255, 255, 255, .9);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 14s cubic-bezier(.1, 0, .1, 1), opacity 0.6s ease;
    opacity: 0;
}

.hero.active .hero-img-container img {
    transform: scale(1);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: .5; width: 60px }
    50% { opacity: 1; width: 100px }
}

.gold-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, .15), transparent 70%);
    pointer-events: none;
    animation: orbDrift 10s ease-in-out infinite;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
}

/* ===== TRUST ===== */
.trust {
    background: var(--white);
    padding: 5rem 5vw;
    border-top: 1px solid var(--glass-border);
}

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

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(212, 175, 55, .15);
    transition: var(--transition);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon-wrap {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--blush-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: var(--transition);
}

.trust-icon-wrap i {
    width: 30px;
    height: 30px;
}

.trust-item:hover .trust-icon-wrap {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.trust-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 5vw;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: .8rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width .8s cubic-bezier(.23, 1, .32, 1);
}

.animated-underline.active::after {
    width: 120%;
}

/* ===== CATEGORY PILL NAVIGATION ===== */
.cat-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 1.5px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.cat-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cat-pill span {
    position: relative;
    z-index: 1;
}

.cat-pill:hover::before,
.cat-pill.active::before {
    opacity: 1;
}

.cat-pill:hover,
.cat-pill.active {
    color: var(--white) !important;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ===== CATEGORY CIRCLES ===== */
/* ===== CATEGORY HERO WITH BG IMAGE ===== */
.category-hero {
    padding: 12rem 5vw 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #F5ECDD;
}

.category-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) saturate(0.8) brightness(1.05); /* Reduced blur, increased saturation */
    transform: scale(1.1);
    opacity: 0.45; /* Increased opacity for more visibility */
    z-index: 0;
}

.category-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 0%, rgba(252, 249, 243, 0.6) 0%, rgba(245, 236, 221, 0.8) 100%); /* Lighter overlay */
    z-index: 1;
}

.category-hero .category-label,
.category-hero .category-title,
.category-hero .category-count,
.category-hero .gold-divider {
    position: relative;
    z-index: 2;
}

/* ===== LAYOUT ===== */
.page-content {
    padding: 4rem 5vw;
}

/* ===== PREMIUM CATEGORY CARDS ===== */
.categories {
    background: var(--white);
    padding: 8rem 5vw;
}


.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: center;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    position: relative;
    transition: all 0.4s ease;
}

.cat-circle {
    width: 100%;
    aspect-ratio: 4 / 5.5;
    border-radius: 24px;
    background: var(--pearl-white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    margin-bottom: 1.8rem;
}

.cat-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    opacity: 0;
}

.cat-item:hover .cat-circle {
    transform: translateY(-15px) scale(1.025);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

.cat-item:hover .cat-circle::after {
    opacity: 0.1;
}

.cat-item:hover .cat-circle img {
    transform: scale(1.1);
}

.cat-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark) !important;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
}

.cat-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cat-item:hover .cat-name {
    color: var(--gold) !important;
}

.cat-item:hover .cat-name::after {
    width: 50px;
}


/* ===== PRODUCT CATEGORY SECTION ===== */
.product-category-section {
    padding: 7rem 5vw;
    position: relative;
}

.product-category-section:nth-child(odd) {
    background: var(--white);
}

.product-category-section:nth-child(even) {
    background: var(--pearl-white);
}

.category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.category-label {
    display: block;
    font-size: .72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
    font-weight: 600;
}

.category-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    line-height: 1.2;
}

.category-title em {
    font-style: italic;
    color: var(--gold);
}

.category-count {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .3rem;
    display: block;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
}

.view-all-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
    color: var(--white) !important;
}

/* ===== BACK HOME BUTTON ===== */
.back-home-btn {
    position: absolute;
    top: 7rem; /* Adjusted for navbar clearance */
    left: 5vw;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: rgba(255, 255, 255, 0.85); /* Slightly more opaque */
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.back-home-btn i {
    width: 14px;
    height: 14px;
    transition: transform 0.4s ease;
}

.back-home-btn:hover {
    background: var(--gold);
    color: var(--white) !important;
    border-color: var(--gold);
    transform: translateX(-10px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.back-home-btn:hover i {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .back-home-btn {
        top: 5rem;
        padding: 0.6rem 1.1rem;
        font-size: 0.72rem;
    }
}


/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

/* ===== GLASSMORPHISM PRODUCT CARD ===== */
.pcard {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.pcard.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pcard:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, .35);
}

.pcard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(212, 175, 55, .06), transparent);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
    z-index: 0;
}

.pcard:hover::before {
    opacity: 1;
}

.pcard-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f5ecdd, #efe7da);
    padding: 15px;
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .7s cubic-bezier(.23, 1, .32, 1), opacity 0.4s ease;
    display: block;
    opacity: 0;
}

.pcard-img.loaded img, .cat-circle.loaded img, .hero-img-container.loaded img {
    opacity: 1;
}

.img-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    background: rgba(248, 246, 242, 0.4);
}

.img-loader::after {
    content: "";
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.pcard:hover .pcard-img img {
    transform: scale(1.1);
}

.pcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, .52), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    gap: .6rem;
    z-index: 5;
}

.pcard:hover .pcard-overlay {
    opacity: 1;
}

@media(max-width:768px) {
    .pcard-overlay {
        opacity: 0.9 !important;
        background: linear-gradient(to top, rgba(44, 44, 44, 0.8), transparent 70%);
        padding-bottom: 0.8rem;
    }
    .pcard-btn {
        padding: .75rem 1.2rem;
        font-size: .75rem;
    }
}

.pcard-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 30px;
    z-index: 2;
    font-family: var(--font-body);
}

.pcard-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-4px);
}

.pcard:hover .pcard-wish {
    opacity: 1;
    transform: translateY(0);
}

.pcard-wish:hover {
    background: var(--gold);
    color: var(--white);
}

.pcard-actions {
    display: flex;
    gap: .5rem;
}

.pcard-btn {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .55rem 1rem;
    border-radius: 30px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.pcard-btn-cart {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .4);
}

.pcard-btn-cart:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, .5);
}

.pcard-btn-view {
    background: rgba(255, 255, 255, .92);
    color: var(--text-dark) !important;
    backdrop-filter: blur(6px);
}

.pcard-btn-view:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.pcard-info {
    padding: 1.2rem 1.1rem;
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
}

.pcard-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: .3rem;
    line-height: 1.3;
    font-weight: 500;
}

.pcard-desc {
    font-size: .72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: .7rem;
    font-weight: 300;
}

.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcard-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-body);
}

.pcard-rating {
    font-size: .68rem;
    color: var(--gold);
}

.pcard.out-of-stock {
    opacity: 0.7;
    filter: grayscale(0.5);
    cursor: not-allowed;
}

.pcard.out-of-stock .pcard-btn-cart {
    background: #ccc !important;
    cursor: not-allowed;
    box-shadow: none;
}

.pcard.out-of-stock .pcard-img::after {
    content: 'OUT OF STOCK';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    z-index: 10;
}

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    pointer-events: none;
}

.toast {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1rem 1.4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .83rem;
    color: var(--text-dark);
    font-weight: 500;
    transform: translateX(120%);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1);
    max-width: 300px;
    font-family: var(--font-body);
}

.toast.show {
    transform: translateX(0);
    pointer-events: all;
}

.toast-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

/* ===== CINEMATIC ===== */
.cinematic {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('../img/ui/Gemini_Generated_Image_czfv5wczfv5wczfv.png') center/cover no-repeat;
    background-attachment: fixed;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(239, 231, 218, .83);
    backdrop-filter: blur(3px);
}

.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 2rem;
}

.cinematic-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, .4)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, .8)); transform: scale(1.1); }
}

.cinematic-text {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cinematic-text em {
    font-style: italic;
    color: var(--gold);
}

.cinematic-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ===== ABOUT ===== */
.about {
    display: flex;
    padding: 0;
    background: var(--soft-beige);
}

.about-image {
    flex: 1;
    min-height: 600px;
    background: url('../img/ui/Whisk_30c18d72599d0a7ad2448fde0a4696d7dr.png') center/cover no-repeat;
}

.about-content {
    flex: 1;
    padding: 7rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
}

/* ===== INSTAGRAM ===== */
.instagram-section {
    background: var(--pearl-white);
    overflow: hidden;
    padding: 6rem 0;
}

.insta-marquee {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.insta-item {
    width: 220px;
    height: 300px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 8rem 4rem;
    background: linear-gradient(to top, var(--blush-pink), var(--pearl-white));
    position: relative;
}

.cta-section .section-title {
    margin-bottom: 1.5rem;
}

.cta-sub {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 3rem;
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 6rem 5vw 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.footer-logo span {
    color: var(--gold);
    font-style: italic;
}

.footer-desc {
    color: #AAAAAA;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
    font-size: .9rem;
    font-weight: 300;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: .8rem;
}

.footer-links a {
    color: #AAAAAA !important;
    font-size: .9rem;
    font-weight: 300;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold) !important;
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: .8rem;
    margin-top: .5rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    color: #888;
    font-size: .82rem;
    font-weight: 300;
}

/* ===== MODAL — PREMIUM PRODUCT CARD ===== */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    padding: 2rem;
}

.product-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 940px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transform: translateY(40px) scale(0.93);
    transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 60px 140px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.product-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.modal-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: linear-gradient(145deg, #f8f3ec, #efe7d8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    z-index: 0;
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.modal-img-wrap:hover img {
    transform: scale(1.06);
}

.modal-info {
    padding: 3.5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    background: var(--white);
}

.modal-cat-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.modal-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    color: var(--text-dark);
}

.modal-price {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: -0.5px;
}

.modal-desc {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.8rem;
    font-size: 0.88rem;
    font-weight: 300;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
}

.modal-rating {
    display: flex;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    fill: var(--gold);
}

.modal-rating i {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.modal-actions {
    display: flex;
    gap: 0.8rem;
}

.modal-actions .btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-actions .btn-outline {
    padding: 1rem 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .product-modal {
        padding: 1rem;
        align-items: flex-end;
    }
    .modal-content {
        grid-template-columns: 1fr;
        border-radius: 24px 24px 0 0;
        max-height: 92vh;
    }
    .modal-img-wrap {
        min-height: 260px;
        max-height: 300px;
    }
    .modal-info {
        padding: 2rem 1.6rem;
    }
    .modal-name {
        font-size: 1.5rem;
    }
}


/* ===== CART ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--pearl-white);
    z-index: 10001;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transition: right .45s cubic-bezier(.23, 1, .32, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    background: var(--white);
}

.cart-header h2 {
    font-size: 1.4rem;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform .3s;
}

.cart-close:hover {
    transform: scale(1.15) rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .8rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.cart-item img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: .2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--gold);
    font-size: .9rem;
    font-weight: 700;
}

.cart-item-qty {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    text-decoration: underline;
    font-size: .75rem;
    margin-top: .2rem;
    display: block;
}

.cart-footer {
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.cart-total span:last-child {
    color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23, 1, .32, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .1s }
.delay-2 { transition-delay: .2s }
.delay-3 { transition-delay: .3s }
.delay-4 { transition-delay: .4s }
.delay-5 { transition-delay: .5s }
.delay-6 { transition-delay: .6s }
.delay-7 { transition-delay: .7s }
.delay-8 { transition-delay: .8s }

/* ===== SEARCH ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(5px);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-panel {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 80vh;
    background: var(--pearl-white);
    z-index: 100001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    transition: top .45s cubic-bezier(.23, 1, .32, 1);
    display: flex;
    flex-direction: column;
}

.search-panel.active {
    top: 0;
}

.search-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--white);
}

.search-header input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    outline: none;
}

.search-header input::placeholder {
    color: #bbb;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform .3s;
}

.search-close:hover {
    transform: scale(1.15) rotate(90deg);
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-content: start;
}

.search-result-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .04);
}

.search-result-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.search-result-item img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.search-item-info {
    flex: 1;
    min-width: 0;
}

.search-item-cat {
    font-size: .7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .2rem;
    display: block;
}

.search-item-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: .3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-price {
    color: var(--gold);
    font-size: .95rem;
    font-weight: 700;
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:1024px) {
    .hero-title { font-size: 4.5rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(212, 175, 55, .15); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about { flex-direction: column; }
    .about-image { min-height: 400px; }
    .modal-content { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
    .modal-img-wrap { min-height: 280px; }
}

@media(max-width:900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:768px) {
    .navbar { padding: 1rem 5vw; }
    .nav-menu-toggle { display: block; order: -1; }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 6000;
        transition: var(--transition);
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active { left: 0; }
    .hero { flex-direction: column; text-align: center; padding: 7rem 5vw 3rem; }
    .hero-content { padding-right: 0; margin-bottom: 2.5rem; }
    .hero-title { font-size: 3rem; }
    .hero-img-container { border-radius: 100px 100px 0 0; }
    .hero-btn-group { justify-content: center; }
    .section, .product-category-section { padding: 4rem 5vw; }
    .cinematic-text { font-size: 2.5rem; }
    .trust-grid, .footer-grid { grid-template-columns: 1fr; }
    .about-content { padding: 4rem 2rem; }
    .cat-grid { gap: 1.8rem; }
    .category-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
    .cat-nav { gap: .7rem; margin-bottom: 2.5rem; }
    .cat-pill { padding: .6rem 1.3rem; font-size: .72rem; }
    .products-grid { gap: 1.2rem; }
    .pcard-info { padding: 1rem .9rem; }
}

@media(max-width:500px) {
    .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    .navbar { padding: 0.8rem 5vw; }
    .pcard-img { padding: 8px; }
    .pcard-name { font-size: 0.95rem; }
    .pcard-price { font-size: 1rem; }
}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 10, 0.85);
    z-index: 200000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s cubic-bezier(.23, 1, .32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.checkout-overlay.active { opacity: 1; pointer-events: all; }

.checkout-panel {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 28px;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .22), 0 0 0 1px rgba(212, 175, 55, .12);
    position: relative;
    transform: translateY(35px) scale(.95);
    transition: transform .55s cubic-bezier(.23, 1, .32, 1);
}

.checkout-overlay.active .checkout-panel { transform: translateY(0) scale(1); }

.co-summary {
    background: linear-gradient(160deg, #2c2c2c 0%, #1a1510 100%);
    border-radius: 28px 0 0 28px;
    padding: 3rem 2.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.co-summary-logo { font-family: var(--font-heading); font-size: 1.7rem; margin-bottom: .3rem; }
.co-summary-logo span { color: var(--gold); font-style: italic; }
.co-summary-subtitle { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: #aaa; margin-bottom: 2rem; }
.co-items { flex: 1; overflow-y: auto; max-height: 340px; display: flex; flex-direction: column; gap: 1rem; padding-right: .3rem; }
.co-items::-webkit-scrollbar { width: 3px; }
.co-items::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, .4); border-radius: 4px; }
.co-item { display: flex; gap: .9rem; align-items: center; padding: .8rem; background: rgba(255, 255, 255, .05); border-radius: 12px; border: 1px solid rgba(212, 175, 55, .1); }
.co-item img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.co-item-name { font-family: var(--font-heading); font-size: .92rem; color: var(--white); line-height: 1.3; margin-bottom: .2rem; }
.co-item-meta { font-size: .75rem; color: #aaa; }
.co-item-price { margin-left: auto; font-size: .95rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.co-divider { height: 1px; background: rgba(255, 255, 255, .08); margin: 1.8rem 0; }
.co-total-row { display: flex; justify-content: space-between; align-items: center; }
.co-total-label { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }
.co-total-amount { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.co-empty-msg { color: #888; font-size: .9rem; text-align: center; margin-top: 2rem; }

.co-form-wrap { padding: 3rem 2.8rem; display: flex; flex-direction: column; }
.co-close-btn { position: absolute; top: 18px; right: 18px; background: rgba(0, 0, 0, .06); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--text-dark); z-index: 2; }
.co-close-btn:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }
.co-form-title { font-family: var(--font-heading); font-size: 1.9rem; margin-bottom: .4rem; color: var(--text-dark); }
.co-form-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; }
.co-form { display: flex; flex-direction: column; gap: 1.2rem; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dark); font-family: var(--font-body); }
.form-input, .form-textarea { border: 1.5px solid rgba(212, 175, 55, .25); border-radius: 10px; padding: .85rem 1rem; font-size: .9rem; font-family: var(--font-body); color: var(--text-dark); background: rgba(248, 246, 242, .7); transition: border-color .3s, box-shadow .3s, background .3s; width: 100%; outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .12); background: var(--white); }
.form-textarea { resize: vertical; min-height: 72px; }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.co-submit-btn { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .7rem; padding: 1.1rem 2rem; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important; border: none; border-radius: 50px; font-size: .9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-body); cursor: pointer; transition: var(--transition); box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
.co-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(37, 211, 102, .4); }
.co-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.co-loading { position: fixed; inset: 0; z-index: 300000; background: rgba(248, 246, 242, .92); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .4s; }
.co-loading.active { opacity: 1; pointer-events: all; }
.co-spinner { width: 60px; height: 60px; border: 3px solid rgba(212, 175, 55, .2); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }
.co-loading-text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-dark); }
.co-loading-sub { font-size: .85rem; color: var(--text-muted); }

.wa-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .9rem; background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .3); border-radius: 20px; font-size: .72rem; color: #128C7E; font-weight: 600; margin-bottom: 1.5rem; }

@media(max-width:768px) {
    .checkout-panel { grid-template-columns: 1fr; }
    .co-summary { border-radius: 28px 28px 0 0; }
    .co-form-wrap { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
}
