/* =========================================
   GEHNA JEWELLERS - SHOP
   ========================================= */

:root {
  --color-white: #ffffff;
  --color-off-white: #FDFAF3;
  --color-navy: #A47C2E; /* Primary brand gold (deep) */
  --color-navy-light: #C9A14A; /* Mid-tone brand gold */
  --color-teal: #9E1B1B; /* Brand deep red accent */
  --color-teal-light: #C62828; /* Accent red */
  --color-teal-glow: rgba(158, 27, 27, 0.15);
  --color-silver: #E8C87A;
  --color-silver-dark: #7C6C50;

  --font-primary: 'Jost', sans-serif;
  --font-secondary: 'Cormorant Garamond', serif;

  --shadow-premium: 0 20px 40px rgba(40, 25, 0, 0.08);
  --shadow-soft: 0 4px 20px rgba(40, 25, 0, 0.05);
  --glass-bg: rgba(253, 250, 243, 0.92);
  --glass-border: 1px solid rgba(201, 161, 74, 0.35);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); background-color: var(--color-off-white); color: var(--color-navy); line-height: 1.6; }

h1, h2, h3, h4 { font-family: var(--font-secondary); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.text-gradient { background: linear-gradient(135deg, var(--color-teal), var(--color-navy)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section { padding: 6rem 0; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.section-subtitle { font-size: 1.1rem; color: var(--color-silver-dark); text-align: center; max-width: 600px; margin: 0 auto 3rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 500; cursor: pointer; transition: var(--transition-smooth); border: none; outline: none; gap: 0.5rem; font-size: 0.95rem; }
.btn-primary { background: var(--color-navy); color: var(--color-white); }
.btn-primary:hover { background: var(--color-teal); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(158, 27, 27, 0.25); }
.btn-secondary { background: var(--color-white); color: var(--color-navy); border: 1px solid var(--color-silver); }
.btn-secondary:hover { border-color: var(--color-teal); color: var(--color-teal); }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.2rem 0; transition: var(--transition-smooth); }
.navbar.scrolled { background: var(--glass-bg); border-bottom: var(--glass-border); padding: 1rem 0; box-shadow: var(--shadow-soft); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: var(--font-secondary); font-size: 1.4rem; font-weight: 700; color: var(--color-navy); display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--color-teal); }
.nav-actions { display: flex; gap: 1rem; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; overflow: hidden; background: #ffffff; }
.hero-bg-slideshow { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-bg-slideshow .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; transform: scale(1.03); }
.hero-bg-slideshow .slide.active { opacity: 1; animation: kenBurns 10s ease-out forwards; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.45) 100%); }
@keyframes kenBurns {
  from { transform: scale(1.03); }
  to { transform: scale(1.12); }
}
.hero-content { position: relative; z-index: 3; max-width: 600px; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; color: var(--color-navy); }
.hero p { font-size: 1.2rem; color: var(--color-navy-light); margin-bottom: 2rem; }
.hero-visual { position: absolute; right: 0; top: 15%; width: 55%; z-index: 3; pointer-events: none; }
.hero-visual img { width: 100%; filter: drop-shadow(-20px 20px 30px rgba(164,124,46,0.12)); }

/* Dual Roles Section */
.dual-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: -80px; position: relative; z-index: 10; padding-bottom: 4rem;}
.role-card { background: white; padding: 3rem; border-radius: 24px; box-shadow: var(--shadow-premium); transition: var(--transition-smooth); border: 1px solid transparent; }
.role-card:hover { transform: translateY(-10px); border-color: var(--color-teal-glow); }
.role-icon { width: 60px; height: 60px; background: #f1f5f9; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--color-teal); }
.role-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.role-card p { color: var(--color-silver-dark); margin-bottom: 2rem; }

/* About Doctor */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; }
.badge-floating { position: absolute; bottom: 2rem; right: -2rem; background: white; padding: 1.5rem; border-radius: 16px; box-shadow: var(--shadow-premium); display: flex; align-items: center; gap: 1rem; }

