/* ===================================================================
   UNIVERSAL PRODUCTS — 3D Dark Luxury Stylesheet
   =================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Manrope:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Public+Sans:wght@700;800;900&display=swap');

/* --- DESIGN TOKENS --- */
:root {
    --bg: #f9f8f3;
    --bg-2: #f3f1e8;
    --bg-3: #eae7db;
    --surface: rgba(14, 27, 51, 0.03);
    --surface-hover: rgba(14, 27, 51, 0.06);
    --border: rgba(14, 27, 51, 0.08);
    --border-gold: rgba(184, 144, 71, 0.3);
    --gold: #b89047;
    --gold-bright: #d4af37;
    --gold-dim: #aa7c11;
    --gold-glow: rgba(184, 144, 71, 0.15);
    --text: #0e1b33;
    --text-muted: #54668c;
    --text-dim: #8b99b5;
    --white: #ffffff;
    --red: #ef4444;
    --orange: #f97316;
    --green: #15803d;
    --shadow-sm: 0 2px 8px rgba(14, 27, 51, 0.08);
    --shadow-md: 0 8px 32px rgba(14, 27, 51, 0.12);
    --shadow-lg: 0 24px 64px rgba(14, 27, 51, 0.16);
    --shadow-gold: 0 8px 32px rgba(184, 144, 71, 0.15);
    --shadow-gold-lg: 0 20px 60px rgba(184, 144, 71, 0.2);
    --glow-gold: 0 0 40px rgba(184, 144, 71, 0.2), 0 0 80px rgba(184, 144, 71, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.2s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

::selection { background: var(--gold); color: var(--bg); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Typography */
h1, h2, h3, .serif { font-family: 'Cinzel', serif; }
.serif-alt { font-family: 'Playfair Display', serif; }
.brand-font { font-family: 'Public Sans', sans-serif; }

/* Links */
a { color: inherit; text-decoration: none; }

/* ===================================================================
   LOADING SCREEN
   =================================================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    width: 80px;
    height: 80px;
    animation: loader-spin 2s linear infinite;
    filter: drop-shadow(var(--glow-gold));
}
.loader-bar-track {
    width: 200px;
    height: 2px;
    background: rgba(14, 27, 51, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
    border-radius: var(--radius-full);
    animation: loader-progress 2s ease forwards;
}
.loader-text {
    font-family: 'Public Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: pulse-text 1.5s ease-in-out infinite;
}
@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes loader-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes pulse-text {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===================================================================
   CUSTOM CURSOR
   =================================================================== */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    mix-blend-mode: normal;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-outline {
    width: 36px; height: 36px;
    border: 1px solid rgba(198,168,124,0.5);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease,
                border-color 0.3s ease, background-color 0.3s ease;
}
.cursor-outline.hover {
    width: 60px; height: 60px;
    border-color: var(--gold);
    background: rgba(198,168,124,0.06);
}
@media (max-width: 1023px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
#main-nav {
    position: fixed;
    top: 0; width: 100%; z-index: 40;
    padding: 1.25rem 0;
    transition: var(--transition);
}
#main-nav.scrolled {
    background: rgba(8,12,18,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 0.85rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.nav-brand {
    font-family: 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.nav-brand span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 1023px) { .nav-links { display: none; } }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-nav-primary {
    display: none;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: var(--bg);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
}
.btn-nav-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
@media (min-width: 768px) { .btn-nav-primary { display: block; } }

.btn-nav-outline {
    display: none;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    background: rgba(198,168,124,0.05);
}
.btn-nav-outline:hover { background: var(--gold); color: var(--bg); }
@media (min-width: 640px) { .btn-nav-outline { display: block; } }

/* Mobile menu btn */
.mobile-menu-btn {
    background: none; border: none; cursor: none;
    width: 40px; height: 40px; padding: 6px;
    display: none; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
}
.mobile-menu-btn span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text); border-radius: 2px;
    transition: var(--transition);
}
@media (max-width: 1023px) { .mobile-menu-btn { display: flex; } }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    z-index: 55; opacity: 0; visibility: hidden; transition: var(--transition);
}
.menu-overlay.visible { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 340px; height: 100vh;
    background: var(--bg-2); z-index: 60;
    padding: 6rem 2rem 2rem;
    border-left: 1px solid var(--border-gold);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; gap: 0.5rem;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    padding: 1rem 0;
    font-size: 1.1rem; font-weight: 700;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    display: flex; align-items: center; gap: 1rem;
    transition: var(--transition-fast);
}
.mobile-menu a i { color: var(--gold); width: 20px; }
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ===================================================================
   SCROLL TO TOP
   =================================================================== */
.scroll-top {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 40;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--bg); transform: translateY(-4px); box-shadow: var(--shadow-gold-lg); }

/* ===================================================================
   WHATSAPP FLOAT
   =================================================================== */
.wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
    background: #25D366; color: white;
    padding: 0.9rem 1.4rem; border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 0.85rem;
    transition: var(--transition-bounce);
}
.wa-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 50px rgba(37,211,102,0.45); }

/* ===================================================================
   HERO SECTION — MINIMAL ELEGANT EDITORIAL
   =================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2rem 5rem;
    overflow: hidden;
    background: var(--bg);
}

/* Radial gold glow backdrop */
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% 15%, rgba(184,144,71,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(184,144,71,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(14,27,51,0.04) 0%, transparent 55%);
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ---- EYEBROW ---- */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.eyebrow-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold));
}
.hero-eyebrow .eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--border-gold), transparent);
}
.eyebrow-text {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

/* ---- ORNAMENT ---- */
.hero-ornament {
    margin-bottom: 2.25rem;
    width: clamp(220px, 55vw, 340px);
    opacity: 0.9;
    /* Subtle fade-in draw effect on the lines */
}
.hero-ornament svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* ---- MAIN HEADING ---- */
.hero-h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}
.h1-top {
    display: block;
    position: relative;
    /* animated underline */
}
.h1-top::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright), var(--gold-dim));
    margin: 0.35em auto 0;
    border-radius: 2px;
    animation: underline-grow 1.4s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes underline-grow {
    from { width: 0; }
    to   { width: 60%; }
}
.h1-em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 0.46em;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.15em;
}

/* ---- SUBTITLE ---- */
.hero-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.85;
}
.hero-partner-link {
    color: var(--gold);
    font-weight: 700;
    border-bottom: 1px solid var(--border-gold);
    transition: border-color 0.2s, color 0.2s;
}
.hero-partner-link:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---- CTA BUTTONS ---- */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.4rem;
    background: var(--gold);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition-bounce);
    box-shadow: 0 6px 28px rgba(184,144,71,0.3), 0 2px 0 rgba(255,255,255,0.15) inset;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.btn-hero-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(184,144,71,0.35);
}
.btn-hero-primary i { font-size: 0.75rem; }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.4rem;
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(14,27,51,0.2);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,144,71,0.05);
    transform: translateY(-2px);
}
.btn-hero-secondary i { font-size: 0.75rem; color: var(--gold); }

/* ---- DIVIDER ---- */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold));
}
.hero-divider .divider-line:last-child {
    background: linear-gradient(90deg, var(--border-gold), transparent);
}
.divider-diamond {
    font-size: 0.55rem;
    color: var(--gold);
    opacity: 0.6;
}

