/* 
   Prestige Crest Gifts - Premium Corporate Gifting Style
   Main Stylesheet: Global Design System & Components
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-deep: #070a16;
    --bg-card: #0f152b;
    --bg-card-hover: #161e3d;
    --bg-header: rgba(7, 10, 22, 0.78);

    --gold: #d4b26f;
    --gold-hover: #c09e5c;
    --gold-light: #f5e4c3;
    --gold-glow: rgba(212, 178, 111, 0.25);

    --text-light: #f5f7fa;
    --text-muted: #8e9bb0;
    --text-dark: #0f152b;

    --border-color: rgba(212, 178, 111, 0.15);
    --border-hover: rgba(212, 178, 111, 0.35);
    --glass-bg: rgba(15, 21, 43, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadow */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 30px -10px rgba(212, 178, 111, 0.3);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-deep: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.82);

    --gold: #b38f4d;
    --gold-hover: #9c7b3c;
    --gold-light: #6e5422;
    --gold-glow: rgba(179, 143, 77, 0.15);

    --text-light: #0f172a;
    --text-muted: #475569;
    --text-dark: #ffffff;

    --border-color: rgba(179, 143, 77, 0.22);
    --border-hover: rgba(179, 143, 77, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* Preserve Dark/Gold theme in hero-sections and page-headers and make background images more visible */
.hero-section {
    background: linear-gradient(135deg, rgba(7, 10, 22, 0.45) 0%, rgba(7, 10, 22, 0.65) 100%), url('../images/hero_gifting_desk.jpg') no-repeat center center/cover !important;
}

.page-header-section {
    background: linear-gradient(rgba(7, 10, 22, 0.45), rgba(7, 10, 22, 0.65)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover !important;
}

/* Text shadows to ensure high contrast/readability against brighter images */
.hero-title h1,
.gold-gradient-text,
.hero-subtitle p,
.page-header-section h1,
.page-header-section .section-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .hero-section,
[data-theme="light"] .page-header-section {
    --text-light: #f5f7fa;
    --text-muted: #8e9bb0;
    --gold: #d4b26f;
    --gold-light: #f5e4c3;
    --border-color: rgba(212, 178, 111, 0.3);
}

/* Ensure buttons inside hero & page-headers have white/gold styling in both modes */
.hero-section .btn-secondary,
.page-header-section .btn-secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background-color: transparent !important;
}

.hero-section .btn-secondary:hover,
.page-header-section .btn-secondary:hover {
    color: #070a16 !important;
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-gold) !important;
}

/* Header & Navigation Adaptability */
header, .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

header.scrolled, .main-header.scrolled {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Adjust header paddings slightly on scroll for premium feel */
header.scrolled .nav-container, .main-header.scrolled .nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Header CTA button in transparent (unscrolled) state */
header:not(.scrolled) .nav-cta .btn-secondary,
.main-header:not(.scrolled) .nav-cta .btn-secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background-color: transparent !important;
}

header:not(.scrolled) .nav-cta .btn-secondary:hover,
.main-header:not(.scrolled) .nav-cta .btn-secondary:hover {
    color: #070a16 !important;
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-gold) !important;
}