/* Block Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.product-block { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); display: flex; flex-direction: column; cursor: pointer; border: 1px solid #f1f5f9; }
.product-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-premium); border-color: var(--color-teal); }
.product-img-container { height: 250px; background: linear-gradient(135deg, #f8fafc, #e2e8f0); padding: 2rem; display: flex; justify-content: center; align-items: center; position: relative; }
.product-img-container img { max-width: 100%; max-height: 100%; mix-blend-mode: multiply; transition: var(--transition-smooth); }
.product-block:hover .product-img-container img { transform: scale(1.05); }
.product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--color-navy); color: white; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; }
.product-details { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.8rem; color: var(--color-teal); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; }
.product-title { font-size: 1.25rem; color: var(--color-navy); margin-bottom: 0.5rem; }
.product-rating { display: flex; gap: 0.2rem; color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; }
.product-price { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-navy); margin-top: auto; margin-bottom: 1.5rem; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

/* Location Section */
.location-section { background: #f1f7fc; color: var(--color-navy); border-top: 1px solid var(--color-silver); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.map-container { border-radius: 24px; overflow: hidden; height: 400px; box-shadow: var(--shadow-soft); border: 1px solid var(--color-silver); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.contact-info-card { background: white; padding: 2.5rem; border-radius: 20px; border: 1px solid var(--color-silver); box-shadow: var(--shadow-soft); }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { color: var(--color-teal); font-size: 1.5rem; }

/* Modals */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.75); z-index: 2000; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; width: 90%; max-width: 500px; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-premium); position: relative; max-height: 90vh; overflow-y: auto;}
.close-btn { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-silver-dark); z-index: 10; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-control { width: 100%; padding: 0.8rem; border: 1px solid #cbd5e1; border-radius: 8px; font-family: var(--font-primary); }

/* Product Detail Page Specific */
.product-detail-section { padding-top: 120px; padding-bottom: 6rem; }
.pdp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; }
.pdp-gallery { display: flex; flex-direction: column; gap: 1rem; }
.pdp-main-img { background: #f8fafc; border-radius: 24px; padding: 3rem; display: flex; justify-content: center; height: 500px; border: 1px solid #e2e8f0;}
.pdp-main-img img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pdp-thumb { background: #f8fafc; border-radius: 12px; height: 100px; padding: 1rem; cursor: pointer; border: 2px solid transparent; transition: 0.2s; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--color-teal); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.pdp-info h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.pdp-price { font-size: 2.5rem; font-family: var(--font-secondary); font-weight: 700; color: var(--color-navy); margin: 1.5rem 0; }
.pdp-desc { color: var(--color-silver-dark); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.8; }
.pdp-features { list-style: none; margin-bottom: 2rem; }
.pdp-features li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--color-navy); font-weight: 500; }
.pdp-features li::before { content: '✓'; display: inline-flex; justify-content: center; align-items: center; width: 24px; height: 24px; background: var(--color-teal-glow); color: var(--color-teal); border-radius: 50%; font-size: 0.8rem; }
.pdp-buy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pdp-buy-actions .btn { padding: 1.2rem; font-size: 1.1rem; }