/* ---- TRUSTED-BY STRIP ---- */
.hero-trusted { text-align: center; }
.trusted-label {
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.trusted-names {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.trusted-names .sep {
    color: var(--border-gold);
    font-size: 0.5rem;
}

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s 1.6s forwards;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(184,144,71,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: var(--radius-full);
    animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}
.scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ---- ENTRY ANIMATIONS ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Old elements kept for compatibility */
.hero-mesh { display: none; }
.hero-tagline, .hero-logo-card, .brands-row { display: none; }
.btn-primary-3d, .btn-secondary-3d { display: none; }

/* ---- HERO RESPONSIVE ---- */
@media (max-width: 767px) {
    .hero-section { padding: 7.5rem 1.25rem 4.5rem; }
    .hero-content { gap: 0; }
    .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.8rem); margin-bottom: 1.25rem; }
    .hero-ornament { width: clamp(180px, 70vw, 280px); margin-bottom: 1.75rem; }
    .hero-subtitle { font-size: 0.92rem; margin-bottom: 2rem; }
    .hero-divider { max-width: 280px; }
    .trusted-names { gap: 0.4rem 0.75rem; font-size: 0.65rem; }
}
@media (max-width: 479px) {
    .hero-section { padding: 6.5rem 1rem 4rem; }
    .hero-h1 { font-size: clamp(1.9rem, 9.5vw, 3rem); }
    .h1-em { font-size: 0.5em; }
    .hero-eyebrow { gap: 0.75rem; }
    .eyebrow-line { max-width: 40px; }
    .eyebrow-text { font-size: 0.56rem; letter-spacing: 0.3em; }
    .hero-ornament { width: clamp(160px, 80vw, 240px); }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .trusted-names .sep:nth-child(8),
    .trusted-names .sep:nth-child(8) ~ * { display: none; }
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    background: var(--gold);
    padding: 12px 0;
}
.marquee-track {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================================================
   SECTION COMMON
   =================================================================== */
.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}
.section-h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}
.section-p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 520px;
}

/* Fade slide up animation (for AOS-like reveals) */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================================================
   CURATED SPACES (BENTO GRID)
   =================================================================== */
.spaces-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem 2rem;
}
.spaces-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.link-arrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
    transition: var(--transition-fast);
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 280px);
    }
    .bento-col-2 { grid-column: span 2; }
    .bento-row-2 { grid-row: span 2; }
}
.bento-item {
    background: var(--bg-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s ease;
    cursor: pointer;
    min-height: 200px;
}
.bento-item:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--shadow-gold); border-color: var(--border-gold); }
.bento-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; opacity: 0.7; }
.bento-item:hover .bento-img { transform: scale(1.08); opacity: 0.85; }
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
    transition: opacity 0.5s;
}
.bento-overlay h3 { font-family: 'Cinzel', serif; color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.bento-overlay p { color: rgba(255,255,255,0.75) !important; font-size: 0.85rem; margin-top: 0.3rem; }

/* ===================================================================
   SHOP SECTION
   =================================================================== */
.shop-section {
    padding: 7rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.shop-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.shop-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.shop-header .section-h2 { margin-bottom: 0.5rem; }
.gold-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
    border-radius: var(--radius-full);
}

/* Filter bar */
.filter-bar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    position: sticky;
    top: 74px;
    z-index: 30;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
    .filter-bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.search-wrap {
    position: relative;
    flex: 1;
    max-width: 360px;
}
.search-wrap i {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 0.85rem;
    pointer-events: none;
}
#searchInput {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
}
#searchInput::placeholder { color: var(--text-dim); }
#searchInput:focus { border-color: var(--gold); background: rgba(198,168,124,0.04); box-shadow: 0 0 0 3px rgba(198,168,124,0.1); }

.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: none;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,168,124,0.05); }
.filter-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); box-shadow: var(--shadow-gold); }

#sortSelect {
    padding: 0.65rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    outline: none;
    cursor: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a8090' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
#sortSelect:focus { border-color: var(--gold); }
#sortSelect option { background: var(--bg-3); color: var(--text); }

/* Product Grid */
#product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
@media (min-width: 640px) { #product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { #product-grid { grid-template-columns: repeat(3, 1fr); } }

/* 3D Product Card */
.product-card {
    background: var(--bg-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.product-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}
.product-media {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-3);
}
.product-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    opacity: 0.9;
}
.product-card:hover .product-media img { transform: scale(1.08); }

.product-badge {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}
.badge-bestseller { background: var(--gold); color: var(--bg); }
.badge-new { background: var(--gold); color: var(--bg); }
.badge-sale { background: var(--red); color: white; }
.badge-hot { background: var(--orange); color: white; }
.badge-default { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }

.action-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.product-card:hover .action-overlay { opacity: 1; }
.order-btn {
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: none;
    transform: translateY(12px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
}
.product-card:hover .order-btn { transform: translateY(0); }
.order-btn:hover { background: var(--gold-bright); box-shadow: var(--shadow-gold-lg); }

.product-body { padding: 1.5rem; flex: 1; }
.product-category {
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
}
.product-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; }
.product-name { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(198,168,124,0.4);
}

/* Loading shimmer for products */
.product-card.loading {
    pointer-events: none;
}
.product-card.loading .product-media,
.product-card.loading .product-name,
.product-card.loading .product-price {
    background: linear-gradient(90deg, var(--bg-3) 25%, rgba(255,255,255,0.05) 50%, var(--bg-3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    color: transparent;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

#no-results {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-dim);
    grid-column: 1/-1;
}
#no-results i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--text-dim); }

/* Google Sheets sync notice */
.sheet-sync-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(198,168,124,0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--gold);
}
.sheet-sync-bar i { font-size: 1rem; }
.sheet-sync-bar.error { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.3); color: #ef4444; }
.sheet-sync-bar.success { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.3); color: #22c55e; }
.sheet-sync-bar.hidden { display: none; }

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.reviews-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(198,168,124,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.reviews-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; position: relative; }
.reviews-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) { .reviews-header { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.google-rating img { width: 28px; height: 28px; }
.google-rating .rating-num { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.google-rating .stars { color: #F4B400; font-size: 0.85rem; display: flex; gap: 2px; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(198,168,124,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.review-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.review-quote {
    position: absolute; top: 1.25rem; right: 1.25rem;
    color: rgba(198,168,124,0.1);
    font-size: 3rem;
    z-index: 0;
    font-family: Georgia, serif;
    line-height: 1;
}
.review-body { position: relative; z-index: 1; }
.review-stars { display: flex; gap: 3px; color: #F4B400; font-size: 0.8rem; margin-bottom: 1.25rem; }
.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.review-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(198,168,124,0.15);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--gold); font-size: 1rem;
    flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.review-tag { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-section {
    padding: 7rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}
.gallery-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); }
    .gallery-main { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: none;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.gallery-item:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.8s ease, opacity 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); opacity: 0.9; }
.gallery-play {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-play { opacity: 1; }
.play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.25rem;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about-section {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}
.about-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 300px;
    transition: var(--transition);
}
.about-img:first-child { margin-top: 2.5rem; }
.about-img:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.about-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.4s; }
.about-img:hover img { opacity: 0.9; }
.about-quote {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}
.about-location {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.about-location-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(198,168,124,0.1);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem;
}

/* Stats bar */
.stats-bar {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 0 1rem; }
.stat-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: var(--glow-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    font-weight: 700;
}
@media (min-width: 768px) {
    .stat-item + .stat-item { border-left: 1px solid var(--border); }
}