/* Keep theme toggle track dark/translucent when header is transparent (not scrolled) */
header:not(.scrolled) .theme-toggle-track,
.main-header:not(.scrolled) .theme-toggle-track {
    background-color: rgba(15, 21, 43, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

header:not(.scrolled) [data-theme="light"] .theme-toggle-thumb,
.main-header:not(.scrolled) [data-theme="light"] .theme-toggle-thumb {
    left: 29px !important;
}

header:not(.scrolled) [data-theme="light"] .theme-toggle-icon-sun,
.main-header:not(.scrolled) [data-theme="light"] .theme-toggle-icon-sun {
    opacity: 1 !important;
}

header:not(.scrolled) [data-theme="light"] .theme-toggle-icon-moon,
.main-header:not(.scrolled) [data-theme="light"] .theme-toggle-icon-moon {
    opacity: 0.3 !important;
}

/* Text and button overrides in Light Theme when scrolled (white header background) */
[data-theme="light"] header.scrolled .logo-title,
[data-theme="light"] .main-header.scrolled .logo-title,
[data-theme="light"] header.scrolled .nav-links>li>a,
[data-theme="light"] .main-header.scrolled .nav-links>li>a {
    color: var(--text-light) !important;
}

[data-theme="light"] header.scrolled .nav-cta .btn-secondary,
[data-theme="light"] .main-header.scrolled .nav-cta .btn-secondary {
    color: var(--text-light) !important;
    border-color: var(--border-color) !important;
    background-color: transparent !important;
}

[data-theme="light"] header.scrolled .nav-cta .btn-secondary:hover,
[data-theme="light"] .main-header.scrolled .nav-cta .btn-secondary:hover {
    color: #fff !important;
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-gold) !important;
}

[data-theme="light"] header.scrolled .menu-toggle span,
[data-theme="light"] .main-header.scrolled .menu-toggle span {
    background-color: var(--text-light) !important;
}

[data-theme="light"] header.scrolled .theme-toggle-track,
[data-theme="light"] .main-header.scrolled .theme-toggle-track {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--border-color) !important;
}

/* Logo display rules */
.gem-logo-dark,
.logo-image-dark {
    display: inline-block;
}

.gem-logo-light,
.logo-image-light {
    display: none;
}

/* Scroll-adaptive logos in Light Theme when scrolled (white background) */
[data-theme="light"] header.scrolled .gem-logo-dark,
[data-theme="light"] .main-header.scrolled .gem-logo-dark,
[data-theme="light"] header.scrolled .logo-image-dark,
[data-theme="light"] .main-header.scrolled .logo-image-dark {
    display: none !important;
}

[data-theme="light"] header.scrolled .gem-logo-light,
[data-theme="light"] .main-header.scrolled .gem-logo-light,
[data-theme="light"] header.scrolled .logo-image-light,
[data-theme="light"] .main-header.scrolled .logo-image-light {
    display: inline-block !important;
}

/* Dropdown styling override for light theme */
[data-theme="light"] .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .dropdown-menu li a {
    color: var(--text-light);
}

[data-theme="light"] .dropdown-menu li a:hover {
    background: rgba(179, 143, 77, 0.06);
    color: var(--gold);
}

/* Form overrides in Light Theme */
[data-theme="light"] .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-light);
    border-color: var(--border-color);
}

[data-theme="light"] .form-control::placeholder {
    color: #94a3b8;
}

[data-theme="light"] input[type="date"] {
    color-scheme: light !important;
}

/* Ensure dropdown options are readable in both themes */
select option {
    background-color: var(--bg-card);
    color: var(--text-light);
}