/* Footer */
.footer { background: #f8fafc; color: var(--color-navy); padding: 4rem 0 2rem; border-top: 1px solid var(--color-silver); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-navy); margin-bottom: 1rem; }
.footer-desc { color: var(--color-silver-dark); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 300px; }
.footer-socials { display: flex; gap: 1rem; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(164, 124, 46, 0.08); color: var(--color-navy); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.social-icon:hover { background: var(--color-teal); color: white; transform: translateY(-3px); }
.footer-heading { font-size: 1.1rem; font-family: var(--font-secondary); margin-bottom: 1.5rem; color: var(--color-navy); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--color-silver-dark); font-size: 0.95rem; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--color-teal); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--color-silver); color: var(--color-silver-dark); font-size: 0.9rem; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}
.whatsapp-icon-bg {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Auth Modal Styles */
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.otp-section {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Accordion & Search components for FAQ/Q&A */
.faq-search-wrap {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}
.faq-search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    border: 1px solid var(--color-silver);
    border-radius: 50px;
    font-size: 1.05rem;
    outline: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.faq-search-input:focus {
    border-color: var(--color-navy);
    box-shadow: 0 10px 25px rgba(164, 124, 46, 0.08);
}
.faq-search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-silver-dark);
    font-size: 1.2rem;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(203, 213, 225, 0.5);
}
.accordion-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.2rem 0;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    user-select: none;
    transition: var(--transition-smooth);
}
.accordion-header:hover {
    color: var(--color-teal);
}
.accordion-icon {
    font-size: 1.5rem;
    color: var(--color-teal);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    color: var(--color-silver-dark);
    font-size: 0.98rem;
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.4s;
}
.accordion-item.active .accordion-content {
    max-height: 350px;
    padding-top: 0.8rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* AI Bot Preview Panel styling */
.ai-preview-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
}
.ai-chatbot-panel {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--color-silver);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
}
.ai-chatbot-header {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: white;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ai-bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-teal-light);
}
.ai-chatbot-messages {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}
.ai-msg {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.ai-msg.bot {
    background: white;
    color: var(--color-text-main);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.ai-msg.user {
    background: var(--color-navy);
    color: white;
    align-self: flex-end;
}
.ai-chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid var(--color-silver);
    background: white;
    display: flex;
    gap: 0.5rem;
}
.ai-chat-control {
    flex-grow: 1;
    border: 1px solid var(--color-silver);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    outline: none;
}
.ai-chat-control:focus {
    border-color: var(--color-navy);
}
.ai-chat-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-navy);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.ai-chat-send:hover {
    background: var(--color-teal);
}
@media(max-width: 900px) {
    .ai-preview-grid {
        grid-template-columns: 1fr;
    }
    .ai-chatbot-panel {
        height: 400px;
    }
}

/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */
@media (max-width: 768px) {
    /* Layout & Section Spacing */
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }

    /* Navigation */
    .navbar { padding: 0.8rem 0; }
    .navbar.scrolled { padding: 0.6rem 0; }
    .nav-links { display: none !important; } /* Hide header links on mobile to prevent overlaps */
    .brand { font-size: 1.15rem; }
    .nav-actions { gap: 0.5rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.88rem; }

    /* Hero Section */
    .hero { min-height: auto; padding: 100px 0 3rem; display: flex; flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; margin-bottom: 2rem; }
    .hero h1 { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1.2; }
    .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-visual { position: relative; width: 100%; right: auto; top: auto; margin-top: 1.5rem; display: block; }
    .hero-visual img { width: 95%; margin: 0 auto; }

    /* Dual Roles cards */
    .dual-roles { grid-template-columns: 1fr; margin-top: 0; padding-bottom: 2rem; gap: 1.25rem; }
    .role-card { padding: 2rem 1.5rem; }

    /* About Section */
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .badge-floating { position: relative; bottom: auto; right: auto; margin-top: 1.25rem; display: inline-flex; align-self: flex-start; }

    /* Location Section */
    .location-grid { grid-template-columns: 1fr; gap: 2rem; }
    .map-container { height: 280px; border-radius: 16px; }
    .contact-info-card { padding: 1.5rem; border-radius: 16px; }

    /* Product Detail Page (PDP) */
    .product-detail-section { padding-top: 90px; padding-bottom: 3rem; }
    .pdp-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pdp-main-img { height: 280px; padding: 1.5rem; border-radius: 16px; }
    .pdp-thumbs { gap: 0.5rem; }
    .pdp-thumb { height: 75px; padding: 0.5rem; border-radius: 8px; }
    .pdp-info h1 { font-size: 1.8rem; }
    .pdp-price { font-size: 2rem; margin: 1rem 0; }
    .pdp-desc { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .pdp-buy-actions { grid-template-columns: 1fr; gap: 0.75rem; }
    .pdp-buy-actions .btn { padding: 1rem; font-size: 1rem; border-radius: 8px; }

    /* Footer */
    .footer { padding: 3rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand { margin-bottom: 0.75rem; }
    .footer-desc { max-width: 100%; margin-bottom: 1rem; }
    .footer-heading { margin-bottom: 1rem; }
}

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

/* ══════════════════════════════════════════════════════════
   GEHNA MAISON — PREMIUM LUXURY THEME LAYER
   Tiffany-calibre restraint, Indian warmth, gehnajeweller.com palette
   ══════════════════════════════════════════════════════════ */

:root {
  --g-red:       #C62828;
  --g-red-deep:  #9E1B1B;
  --g-gold:      #C9A14A;
  --g-gold-light:#E8C87A;
  --g-gold-deep: #A47C2E;
  --g-gold-pale: #F4E9CC;
  --g-off-white: #FDFAF3;
  --g-ivory:     #F8F1E2;
  --g-cream:     #F1E7D2;
  --g-charcoal:  #1A1408;
  --g-warm-dark: #241B0A;
  --g-text:      #2C2417;
  --g-muted:     #7C6C50;
  --g-hairline:  rgba(201, 161, 74, 0.28);
  --font-display: 'Cormorant Garamond', serif;
  --font-accent: 'Cinzel', serif;
}

body { background-color: var(--g-off-white); color: var(--g-text); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; color: var(--g-text); }

.eyebrow, .cinzel-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g-gold-deep);
}