/* FAQ */
.faq-section { max-width: 760px; margin: 4rem auto 0; }
.faq-section h3 { text-align: center; margin-bottom: 2rem; }
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: border-color 0.3s;
}
.accordion-item:hover { border-color: var(--border-gold); }
.accordion-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: none;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.accordion-btn:hover { background: var(--surface-hover); }
.accordion-btn .icon { color: var(--gold); transition: transform 0.3s; font-size: 0.8rem; }
.accordion-btn.active .icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body { padding: 1.25rem 1.5rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; border-top: 1px solid var(--border); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-section {
    padding: 7rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}
.contact-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
.store-status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-muted);
}
.dot { height: 8px; width: 8px; border-radius: 50%; display: inline-block; }
.dot.open-dot { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s infinite; }
.dot.closed-dot { background: var(--red); }
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
}
.contact-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.contact-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(198,168,124,0.1);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem; color: var(--gold);
    transition: var(--transition-bounce);
}
.contact-card:hover .contact-icon { background: var(--gold); color: var(--bg); transform: scale(1.1) rotate(6deg); }
.contact-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.35rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-muted); }
.copy-hint {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%) translateY(4px);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); opacity: 0; transition: var(--transition-fast);
    white-space: nowrap;
}
.contact-card:hover .copy-hint { opacity: 1; transform: translateX(-50%) translateY(0); }

.contact-form-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .contact-form-panel { grid-template-columns: 1fr 1fr; } }
.contact-form-side { padding: 3rem; }
.contact-form-side h3 { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--text); margin-bottom: 0.5rem; }
.contact-form-side p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.form-group { position: relative; margin-bottom: 1.5rem; }
.floating-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}
.floating-input:focus { border-color: var(--gold); background: rgba(198,168,124,0.04); box-shadow: 0 0 0 3px rgba(198,168,124,0.1); }
.floating-label {
    position: absolute; left: 1rem; top: 1rem;
    color: var(--text-dim); font-size: 0.85rem;
    pointer-events: none; transition: 0.2s ease all;
    background: transparent; padding: 0 0.25rem;
}
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -0.6rem; font-size: 0.7rem; color: var(--gold); font-weight: 700;
    background: #ffffff;
}
.contact-map-side { position: relative; min-height: 350px; }
.contact-map-side iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
.map-card-overlay {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    background: rgba(8,12,18,0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    max-width: 220px;
    display: none;
}
@media (min-width: 768px) { .map-card-overlay { display: block; } }
.map-card-overlay p:first-child { font-size: 0.6rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 0.25rem; }
.map-card-overlay p:last-child { font-size: 0.8rem; color: rgba(255,255,255,0.7) !important; margin-top: 0.2rem; }
.map-card-overlay h4 { font-weight: 700; color: #ffffff !important; }

.btn-whatsapp {
    width: 100%;
    padding: 1.1rem;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: none;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
    margin-top: 0.5rem;
}
.btn-whatsapp:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.btn-whatsapp i { font-size: 1.2rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-gold);
    padding: 5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}
.footer-widgets {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
}
@media (min-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}
.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.85rem;
}
.footer-col p i {
    color: var(--gold);
    margin-right: 0.5rem;
    width: 16px;
}
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    background: var(--surface);
}
.social-btn:hover {
    background: var(--gold);
    color: #ffffff !important;
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    position: relative;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0;
}
.powered-by {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0;
}
.powered-by a {
    color: var(--gold);
    font-weight: 700;
    transition: var(--transition-fast);
}
.powered-by a:hover {
    color: var(--gold-bright);
}
.admin-footer-trigger {
    background: none; border: none;
    color: var(--text-dim); font-size: 0.75rem;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.5rem;
}
.admin-footer-trigger:hover { color: var(--gold); }

/* ===================================================================
   TOAST
   =================================================================== */
.toast {
    visibility: hidden;
    min-width: 240px;
    background: var(--bg-3);
    border: 1px solid var(--border-gold);
    color: var(--text);
    text-align: center;
    border-radius: var(--radius-full);
    padding: 0.8rem 1.5rem;
    position: fixed;
    z-index: 9999;
    left: 50%; bottom: 2rem;
    transform: translateX(-50%) translateY(10px);
    opacity: 0; transition: opacity 0.4s, transform 0.4s;
    box-shadow: var(--shadow-gold);
    font-weight: 600; font-size: 0.85rem;
}
.toast.show { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================================================================
   MODAL
   =================================================================== */
.modal {
    position: fixed; inset: 0; z-index: 100;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
    opacity: 0; visibility: hidden; transition: var(--transition);
    padding: 1rem;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--bg-3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 440px; width: 100%;
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.modal.open .modal-box { transform: scale(1) translateY(0); }
.modal-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(198,168,124,0.1);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--gold); font-size: 1.5rem;
}
.modal-box h3 { font-family: 'Public Sans', sans-serif; font-weight: 900; color: var(--text); margin-bottom: 0.5rem; font-size: 1.3rem; }
.modal-box p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.modal-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    text-align: center;
    outline: none;
    transition: var(--transition-fast);
    margin-bottom: 0.75rem;
}
.modal-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,168,124,0.1); }
.modal-error { color: var(--red); font-size: 0.8rem; margin-bottom: 0.75rem; }
.modal-actions { display: flex; gap: 0.75rem; }
.btn-modal-ghost {
    flex: 1; padding: 0.85rem; border-radius: var(--radius-md);
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-family: 'Manrope', sans-serif;
    font-weight: 600; cursor: none; transition: var(--transition-fast);
}
.btn-modal-ghost:hover { background: var(--surface-hover); color: var(--text); }
.btn-modal-primary {
    flex: 1; padding: 0.85rem; border-radius: var(--radius-md);
    background: var(--gold); border: none; color: var(--bg);
    font-family: 'Manrope', sans-serif; font-weight: 800;
    cursor: none; transition: var(--transition-bounce);
}
.btn-modal-primary:hover { background: var(--gold-bright); transform: scale(1.02); }
.modal-hint { font-size: 0.72rem; color: var(--text-dim); margin-top: 1rem; }
.modal-hint code { background: var(--surface); padding: 0.1rem 0.4rem; border-radius: 4px; color: var(--gold); }

/* ===================================================================
   ADMIN DRAWER
   =================================================================== */
.admin-drawer {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.admin-drawer.open { opacity: 1; visibility: visible; }
.admin-panel {
    position: absolute; top: 0; right: -100%;
    width: 100%; max-width: 540px; height: 100%;
    background: var(--bg-2);
    border-left: 1px solid var(--border-gold);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; overflow: hidden;
}
.admin-drawer.open .admin-panel { right: 0; }
.admin-header {
    background: var(--bg-3);
    border-bottom: 1px solid var(--border-gold);
    padding: 1.5rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
}
.admin-header h2 {
    font-family: 'Public Sans', sans-serif;
    font-weight: 800; font-size: 1.1rem;
    color: var(--text);
    display: flex; align-items: center; gap: 0.6rem;
}
.admin-header h2 i { color: var(--gold); }
.admin-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text-muted); cursor: none; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.admin-close:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: var(--red); transform: rotate(90deg); }
.admin-body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.admin-body::-webkit-scrollbar { width: 4px; }
.admin-body::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 4px; }
.admin-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem; padding: 0.75rem 1rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.admin-toolbar strong { color: var(--text); font-size: 0.9rem; }
.count-badge { background: var(--gold); color: var(--bg); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }

/* Sheet config section */
.sheet-config {
    background: rgba(198,168,124,0.05);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.sheet-config h4 { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.sheet-config p { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1rem; }
.sheet-input-row { display: flex; gap: 0.5rem; }
.sheet-input {
    flex: 1; padding: 0.65rem 0.9rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text);
    font-family: 'Manrope', sans-serif; font-size: 0.8rem; outline: none;
    transition: var(--transition-fast);
}
.sheet-input:focus { border-color: var(--gold); }
.btn-sync {
    padding: 0.65rem 1rem;
    background: var(--gold); color: var(--bg); border: none;
    border-radius: var(--radius-md); font-weight: 700; font-size: 0.75rem;
    cursor: none; transition: var(--transition-bounce);
    white-space: nowrap; display: flex; align-items: center; gap: 0.4rem;
}
.btn-sync:hover { background: var(--gold-bright); transform: scale(1.03); }

.admin-product-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
    transition: var(--transition-fast);
}
.admin-product-item:hover { border-color: var(--border-gold); }
.admin-thumb { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-3); flex-shrink: 0; border: 1px solid var(--border); }
.admin-product-info { flex: 1; min-width: 0; }
.admin-product-name { font-weight: 700; color: var(--text); font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.15rem; }
.admin-product-meta { font-size: 0.72rem; color: var(--text-muted); }
.admin-product-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }
.icon-btn {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); cursor: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; transition: var(--transition-fast); background: transparent;
}
.icon-btn.edit { color: var(--text-muted); }
.icon-btn.edit:hover { background: rgba(198,168,124,0.1); border-color: var(--gold); color: var(--gold); }
.icon-btn.delete { color: var(--text-muted); }
.icon-btn.delete:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: var(--red); }

.admin-empty { text-align: center; padding: 2.5rem 1rem; color: var(--text-dim); font-style: italic; font-size: 0.85rem; }
.admin-form-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.admin-form-section h3 { font-family: 'Public Sans', sans-serif; font-weight: 800; color: var(--text); margin-bottom: 1rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.08em; }
.form-input {
    width: 100%; padding: 0.7rem 0.9rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text);
    font-family: 'Manrope', sans-serif; font-size: 0.85rem; outline: none;
    transition: var(--transition-fast);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,168,124,0.1); }
.form-input option { background: var(--bg-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-hint { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.25rem; }
.form-actions { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.btn-form-cancel {
    padding: 0.75rem 1rem; border-radius: var(--radius-md);
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-family: 'Manrope', sans-serif;
    font-weight: 600; font-size: 0.82rem; cursor: none; transition: var(--transition-fast);
}
.btn-form-cancel:hover { background: var(--surface-hover); }
.btn-form-submit {
    flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius-md);
    background: var(--gold); border: none; color: var(--bg);
    font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.82rem;
    cursor: none; transition: var(--transition-bounce);
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.btn-form-submit:hover { background: var(--gold-bright); }

.backup-section { margin-top: 1.5rem; padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.backup-section h3 { font-family: 'Public Sans', sans-serif; font-weight: 800; color: var(--text); font-size: 0.9rem; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem; }
.backup-section h3 i { color: var(--gold); }
.backup-section p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.backup-buttons { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.backup-btn {
    padding: 0.5rem 0.9rem; border-radius: var(--radius-md);
    background: var(--surface-hover); border: 1px solid var(--border);
    color: var(--text-muted); font-weight: 700; font-size: 0.75rem;
    cursor: none; transition: var(--transition-fast);
    display: flex; align-items: center; gap: 0.35rem;
}
.backup-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,168,124,0.08); }
.backup-btn.danger:hover { border-color: rgba(239,68,68,0.5); color: var(--red); background: rgba(239,68,68,0.08); }

/* ===================================================================
   IMPROVED PRODUCT SECTION — Category Banner + Sidebar + Dropdown
   =================================================================== */

/* ----- SECTION WRAPPER ----- */
.shop-section-new {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

/* ----- CATEGORY HERO BANNER ----- */
.cat-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
}
@media (min-width: 1024px) { .cat-banner { height: 320px; padding-left: 5rem; } }

.cat-banner-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease, transform 0.6s ease;
    transform: scale(1.03);
}
.cat-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        100deg,
        rgba(249,248,243,0.96) 0%,
        rgba(249,248,243,0.82) 45%,
        rgba(249,248,243,0.2) 100%
    );
}
.cat-banner-content {
    position: relative; z-index: 2;
    max-width: 560px;
}
.cat-banner-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin: 0.4rem 0 0.75rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.cat-banner-title.animating { opacity: 0; transform: translateY(8px); }
.cat-banner-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 400px;
    transition: opacity 0.35s ease;
}

/* ----- CATEGORY TABS (inside banner) ----- */
.cat-tabs {
    position: absolute;
    bottom: 0; left: 0; right: 0; z-index: 3;
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    flex: 0 0 auto;
    padding: 0.9rem 1.6rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: none;
    border-right: 1px solid var(--border);
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.cat-tab::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.cat-tab:hover { color: var(--text); background: rgba(198,168,124,0.07); }
.cat-tab:hover::after { transform: scaleX(1); }
.cat-tab.active {
    background: rgba(198,168,124,0.12);
    color: var(--gold);
}
.cat-tab.active::after { transform: scaleX(1); }
.cat-tab i { font-size: 0.85rem; }

/* ----- SHOP BODY (sidebar + main) ----- */
.shop-body {
    display: flex;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    gap: 2.5rem;
}
@media (min-width: 1024px) { .shop-body { padding: 3rem 3rem 5rem; } }

/* ----- LEFT SIDEBAR ----- */
.shop-sidebar {
    display: none;
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}
@media (min-width: 900px) { .shop-sidebar { display: block; } }

.sidebar-inner {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.sidebar-block {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.sidebar-block:last-child { border-bottom: none; }
.sidebar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-title i { color: var(--gold); font-size: 0.75rem; }

/* ----- CUSTOM CATEGORY DROPDOWN ----- */
.cat-dropdown { position: relative; }
.cat-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: none;
    transition: var(--transition);
    text-align: left;
}
.cat-dropdown-trigger:hover {
    border-color: var(--border-gold);
    background: rgba(198,168,124,0.05);
}
.cat-dropdown-trigger.open {
    border-color: var(--gold);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: rgba(198,168,124,0.06);
}
.cat-dd-icon {
    width: 30px; height: 30px;
    border-radius: var(--radius-sm);
    background: rgba(198,168,124,0.1);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.cat-dd-label {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}
.cat-dd-arrow {
    font-size: 0.7rem;
    color: var(--text-dim);
    transition: transform 0.3s ease;
}
.cat-dropdown-trigger.open .cat-dd-arrow { transform: rotate(180deg); }

.cat-dropdown-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-3);
    border: 1px solid var(--gold);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    list-style: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(14,27,51,0.1), var(--shadow-gold);
}
.cat-dropdown-menu.open {
    max-height: 300px;
    opacity: 1;
}
.cat-dd-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.cat-dd-item:last-child { border-bottom: none; }
.cat-dd-item i { color: var(--text-dim); font-size: 0.8rem; width: 14px; transition: color 0.2s; }
.cat-dd-item:hover { background: rgba(198,168,124,0.06); color: var(--text); }
.cat-dd-item:hover i { color: var(--gold); }
.cat-dd-item.active { background: rgba(198,168,124,0.1); color: var(--gold); }
.cat-dd-item.active i { color: var(--gold); }
.cat-dd-item.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: 0 2px 2px 0;
}
.cat-dd-count {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    background: var(--surface);
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

/* ----- SIDEBAR RADIO SORT ----- */
.sidebar-radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-radio {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: none;
    transition: background 0.2s;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
}
.sidebar-radio:hover { background: var(--surface); color: var(--text); }
.sidebar-radio input[type="radio"] { display: none; }
.radio-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-fast);
}
.radio-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.sidebar-radio:has(input:checked) .radio-dot { border-color: var(--gold); }
.sidebar-radio:has(input:checked) .radio-dot::after { transform: translate(-50%,-50%) scale(1); }
.sidebar-radio:has(input:checked) { color: var(--gold); }