/* Container Background corrections for Light Theme */
[data-theme="light"] .about-preview-section {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

[data-theme="light"] .categories-section {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .gallery-slider-section {
    background-color: rgba(0, 0, 0, 0.01) !important;
}

[data-theme="light"] .stats-section {
    background-color: rgba(0, 0, 0, 0.025) !important;
}

[data-theme="light"] .qa-section {
    background-color: rgba(0, 0, 0, 0.015) !important;
}

[data-theme="light"] .client-logos-section {
    background: #f1f5f9 !important;
}

[data-theme="light"] footer {
    background-color: #f1f5f9;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Theme Toggle Button Switch Styles */
.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.theme-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--gold);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    transform: scale(1.08);
    background-color: rgba(212, 178, 111, 0.08);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

[data-theme="light"] .theme-toggle-btn {
    background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background-color: rgba(179, 143, 77, 0.06);
}

.theme-toggle-track {
    display: flex;
    align-items: center;
    position: relative;
    width: 54px;
    height: 28px;
    background-color: rgba(15, 21, 43, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.theme-toggle-thumb {
    position: absolute;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.theme-toggle-icon-sun,
.theme-toggle-icon-moon {
    font-size: 11px;
    position: absolute;
    z-index: 1;
    transition: var(--transition-smooth);
    user-select: none;
    line-height: 1;
}

.theme-toggle-icon-sun {
    left: 7px;
    opacity: 0.4;
}

.theme-toggle-icon-moon {
    right: 7px;
    opacity: 1;
}

.theme-toggle-btn:hover .theme-toggle-thumb {
    transform: scale(1.08);
    background-color: var(--gold-hover);
}

/* Light theme overrides for toggle switch */
[data-theme="light"] .theme-toggle-track {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: var(--border-color);
}

[data-theme="light"] .theme-toggle-thumb {
    left: 29px; /* 54px width - 20px thumb - 5px margin */
    background-color: var(--gold);
}

[data-theme="light"] .theme-toggle-icon-sun {
    opacity: 1;
}

[data-theme="light"] .theme-toggle-icon-moon {
    opacity: 0.3;
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* =========================
   DARK MODE FIXES
========================= */

body.dark-mode {
    background: #0b1020;
    color: #e5e7eb;
}

/* Collection Section */
body.dark-mode .collection-section,
body.dark-mode .categories-section,
body.dark-mode .products-section {
    background: #0b1020;
}

/* Product Cards */
body.dark-mode .collection-card,
body.dark-mode .category-card {
    background: #111827 !important;
    border: 1px solid #2a3448 !important;
    color: #e5e7eb !important;
}

/* Product Category Text */
body.dark-mode .collection-card .product-category,
body.dark-mode .category-card .product-category {
    color: #d4af37 !important;
}

/* Product Titles */
body.dark-mode .collection-card h3,
body.dark-mode .category-card h3,
body.dark-mode .collection-card h4,
body.dark-mode .category-card h4 {
    color: #ffffff !important;
}

/* Product Description */
body.dark-mode .collection-card p,
body.dark-mode .category-card p {
    color: #cbd5e1 !important;
}

/* MOQ Text */
body.dark-mode .collection-card .product-meta,
body.dark-mode .collection-card .moq,
body.dark-mode .category-card .product-meta,
body.dark-mode .category-card .moq {
    color: #94a3b8 !important;
}

/* Divider Lines */
body.dark-mode .collection-card hr,
body.dark-mode .category-card hr,
body.dark-mode .product-divider {
    border-color: #2a3448 !important;
}

/* Buttons */
body.dark-mode .btn-outline,
body.dark-mode .inquiry-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #475569 !important;
}

body.dark-mode .btn-outline:hover,
body.dark-mode .inquiry-btn:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

/* Gold Buttons */
body.dark-mode .btn-gold,
body.dark-mode .view-btn {
    background: #d4af37 !important;
    color: #000 !important;
}

/* Navigation */
body.dark-mode .navbar {
    background: #050b18 !important;
    border-bottom: 1px solid #1f2937;
}

body.dark-mode .navbar a {
    color: #f8fafc !important;
}

body.dark-mode .navbar a:hover {
    color: #d4af37 !important;
}

/* Request Quote Button */
body.dark-mode .quote-btn {
    background: #111827 !important;
    color: #fff !important;
    border: 1px solid #d4af37 !important;
}

/* Dropdown Menus */
body.dark-mode .dropdown-menu {
    background: #111827 !important;
    border: 1px solid #2a3448 !important;
}

body.dark-mode .dropdown-menu a {
    color: #e5e7eb !important;
}

body.dark-mode .dropdown-menu a:hover {
    background: #1e293b !important;
    color: #d4af37 !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography & Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--text-light) 10%, var(--gold) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
}

/* =========================
   NAV CONTAINER
========================= */

.nav-container {
    max-width: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 2px;
}

/* =========================
   LOGO
========================= */

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

.logo-crest {
    width: 42px;
    height: 42px;
}

.logo-title {
    display: block;
    color: #fff;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-tag {
    display: block;
    color: #d4b26f;

    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* =========================
HEADER
========================= */

.main-header {
    width: 100%;
}

/* =========================
NAV CONTAINER
========================= */

.nav-container {
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;

    padding: 12px 30px;
}

/* =========================
LOGO
========================= */

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

.logo-crest {
    width: 30px;
    height: 30px;
}

/* Logo images: style both versions; default visibility handles showing the correct one */
.logo-image-dark,
.logo-image-light {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.gem-logo-dark,
.gem-logo-light {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-title {
    display: block;
    color: #fff;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-tag {
    display: block;
    color: #d4b26f;

    font-size: 10px;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* =========================
NAVIGATION
========================= */

#mainNav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;

    list-style: none;
    margin: 0;
    padding: 0;
}


/* Remaining navbar spacing */
.nav-links li {
    margin-right: 0px;
}

/* Increase space before Request Quote button */

.nav-cta {
    margin-left: 15px;
}

/* Remove extra space from last item */
.nav-links li:last-child {
    margin-right: 0;
}

/* =========================
MAIN NAV ITEMS
========================= */

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;

    color: #fff;
    text-decoration: none;

    /* Clean Navbar Text */
    font-size: 13px;

    font-weight: 600;

    padding: 8px 0;

    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: #d4b26f;
}

.request-quote-btn {
    display: inline-block;

    /* Optimized button spacing */
    padding: 10px 28px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    line-height: 1.4;

    transition: 0.3s ease;
}

.request-quote-btn:hover {
    background: #d4b26f;
    color: #020826;
}

/* =========================
DROPDOWN
========================= */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 260px;

    background: #08102f;

    list-style: none;

    padding: 12px 0;
    margin: 0;

    border-radius: 10px;

    display: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    z-index: 999;
}

/* Show Dropdown */

.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Items */

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;

    padding: 14px 22px;

    color: #fff;
    text-decoration: none;

    font-size: 15px;

    font-weight: 400;

    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(212, 178, 111, 0.08);
    color: #d4b26f;
}

/* =========================
NAV ARROW
========================= */

.nav-arrow {

    /* Smaller Triangle */
    font-size: 10px;

    margin-left: 8px;

    transition: 0.3s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    #mainNav {
        margin-left: 0;
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 18px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links>li>a {
        font-size: 20px;
    }

    .logo-image-dark,
    .logo-image-light {
        height: 52px;
        width: auto;
    }
    
    .gem-logo-dark,
    .gem-logo-light {
        height: 62px;
        width: auto;
    }

    .logo-title {
        font-size: 15px !important;
        letter-spacing: 0.5px !important;
    }

    .logo-tag {
        display: block !important;
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }
    .logo a {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .logo-image-dark,
    .logo-image-light {
        height: 44px;
        width: auto;
    }
    .gem-logo-dark,
    .gem-logo-light {
        height: 52px !important;
        width: auto;
    }
    .logo-title {
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
    }
    .nav-logo-group {
        gap: 8px;
    }
    .logo a {
        gap: 4px !important;
    }
}

/* CTA */
/*
    .nav-cta .btn{
        padding:10px 18px;
        border:1px solid #d4b26f;
        color:#fff;
        text-decoration:none;
        font-size:13px;
        transition:0.3s ease;
    }

    .nav-cta .btn:hover{
        background:#d4b26f;
        color:#020826;
    } */

/* Mobile */

.menu-toggle {
    display: none;
}

/* Trigger display on hover for desktop */
@media (min-width: 992px) {

    .nav-links li:hover .dropdown-menu,
    .nav-links li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mega menu structure */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--gold);
    min-width: 540px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1002;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 178, 111, 0.05);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    padding: 20px;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
}

.mega-menu-list li {
    width: 100%;
}

.mega-menu-list li a {
    display: block;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.mega-menu-list li a::after {
    display: none;
}

.mega-menu-list li a:hover {
    color: var(--gold-light);
    background-color: rgba(212, 178, 111, 0.05);
    padding-left: 20px;
}

.mega-menu-image-container {
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 180px;
}

.mega-menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.mega-menu-image-container:hover img {
    transform: scale(1.05);
}

.mega-menu-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(7, 10, 22, 0.95));
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-transform: uppercase;
    text-align: center;
}

/*
.nav-cta {
    position: relative;
} */

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 35px;
    height: 3.5px;
    background-color: #ffffff; /* White by default since header overlays dark hero sections */
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--gold);
    color: #070a16 !important; /* Always dark text on gold background for high contrast */
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-light) !important;
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Custom Gifting Floating Elements */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
}