/* Buttons: rectangular, whisper-quiet, letter-spaced */
.btn {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.95rem 2.1rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary {
  background: var(--g-charcoal);
  color: var(--g-gold-light);
  border: 1px solid var(--g-charcoal);
}
.btn-primary:hover {
  background: var(--g-gold-deep);
  border-color: var(--g-gold-deep);
  color: #fff;
  transform: none;
  box-shadow: 0 8px 24px rgba(164, 124, 46, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--g-text);
  border: 1px solid var(--g-gold-deep);
}
.btn-secondary:hover {
  background: var(--g-gold-pale);
  color: var(--g-text);
  border-color: var(--g-gold-deep);
}

/* Navigation: ivory, hairline, editorial */
.navbar, .navbar.scrolled {
  background: rgba(253, 250, 243, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-hairline);
  box-shadow: none;
  padding: 1.1rem 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--g-text);
  letter-spacing: 0.02em;
}
.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--g-text);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--g-gold-deep);
  transition: right 0.35s ease;
}
.nav-links a:hover { color: var(--g-gold-deep); }
.nav-links a:hover::after { right: 0; }

/* Section headers with ornament */
.section-title {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--g-text);
}
.section-title::after {
  content: '\2726';
  display: block;
  color: var(--g-gold);
  font-size: 0.85rem;
  margin-top: 0.9rem;
  letter-spacing: 0;
}
.section-subtitle { color: var(--g-muted); font-weight: 300; }

/* Filter chips: refined tabs */
.filter-row { gap: 2.2rem; margin-bottom: 3rem; }
.filter-chip {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0.4rem 0.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--g-muted);
  border-bottom: 1px solid transparent;
}
.filter-chip:hover {
  background: transparent;
  color: var(--g-text);
  border-bottom-color: var(--g-hairline);
}
.filter-chip.active {
  background: transparent;
  color: var(--g-text);
  border-bottom: 1px solid var(--g-gold-deep);
}