/* ----- SIDEBAR STATS ----- */
.sidebar-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
.sidebar-stat { flex: 1; }
.sidebar-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(198,168,124,0.4);
}
.sidebar-stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 0.25rem;
    display: block;
}
.sidebar-stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
}

/* ----- SIDEBAR WA CTA ----- */
.sidebar-wa {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.03));
    border-top: 1px solid rgba(37,211,102,0.15);
    text-decoration: none;
    transition: var(--transition);
}
.sidebar-wa:hover { background: linear-gradient(135deg, rgba(37,211,102,0.14), rgba(37,211,102,0.06)); }
.sidebar-wa .fab { font-size: 1.6rem; color: #25D366; flex-shrink: 0; }
.sidebar-wa strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.sidebar-wa span { font-size: 0.72rem; color: var(--text-muted); }

/* ----- SHOP MAIN ----- */
.shop-main { flex: 1; min-width: 0; }

/* ----- TOPBAR (search + mobile dropdown + count) ----- */
.shop-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}
.search-wrap-new {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.search-wrap-new i {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 0.8rem;
    pointer-events: none;
}
.search-wrap-new input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
}
.search-wrap-new input::placeholder { color: var(--text-dim); }
.search-wrap-new input:focus {
    border-color: var(--gold);
    background: rgba(198,168,124,0.04);
    box-shadow: 0 0 0 3px rgba(198,168,124,0.1);
}

/* ----- MOBILE CATEGORY DROPDOWN ----- */
.mobile-cat-dropdown {
    position: relative;
    display: block;
}
@media (min-width: 900px) { .mobile-cat-dropdown { display: none; } }

.mobile-cat-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: none;
    white-space: nowrap;
    transition: var(--transition-fast);
}
.mobile-cat-trigger:hover { border-color: var(--gold); color: var(--gold); }
.mobile-cat-trigger i { color: var(--gold); font-size: 0.8rem; }
.mobile-cat-trigger .fa-chevron-down { color: var(--text-dim); font-size: 0.65rem; transition: transform 0.3s; }
.mobile-cat-trigger.open .fa-chevron-down { transform: rotate(180deg); }

.mobile-cat-menu {
    position: absolute;
    top: calc(100% + 6px); left: 0;
    background: var(--bg-3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    list-style: none;
    min-width: 180px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    z-index: 100;
    box-shadow: var(--shadow-gold);
}
.mobile-cat-menu.open { max-height: 250px; opacity: 1; }
.mobile-cat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: none;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid var(--border);
}
.mobile-cat-item:last-child { border-bottom: none; }
.mobile-cat-item i { color: var(--text-dim); font-size: 0.75rem; }
.mobile-cat-item:hover { background: rgba(198,168,124,0.06); color: var(--gold); }
.mobile-cat-item.active { background: rgba(198,168,124,0.1); color: var(--gold); }
.mobile-cat-item.active i { color: var(--gold); }

/* ----- PRODUCT COUNT BADGE ----- */
.topbar-right { margin-left: auto; }
.product-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}
.product-count-badge i { color: var(--gold); }
#result-count { color: var(--gold); font-family: 'Cinzel', serif; }

/* ----- CATEGORY BANNER IMAGES ----- */
.cat-banner-bg[data-cat="all"] {
    background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1600');
}
.cat-banner-bg[data-cat="Living"] {
    background-image: url('https://www.bhg.com/thmb/SKWOKceWcWNMmuriR8DV0jrrJlY=/2000x0/filters:no_upscale():strip_icc()/Joyelle_210602_010-1_preview1-dedaf69a2cb341d8962c62518b76c158.jpg');
}
.cat-banner-bg[data-cat="Bedroom"] {
    background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?auto=format&fit=crop&w=1600');
}
.cat-banner-bg[data-cat="Office"] {
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1600');
}

/* Product grid inside shop-main fills its own width */
.shop-main #product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 600px) { .shop-main #product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .shop-main #product-grid { grid-template-columns: repeat(3, 1fr); } }

/* No results inside shop-main */
.shop-main #no-results {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-dim);
    grid-column: 1/-1;
}
.shop-main #no-results i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--text-dim);
}

/* Override old grid rule to avoid conflict */
#product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 600px)  { #product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { #product-grid { grid-template-columns: repeat(3, 1fr); } }


/* ===================================================================
   ALIGNMENT FIXES & POSITION CORRECTIONS
   =================================================================== */

/* ---- NAV: tighter centering on small screens ---- */
.nav-inner { gap: 1rem; }
@media (max-width: 767px) {
    .nav-inner { padding: 0 1rem; }
    .nav-brand { font-size: 0.9rem; }
}

/* ---- HERO: vertical rhythm fix, ensure content doesn't overflow ---- */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 5rem;
    justify-content: center;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.hero-tagline { margin-bottom: 1rem; }
.hero-h1 { margin-bottom: 0.75rem; }
.hero-subtitle { margin-bottom: 2rem; }
.hero-actions { margin-bottom: 2.5rem; }

/* ---- HERO logo card: fix vertical stacking on mobile ---- */
@media (max-width: 767px) {
    .hero-logo-card {
        padding: 1.75rem 2rem;
        gap: 1rem;
        flex-direction: column;
    }
    .hero-logo-card img { height: 70px; }
}

/* ---- MARQUEE: ensure no overflow gap ---- */
.marquee-strip { position: relative; z-index: 1; }

/* ---- BENTO GRID: fix single column on mobile ---- */
@media (max-width: 767px) {
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .bento-col-2 { grid-column: span 2; }
    .bento-item { min-height: 160px; }
}

/* ---- PRODUCT CARDS: uniform height, proper flex ---- */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.5rem;
}
.product-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: auto;
}
.product-name { flex: 1; }
.product-price { flex-shrink: 0; }
.product-media { height: 260px; flex-shrink: 0; }

/* ---- REVIEW CARDS: uniform min-height ---- */
.review-card { min-height: 280px; display: flex; flex-direction: column; }
.review-body { display: flex; flex-direction: column; flex: 1; }
.review-text { flex: 1; }

/* ---- CONTACT CARDS: fix icon centering ---- */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-card h3 { margin-bottom: 0.5rem; }

/* ---- GALLERY GRID: fix missing height on mobile ---- */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-main { grid-column: span 2; height: 220px; }
    .gallery-item { height: 160px; }
}

/* ---- ABOUT GRID: fix image offset alignment ---- */
@media (max-width: 767px) {
    .about-images { grid-template-columns: 1fr; }
    .about-img:first-child { margin-top: 0; }
    .about-img { height: 220px; }
}

/* ---- STATS BAR: vertical dividers only on desktop ---- */
@media (max-width: 767px) {
    .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); padding-top: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---- CONTACT FORM PANEL: fix min-height on map ---- */