.widget-btn svg {
    transition: transform 0.4s ease;
}

.widget-btn:hover svg {
    transform: scale(1.15) rotate(8deg);
}

.widget-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    animation: whatsapp-glow-pulse 2s infinite;
}

.widget-whatsapp:hover {
    transform: scale(1.12) translateY(-5px);
    background: linear-gradient(135deg, #2feb75 0%, #189e8f 100%);
}

.widget-call {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    animation: call-glow-pulse 2s infinite 1s;
}

.widget-call:hover {
    transform: scale(1.12) translateY(-5px);
    background: linear-gradient(135deg, #14d495 0%, #06b07b 100%);
}

.widget-quote-cart {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: var(--text-dark);
    position: relative;
    display: none;
    /* Shown dynamically in JS */
    animation: cart-glow-pulse 2.5s infinite;
}

.widget-quote-cart:hover {
    transform: scale(1.12) translateY(-5px);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Alternate Pulse Keyframes */
@keyframes whatsapp-glow-pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes call-glow-pulse {
    0% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35), 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes cart-glow-pulse {
    0% {
        box-shadow: 0 8px 30px rgba(212, 178, 111, 0.35), 0 0 0 0 rgba(212, 178, 111, 0.5);
    }
    70% {
        box-shadow: 0 8px 30px rgba(212, 178, 111, 0.35), 0 0 0 15px rgba(212, 178, 111, 0);
    }
    100% {
        box-shadow: 0 8px 30px rgba(212, 178, 111, 0.35), 0 0 0 0 rgba(212, 178, 111, 0);
    }
}

.quote-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e63946;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-deep);
}

/* Smaller Quote Box */

.quote-container {
    max-width: 500px;
    /* decrease width */
    width: 50%;

    margin: auto;

    padding: 30px 40px;

    textarea {
        height: 50px;/* Remove extra spacing completely */

.quote-modal-content p {

    font-size: 14px;

    margin: 0;
    padding: 0;

    line-height: 1.3;
}

/* No Products Text */

.no-products-text {

    margin: 0;

    padding: 0;

    line-height: 1.2;
}
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 22, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: rgba(7, 10, 22, 0.6);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 178, 111, 0.1);
}

textarea.form-control {
    resize: none;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer styling */
footer {
    background-color: #04060e;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
        gap: 30px;
    }
}


.footer-logo-desc p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--text-dark);
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-column-title {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin-bottom: 0; /* overridden by gap */
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form .form-control {
    border-right: none;
}

.newsletter-form .btn {
    padding: 0 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Toast Messages */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    pointer-events: none;
}

.toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success-icon {
    color: var(--gold);
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.toast-msg {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* SECTION */
.gallery-slider-section {
    padding: 80px 0;
    background: rgba(15, 21, 43, 0.2);
    border-bottom: 1px solid var(--border-color);
}

/* TITLE */
.gallery-slider-section .section-subtitle {
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.gallery-slider-section .section-title {
    font-size: 2.5rem;
}

/* SWIPER */
.swiper {
    padding: 20px 0 50px;
}

/* SLIDE */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE */
.swiper-slide img {
    width: 100%;
    max-width: 420px;
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 8px;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.swiper-slide img:hover {
    transform: scale(1.03);
    border-color: var(--gold);
}

/* PAGINATION DOTS */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .swiper-slide img {
        height: 220px;
        max-width: 90%;
    }

    .gallery-slider-section .section-title {
        font-size: 2rem;
    }
}

/* FIX ALIGNMENT */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE SIZE CONTROL */
.swiper-slide img {
    width: 100%;
    max-width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: 0.4s ease;
}
.nav-links {
    gap: 18px;
}

#mainNav {
    max-width: 900px;
}

/* Categories Grid - Centered flex layout for perfect alignment */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.category-card {
    flex: 0 1 calc(25% - 22.5px);
    min-width: 270px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Luxury shimmer reflection sweep */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.category-card .zoom-img-container {
    position: relative;
    overflow: hidden;
}

.category-card .zoom-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card .zoom-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(7, 10, 22, 0.4), transparent);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .category-card:hover::before {
        left: 150%;
        transition: left 0.8s ease-in-out;
    }

    .category-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), var(--gold-glow) 0px 8px 30px !important;
        border-color: var(--gold) !important;
    }

    .category-card:hover .zoom-img-container img {
        transform: scale(1.08);
    }

    .category-card:hover .zoom-img-container::after {
        opacity: 0.7;
    }
}