/* Product cards: gallery-quiet */
.products-grid { gap: 2.8rem 2rem; }
.product-block {
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: none;
  background: transparent;
  transition: all 0.4s ease;
}
.product-block:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--g-hairline);
}
.product-img-container {
  height: 300px;
  background: var(--g-ivory);
  padding: 0;
  overflow: hidden;
}
.product-img-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-block:hover .product-img-container img { transform: scale(1.06); }
.product-details { padding: 1.4rem 1rem 1.6rem; text-align: center; }
.product-category {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  color: var(--g-gold-deep);
  margin-bottom: 0.6rem;
}
.product-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--g-text);
}
.product-rating { justify-content: center; color: var(--g-gold); font-size: 0.75rem; letter-spacing: 0.2em; }
.product-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--g-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.product-cta {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--g-text);
  border-bottom: 1px solid var(--g-gold-deep);
  padding-bottom: 3px;
  transition: color 0.3s ease;
}
.product-block:hover .product-cta { color: var(--g-gold-deep); }

/* Trust row: hairline, not shadow */
.trust-item {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--g-hairline);
  background: var(--g-off-white);
}
.trust-item span { font-weight: 400; letter-spacing: 0.04em; color: var(--g-text); font-size: 0.88rem; }

/* Modals */
.modal-content {
  border-radius: 2px;
  border: 1px solid var(--g-hairline);
  background: var(--g-off-white);
}
.form-control {
  border-radius: 2px;
  border-color: var(--g-hairline);
  background: #fff;
  font-family: 'Jost', sans-serif;
}
.form-control:focus { border-color: var(--g-gold-deep); }

/* Footer: charcoal & gold */
.footer { background: var(--g-charcoal); color: var(--g-gold-pale); }
.footer-brand { font-family: var(--font-display); color: var(--g-gold-light); font-size: 1.6rem; font-weight: 500; }
.footer-desc { color: rgba(244, 233, 204, 0.65); font-weight: 300; }
.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-gold);
}
.footer-links a { color: rgba(244, 233, 204, 0.7); font-weight: 300; font-size: 0.9rem; }
.footer-links a:hover { color: var(--g-gold-light); }
.footer-bottom { border-top: 1px solid rgba(201, 161, 74, 0.15); color: rgba(244, 233, 204, 0.45); font-size: 0.8rem; letter-spacing: 0.08em; }
.social-icon { background: rgba(201, 161, 74, 0.12); color: var(--g-gold-light); border-radius: 0; }
.social-icon:hover { background: var(--g-gold-deep); color: #fff; }

/* PDP: variant selectors & luxury detail */
.pdp-breadcrumb {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--g-muted);
  margin-bottom: 2.2rem;
}
.pdp-breadcrumb a { color: var(--g-muted); }
.pdp-breadcrumb a:hover { color: var(--g-gold-deep); }
.pdp-main-img {
  background: var(--g-ivory);
  border: 1px solid var(--g-hairline);
  border-radius: 0;
}
.pdp-thumb {
  border-radius: 0;
  border: 1px solid var(--g-hairline);
  background: var(--g-ivory);
  opacity: 0.75;
  transition: all 0.3s ease;
}
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { border-color: var(--g-gold-deep); opacity: 1; }
.pdp-info h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.7rem;
  letter-spacing: 0.01em;
}
.pdp-price {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--g-text);
  letter-spacing: 0.04em;
}
.variant-group { margin-top: 1.8rem; }
.variant-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-muted);
  margin-bottom: 0.8rem;
  display: block;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.variant-chip {
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--g-hairline);
  background: transparent;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--g-text);
  cursor: pointer;
  transition: all 0.25s ease;
}
.variant-chip:hover { border-color: var(--g-gold-deep); }
.variant-chip.selected {
  border-color: var(--g-charcoal);
  background: var(--g-charcoal);
  color: var(--g-gold-light);
}
.pdp-features li { color: var(--g-muted); font-weight: 300; }
.pdp-divider { border: none; border-top: 1px solid var(--g-hairline); margin: 1.8rem 0; }
.assurance-strip { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--g-hairline); }
.assurance-strip .assurance-item { display: flex; align-items: center; gap: 0.9rem; font-size: 0.86rem; font-weight: 300; letter-spacing: 0.04em; color: var(--g-text); }

/* WhatsApp float stays branded but subtler */
.floating-whatsapp { opacity: 0.92; }