.contact-map-side { min-height: 400px; }
@media (max-width: 767px) {
    .contact-form-side { padding: 2rem 1.5rem; }
    .contact-map-side { min-height: 280px; }
}

/* ---- FOOTER: do NOT override luxury footer padding ---- */

/* ---- SHOP BODY: min-height so sidebar doesn't collapse ---- */
.shop-body { min-height: 60vh; }
@media (max-width: 899px) {
    .shop-body { padding: 1.5rem 1rem 4rem; }
}

/* ---- CAT BANNER: mobile text sizing ---- */
@media (max-width: 640px) {
    .cat-banner { height: 280px; padding: 1.5rem 1rem; }
    .cat-banner-title { font-size: 1.6rem; }
    .cat-banner-sub { font-size: 0.8rem; }
    .cat-tab { padding: 0.75rem 1rem; font-size: 0.65rem; }
}

/* ---- SIDEBAR: never overflow page ---- */
.sidebar-inner { max-width: 280px; }
@media (min-width: 900px) and (max-width: 1100px) {
    .shop-sidebar { width: 240px; }
}


/* ===================================================================
   3D MOTION GRAPHICS — NEW EFFECTS
   =================================================================== */

/* ---------- 1. FLOATING 3D ORBS (hero background) ---------- */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
    animation: orb-float linear infinite;
    will-change: transform;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(198,168,124,0.07) 0%, transparent 70%);
    top: -10%; left: -10%;
    animation-duration: 18s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(60,100,200,0.05) 0%, transparent 70%);
    bottom: 5%; right: -5%;
    animation-duration: 22s;
    animation-direction: reverse;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(198,168,124,0.05) 0%, transparent 70%);
    top: 40%; left: 60%;
    animation-duration: 14s;
}
@keyframes orb-float {
    0%   { transform: translate(0px, 0px) scale(1); }
    25%  { transform: translate(30px, -20px) scale(1.04); }
    50%  { transform: translate(-15px, 35px) scale(0.97); }
    75%  { transform: translate(25px, 20px) scale(1.02); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* ---------- 2. HERO LOGO CARD: static, no levitate ---------- */
.hero-logo-card {
    animation: none;
}

/* ---------- 3. HERO H1: metallic shimmer sweep ---------- */
.hero-h1 {
    background: linear-gradient(
        110deg,
        var(--text) 0%,
        var(--text) 40%,
        rgba(198,168,124,0.8) 50%,
        var(--text) 60%,
        var(--text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 5s linear infinite 2s;
}
@keyframes shimmer-text {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
/* Keep em (subtitle) gold without clip artifact */
.hero-h1 em {
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
}

/* ---------- 4. BRAND BADGES: 3D rotate on hover ---------- */
.brand-badge {
    transform-style: preserve-3d;
    transition: var(--transition-bounce);
}
.brand-badge:hover {
    transform: translateY(-3px) rotateX(12deg) rotateY(6deg);
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198,168,124,0.1);
    box-shadow: 0 8px 20px rgba(198,168,124,0.2), 0 2px 0 rgba(198,168,124,0.3);
}

/* ---------- 5. SECTION HEADINGS: slide-in underline ---------- */
.section-h2 {
    position: relative;
    display: inline-block;
}
.section-h2::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: var(--radius-full);
    transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
[data-aos].aos-animate .section-h2::after,
.section-h2:not(.no-line)::after { width: 60%; }

/* ---------- 6. BENTO GRID: 3D perspective tilt on hover ---------- */
.bento-item {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.bento-item:hover {
    transform: translateY(-8px) perspective(800px) rotateX(3deg);
}
.bento-overlay {
    transform: translateZ(20px);
    transition: transform 0.5s ease, opacity 0.5s;
}

/* ---------- 7. PRODUCT CARD: glow ring pulse on hover ---------- */
.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(198,168,124,0.3), transparent, rgba(198,168,124,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.product-card:hover::before { opacity: 1; }

/* Shine sweep on card hover */
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.04) 50%,
        transparent 100%
    );
    transform: skewX(-15deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}
.product-card:hover::after { left: 125%; }

/* ---------- 8. REVIEW CARDS: 3D depth tilt ---------- */
.review-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s ease, border-color 0.3s;
}
.review-card:hover {
    transform: perspective(900px) translateY(-8px) rotateX(4deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border-gold), var(--shadow-gold);
}
.review-quote { transform: translateZ(10px); }

/* ---------- 9. CONTACT CARDS: 3D icon pop ---------- */
.contact-icon {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, color 0.3s;
}
.contact-card:hover .contact-icon {
    transform: scale(1.15) rotateY(15deg) rotateX(-5deg);
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(198,168,124,0.4);
}

/* ---------- 10. GALLERY ITEMS: 3D zoom with depth ---------- */
.gallery-item {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s, border-color 0.3s;
}
.gallery-item:hover {
    transform: perspective(800px) translateY(-6px) rotateX(3deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--shadow-gold);
    border-color: var(--border-gold);
}
.gallery-item img { transform-origin: center; }
.gallery-item:hover img { transform: scale(1.1); opacity: 0.95; }

/* ---------- 11. ABOUT IMAGES: stagger tilt ---------- */
.about-img {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s, border-color 0.3s;
}
.about-img:nth-child(1):hover { transform: perspective(800px) translateY(-8px) rotateX(4deg) rotateZ(-1deg); }
.about-img:nth-child(2):hover { transform: perspective(800px) translateY(-8px) rotateX(4deg) rotateZ(1deg); }
.about-img:hover { border-color: var(--border-gold); box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--shadow-gold); }
.about-img img { transition: opacity 0.4s, transform 0.5s; }
.about-img:hover img { opacity: 0.9; transform: scale(1.05); }

/* ---------- 12. STATS BAR: number glow pulse ---------- */
.stat-num {
    animation: stat-pulse 3s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-num { animation-delay: 0.5s; }
.stat-item:nth-child(3) .stat-num { animation-delay: 1s; }
.stat-item:nth-child(4) .stat-num { animation-delay: 1.5s; }
@keyframes stat-pulse {
    0%, 100% { text-shadow: var(--glow-gold); }
    50%       { text-shadow: 0 0 20px rgba(198,168,124,0.8), 0 0 60px rgba(198,168,124,0.3); }
}

/* ---------- 13. MARQUEE: 3D depth perspective ---------- */
.marquee-strip {
    perspective: 800px;
}
.marquee-track {
    transform: rotateX(2deg);
}

/* ---------- 14. SCROLL INDICATOR: bounce animation ---------- */
.scroll-indicator { gap: 0.3rem; }
.scroll-mouse { animation: indicator-pulse 3s ease-in-out infinite; }
@keyframes indicator-pulse {
    0%, 100% { border-color: rgba(198,168,124,0.3); }
    50%       { border-color: rgba(198,168,124,0.7); box-shadow: 0 0 10px rgba(198,168,124,0.2); }
}

/* ---------- 15. FOOTER: admin trigger 3D spin ---------- */
.admin-footer-trigger:hover {
    color: var(--gold);
    transform: rotate(360deg) scale(1.2);
    transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1), color 0.3s;
}

/* ---------- 16. FLOATING PARTICLES in Shop Banner ---------- */
.cat-banner-particles {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.banner-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(198,168,124,0.4);
    animation: particle-rise linear infinite;
}
@keyframes particle-rise {
    0%   { transform: translateY(100%) scale(0.5); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.4; }
    100% { transform: translateY(-120%) scale(1.5); opacity: 0; }
}

/* ---------- 17. SECTION TRANSITIONS: 3D slide-in from perspective ---------- */
[data-aos="fade-up"] {
    transform: perspective(1000px) translateY(40px) rotateX(4deg);
}
[data-aos="fade-up"].aos-animate {
    transform: perspective(1000px) translateY(0) rotateX(0deg);
}
[data-aos="fade-right"] {
    transform: perspective(1000px) translateX(-40px) rotateY(-4deg);
}
[data-aos="fade-right"].aos-animate {
    transform: perspective(1000px) translateX(0) rotateY(0deg);
}
[data-aos="fade-left"] {
    transform: perspective(1000px) translateX(40px) rotateY(4deg);
}
[data-aos="fade-left"].aos-animate {
    transform: perspective(1000px) translateX(0) rotateY(0deg);
}

/* ---------- 18. WA FLOAT BUTTON: 3D bounce ---------- */
.wa-float {
    animation: wa-pulse 4s ease-in-out infinite;
    transform-style: preserve-3d;
}
.wa-float:hover { animation-play-state: paused; }
@keyframes wa-pulse {
    0%, 100% { transform: translateY(0px) scale(1); box-shadow: 0 10px 30px rgba(37,211,102,0.35); }
    50%       { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 50px rgba(37,211,102,0.45); }
}

/* ---------- 19. PRODUCT CARD image: subtle Ken Burns ---------- */
.product-media img {
    animation: ken-burns 12s ease-in-out infinite alternate;
}
@keyframes ken-burns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-1%, -1%); }
}
.product-card:hover .product-media img {
    animation-play-state: paused;
    transform: scale(1.08);
}