/* Responsive for tablets */
@media (max-width: 1200px) {
    .category-card {
        flex: 0 1 calc(50% - 15px);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .categories-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
    }
    
    .category-card {
        flex: 0 0 78%;
        scroll-snap-align: center;
        margin-right: 15px;
    }
}

/* ==========================================================================
   BEST SELLING COLLECTIONS
   ========================================================================== */
.best-selling-section {
    background-color: var(--bg-deep);
    position: relative;
    z-index: 1;
}

.collection-tabs-container {
    margin-bottom: 45px;
    text-align: center;
}

.collection-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 30px;
}

.collection-tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-fast);
    outline: none;
}

.collection-tab-btn:hover {
    color: var(--gold);
}

.collection-tab-btn.active {
    background-color: var(--gold) !important;
    color: #070a16 !important;
    box-shadow: 0 4px 10px rgba(212, 178, 111, 0.2);
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.collection-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 22.5px);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

@media (max-width: 1200px) {
    .collection-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 900px) {
    .collection-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .collection-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .collection-grid::-webkit-scrollbar {
        height: 6px;
    }
    .collection-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .collection-grid::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 4px;
    }

    .collection-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

/* Fade in out transitions */
.collection-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.collection-card.fade-in {
    animation: cardFadeIn 0.4s ease forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subtle shine overlay for product cards */
.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
}

.collection-card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.35s ease;
}

/* Elegant gold-tinted inset shadow for the image wrapper */
.collection-card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    pointer-events: none;
    transition: box-shadow 0.35s ease;
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
    .collection-card:hover::before {
        left: 150%;
        transition: left 0.8s ease-in-out;
    }

    .collection-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), var(--gold-glow) 0px 8px 25px;
    }

    .collection-card:hover .collection-card-img-wrapper::after {
        box-shadow: inset 0 0 20px rgba(179, 143, 77, 0.05);
    }

    .collection-card:hover .collection-card-img {
        transform: scale(1.08);
    }
}

.collection-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #070a16 !important;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 10;
    letter-spacing: 0.05em;
}

.collection-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.collection-card-cat {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.collection-card-title {
    font-size: 0.95rem;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-light);
}

.collection-card-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.collection-card-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-card-moq {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.collection-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: auto;
}

.collection-card-actions .btn {
    width: 100%;
}

/* ===== DESKTOP NAVBAR BRAND FIX ===== */
@media (min-width: 1201px) {

    /* Left brand container */
    .navbar-brand{
        display: flex;
        align-items: center;
        gap: 14px;
        max-width: 320px;
    }

    /* Logo */
    .navbar-brand img{
        width: 68px;
        height: 68px;
        object-fit: contain;
        border-radius: 6px;
    }

    /* Text wrapper */
    .brand-text{
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    /* Main business name */
    .brand-title{
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 4px;
        font-family: 'Cormorant Garamond', serif;
    }

    /* Second line */
    .brand-title span{
        display: block;
    }

    /* Tagline */
    .brand-tagline{
        font-size: 13px;
        color: #c7a86b;
        letter-spacing: 1.5px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        white-space: nowrap;
    }

    /* Navbar spacing */
    .navbar{
        padding: 18px 40px;
    }

    /* Menu spacing */
    .navbar-nav{
        gap: 18px;
    }

    /* Nav links */
    .navbar-nav .nav-link{
        font-size: 14px;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
}

/* ===== DESKTOP ONLY LOGO & BRANDING FIX ===== */
@media (min-width: 1201px){

    /* Move mode button to the left side */
    .nav-logo-group .theme-toggle-btn {
        order: -1;
    }

    /* Logo wrapper */
    .logo a{
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    /* Logo image */
    .logo-image-dark,
    .logo-image-light {
        width: auto;
        height: 60px;
        object-fit: contain;
        border-radius: 6px;
        margin-right: 8px;
    }

    /* Text container */
    .logo-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.1;
    }

    /* Business name */
    .logo-title{
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Cormorant Garamond', serif;
        max-width: 220px;
    }

    /* Force proper 2-line structure */
    .logo-title::after{
        content: "";
        display: block;
    }

    /* Tagline */
    .logo-tag{
        margin-top: 6px;
        font-size: 13px;
        color: #c7a86b;
        letter-spacing: 1.2px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        white-space: nowrap;
    }

    /* Navbar spacing */
    .navbar{
        padding: 18px 40px;
    }

    /* Menu spacing */
    .navbar-nav{
        gap: 18px;
    }

    /* Nav links */
    .navbar-nav .nav-link{
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
}

/* =========================
ANNOUNCEMENT MARQUEE
========================= */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

[data-theme="light"] .announcement-marquee {
    background: #070a16 !important;
}

[data-theme="light"] .marquee-content {
    color: #d4b26f !important;
}

/* =========================
TESTIMONIALS SECTION
========================= */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        border-color: rgba(212, 178, 111, 0.4);
    }
}

.testimonial-card .quote-icon {
    color: var(--gold);
    font-size: 3.5rem;
    line-height: 1;
    font-family: serif;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-card .author {
    border-top: 1px solid rgba(212, 178, 111, 0.15);
    padding-top: 15px;
}

.testimonial-card .author strong {
    color: #ffffff;
    font-size: 0.95rem;
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-card .author span {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

[data-theme="light"] .testimonial-card .author strong {
    color: #070a16;
}
@media (hover: hover) {
    [data-theme="light"] .testimonial-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
}
/* Why Choose Us Cards */
.why-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.why-card-content {
    padding: 30px 25px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.promise-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.promise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card .icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(212, 178, 111, 0.08);
    border: 1px solid var(--border-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: -60px; /* Overlaps the image */
    margin-bottom: 22px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    background-color: var(--bg-card); /* Add a solid background behind the icon wrapper to hide image behind it */
}

/* Inner circle for icon wrapper */
.why-card .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(212, 178, 111, 0.08);
    z-index: -1;
}

@media (hover: hover) {
    .why-card:hover .promise-img {
        transform: scale(1.08);
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

    .why-card:hover::before {
        opacity: 1;
    }

    .why-card:hover .icon-wrapper {
        background-color: var(--gold);
        color: #fff;
        border-color: var(--gold);
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 20px rgba(212, 178, 111, 0.3);
    }
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Light mode overrides for shadows/borders */
[data-theme="light"] .why-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@media (hover: hover) {
    [data-theme="light"] .why-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }
}

    /* Navbar spacing */
    .navbar{
        padding: 18px 40px;
    }

.productSwiper {
    width: 100%;
    max-width: 500px;
    height: 350px;
}

.productSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSwiper .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.collection-tabs-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.collection-tabs {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Product Card - Cleaned Legacy Overrides */
.collection-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.collection-card-img-wrapper {
    border-bottom: 1px solid var(--border-color);
}

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Large Tablet */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablet Slider */
@media (max-width: 768px) {
    .collection-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 15px 25px !important;
        scroll-behavior: smooth !important;
    }
    
    .collection-card {
        flex: 0 0 82% !important;
        scroll-snap-align: center !important;
        width: auto !important;
    }
}

/* For most standard themes / Dawn theme */
.collection .grid,
.collection-grid,
[data-context="featured-collection"]

.grid {
display: flex !important;
justify-content: center !important;
flex-wrap: wrap !important;
}