/* ---------- 21. CAT BANNER: depth parallax overlay ---------- */
.cat-banner-bg {
    transform-origin: center;
    transition: background-image 0.5s ease, transform 0.1s linear;
}

/* ---------- 22. SIDEBAR DROPDOWN: entry animation ---------- */
.cat-dropdown-menu.open {
    animation: dropdown-open 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes dropdown-open {
    from { transform: scaleY(0.8) translateY(-10px); opacity: 0; }
    to   { transform: scaleY(1) translateY(0); opacity: 1; }
}
.cat-dropdown-menu { transform-origin: top center; }

/* ---------- 23. SCROLL-TO-TOP: pulsing ring ---------- */
.scroll-top.visible {
    animation: scroll-btn-pulse 3s ease-in-out infinite;
}
@keyframes scroll-btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(198,168,124,0.3), var(--shadow-md); }
    50%       { box-shadow: 0 0 0 8px rgba(198,168,124,0), var(--shadow-md); }
}

/* ===== HIDE CUSTOM CURSOR & RESTORE SYSTEM CURSOR ===== */
#cursor-dot, #cursor-outline, .cursor-dot, .cursor-outline {
    display: none !important;
}

body, a, button, input, select, textarea, [onclick], .interactive, .product-card, .order-btn, .gallery-item, .contact-card, .filter-btn, .cat-tab, .cat-dd-item, .mobile-cat-trigger, .mobile-cat-item, .backup-btn {
    cursor: auto !important;
}

a, button, select, input[type="submit"], input[type="button"], .interactive, [onclick], .accordion-btn, .bento-item, .cat-tab, .filter-btn, .cat-dropdown-trigger, .mobile-cat-trigger, .mobile-menu-btn, .wa-float, .scroll-top {
    cursor: pointer !important;
}

/* ===== ROYAL VISUAL ENHANCEMENTS ===== */

/* Scrolled top navbar gold accent line */
#main-nav.scrolled {
    background: rgba(251, 251, 249, 0.95) !important;
    border-bottom: 1px solid var(--border-gold);
    border-top: 3px solid var(--gold) !important;
    box-shadow: 0 10px 40px rgba(14, 27, 51, 0.08);
}

/* Brand gold glow shadow */
.nav-brand {
    text-shadow: 0 0 15px rgba(184, 144, 71, 0.25);
    font-weight: 800;
}

/* Fading gold border separator lines between sections */
section {
    position: relative;
}
section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Royal white background radial glows for all sections */
.hero-section, .shop-section-new, .reviews-section, .gallery-section, .about-section, .contact-section {
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 100% 50%, rgba(184, 144, 71, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    background-size: cover;
}

/* Luxury card glows and highlights */
.product-card, .review-card, .contact-card, .bento-item, .stats-bar, .contact-form-panel, .hero-logo-card {
    border: 1px solid rgba(184, 144, 71, 0.22) !important;
    box-shadow: 0 10px 40px rgba(14, 27, 51, 0.06), var(--shadow-gold) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Active floating label background fix to match new royal white card backgrounds */
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    background: #ffffff !important; /* Perfect match for light card color */
    color: var(--gold) !important;
    padding: 0 0.5rem;
    border-radius: 4px;
}

/* ===== CONTACT SECTION ALIGNMENT & POSITION FIXES ===== */

/* Make section symmetric and center-aligned */
.contact-section {
    padding: 7.5rem 0;
}

.contact-inner {
    max-width: 1200px; /* Centered narrow elegant container */
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

.contact-header {
    width: 100%;
    max-width: 600px;
    margin-bottom: 0;
    text-align: center;
}

/* Align contact cards symmetrically in a centered container */
.contact-cards {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 0;
    gap: 1.5rem;
}

.contact-card {
    padding: 2.2rem 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Ensure contact form panel holds perfect positioning and height alignment */
.contact-form-panel {
    width: 100%;
    max-width: 1000px;
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-form-panel {
        grid-template-columns: 1.1fr 0.9fr; /* Slightly wider form, snug map layout */
    }
}

.contact-form-side {
    padding: clamp(1.5rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-side {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.contact-map-side iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0; left: 0;
    filter: grayscale(0.15) contrast(1.05); /* Warm light styled map */
}



/* =====================================================================
   COMPREHENSIVE RESPONSIVE & LIGHT-THEME FIX
   ===================================================================== */

/* --- NAV: always show subtle background on white hero --- */
#main-nav {
    background: rgba(249, 248, 243, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
#main-nav.scrolled {
    background: rgba(249, 248, 243, 0.97) !important;
    border-top: 3px solid var(--gold) !important;
    border-bottom: 1px solid var(--border-gold) !important;
    box-shadow: 0 4px 24px rgba(14,27,51,0.07) !important;
}

/* --- HERO: readable text over light bg --- */
.hero-tagline { color: var(--gold); }
.hero-subtitle { color: var(--text-muted); }

/* --- PRODUCT CARD: light image container --- */
.product-media img { opacity: 1; }
.bento-img { opacity: 0.88; }

/* --- FORM INPUTS: white with visible border --- */
.floating-input {
    background: #ffffff !important;
    border: 1.5px solid rgba(14,27,51,0.12) !important;
    color: var(--text) !important;
}
.floating-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(184,144,71,0.12) !important;
}
.floating-label { color: var(--text-muted); }

/* --- SEARCH INPUTS: white bg --- */
.search-wrap-new input, #searchInput {
    background: #ffffff !important;
    border: 1.5px solid rgba(14,27,51,0.12) !important;
    color: var(--text) !important;
}
.search-wrap-new input::placeholder, #searchInput::placeholder { color: var(--text-dim); }

/* --- SIDEBAR: glass white card --- */
.sidebar-inner {
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid var(--border-gold) !important;
    box-shadow: 0 8px 32px rgba(14,27,51,0.06);
}

/* --- DROPDOWNS: white bg --- */
.cat-dropdown-menu, .mobile-cat-menu {
    background: #ffffff !important;
    box-shadow: 0 16px 40px rgba(14,27,51,0.08), var(--shadow-gold) !important;
}

/* --- ACCORDION: light --- */
.accordion-item { background: rgba(255,255,255,0.8); }
.accordion-btn { background: rgba(255,255,255,0.8); color: var(--text); }
.accordion-btn:hover { background: rgba(249,248,243,1); }
.accordion-body { background: rgba(255,255,255,0.95); color: var(--text-muted); }

/* --- GALLERY & ABOUT IMAGES: brighter --- */
.gallery-item img, .about-img img { opacity: 0.88; }
.gallery-item:hover img, .about-img:hover img { opacity: 1; }

/* --- MARQUEE: readable --- */
.marquee-strip { background: var(--gold); }
.marquee-track { color: #fff; }

/* ===================================================
   FULL RESPONSIVE OVERHAUL
   =================================================== */

html, body { max-width: 100%; overflow-x: hidden; }
.hero-section, .marquee-strip, .shop-section-new, .reviews-section,
.gallery-section, .about-section, .contact-section, footer { overflow-x: hidden; }

/* ---- XS: < 480px ---- */
@media (max-width: 479px) {
    .nav-inner { padding: 0 0.85rem; gap: 0.5rem; }
    .nav-brand { font-size: 0.82rem; letter-spacing: 0; }
    .btn-nav-primary, .btn-nav-outline { display: none !important; }

    .hero-section { padding: 6rem 1rem 3.5rem; }
    .hero-logo-card { padding: 1.25rem; gap: 0.75rem; flex-direction: column; }
    .hero-logo-card img { height: 56px; }
    .hero-logo-divider { display: none; }
    .hero-tagline { font-size: 0.6rem; letter-spacing: 0.25em; }
    .hero-h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
    .hero-subtitle { font-size: 0.85rem; padding: 0 0.25rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; align-items: stretch; }
    .btn-primary-3d, .btn-secondary-3d { text-align: center; padding: 0.9rem 1.5rem; }
    .brands-grid { gap: 0.4rem; }
    .brand-badge { font-size: 0.6rem; padding: 0.4rem 0.8rem; }
    .marquee-track { font-size: 0.65rem; }

    .spaces-section { padding: 3.5rem 1rem; }
    .spaces-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .bento-grid { grid-template-columns: 1fr !important; gap: 0.6rem; }
    .bento-col-2 { grid-column: span 1 !important; }
    .bento-row-2 { grid-row: span 1 !important; }
    .bento-item { min-height: 180px; }

    .cat-banner { height: 240px !important; padding: 1rem 0.85rem; }
    .cat-banner-title { font-size: 1.4rem !important; }
    .cat-banner-sub { display: none; }
    .cat-tab { padding: 0.65rem 0.7rem; font-size: 0.58rem; gap: 0.25rem; }
    .cat-tab i { display: none; }
    .shop-body { padding: 1rem 0.75rem 3rem; gap: 0; }
    .shop-topbar { flex-wrap: wrap; gap: 0.5rem; }
    .search-wrap-new { min-width: 130px; }
    .shop-main #product-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-media { height: 220px; }
    .product-name { font-size: 0.95rem; }
    .order-btn { font-size: 0.72rem; padding: 0.75rem 1rem; }

    .reviews-section { padding: 4rem 0; }
    .reviews-inner { padding: 0 1rem; }
    .reviews-header { flex-direction: column; gap: 1rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
    .review-card { min-height: auto; padding: 1.5rem; }

    .gallery-section { padding: 4rem 0; }
    .gallery-inner { padding: 0 1rem; }
    .gallery-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; gap: 0.6rem; }
    .gallery-main { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
    .gallery-item { height: 160px; }

    .about-section { padding: 4rem 0; }
    .about-inner { padding: 0 1rem; }
    .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .about-images { grid-template-columns: 1fr; }
    .about-img { height: 200px; }
    .about-img:first-child { margin-top: 0; }
    .about-quote { font-size: 0.95rem; }
    .stats-bar { padding: 2rem 1rem; margin: 2rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-num { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); padding-top: 1rem; }
    .faq-section { margin: 2rem auto 0; }

    .contact-section { padding: 4rem 0; }
    .contact-inner { padding: 0 1rem; gap: 2rem; }
    .contact-cards { grid-template-columns: 1fr; gap: 0.75rem; }
    .contact-card { padding: 1.5rem 1rem; }
    .contact-form-panel { grid-template-columns: 1fr !important; }
    .contact-form-side { padding: 1.5rem 1rem; }
    .contact-map-side { min-height: 240px; }

    .footer-widgets { grid-template-columns: 1fr !important; gap: 2rem; padding: 3rem 1.25rem 2rem; }
    .footer-bottom { flex-direction: column !important; gap: 0.75rem; text-align: center; padding: 1.5rem 1rem; }

    .wa-float span { display: none; }
    .wa-float { padding: 0.75rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
    .scroll-top { bottom: 1rem; left: 1rem; width: 38px; height: 38px; }
}

/* ---- SM: 480–639px ---- */
@media (min-width: 480px) and (max-width: 639px) {
    .hero-section { padding: 7rem 1.25rem 4rem; }
    .hero-logo-card { padding: 1.5rem 2rem; gap: 1rem; flex-direction: column; }
    .hero-logo-card img { height: 65px; }
    .hero-logo-divider { display: none; }
    .hero-h1 { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-actions { flex-direction: column; gap: 0.75rem; align-items: center; }

    .spaces-section { padding: 4rem 1.25rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .bento-col-2 { grid-column: span 2; }
    .bento-item { min-height: 160px; }

    .shop-main #product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-main { grid-column: span 2; height: 200px; }
    .gallery-item { height: 150px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr !important; }
    .about-images { grid-template-columns: 1fr 1fr; }
    .about-img { height: 200px; }
    .about-img:first-child { margin-top: 0; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form-panel { grid-template-columns: 1fr !important; }
    .footer-widgets { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .footer-bottom { flex-direction: column !important; text-align: center; }
}

/* ---- MD: 640–767px ---- */
@media (min-width: 640px) and (max-width: 767px) {
    .hero-h1 { font-size: clamp(2.4rem, 6vw, 3.5rem); }
    .hero-logo-card { flex-direction: row; padding: 1.75rem 2.5rem; gap: 2rem; }
    .hero-logo-card img { height: 75px; }
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .bento-col-2 { grid-column: span 2; }
    .bento-item { min-height: 170px; }
    .shop-main #product-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form-panel { grid-template-columns: 1fr !important; }
    .footer-widgets { grid-template-columns: 1fr 1fr !important; }
}

/* ---- Shared mobile section spacing ---- */
@media (max-width: 767px) {
    .reviews-section, .gallery-section, .about-section, .contact-section { padding: 4.5rem 0; }
    .section-h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .reviews-header { flex-direction: column; gap: 1.25rem; }
    .google-rating { align-self: flex-start; }
}

/* Center-aligned section underlines for centered headers */
.contact-header .section-h2,
.gallery-header .section-h2 {
    display: inline-block;
}
.contact-header .section-h2::after,
.gallery-header .section-h2::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
}
