/* ============================================================
   VERDIAN EXPORTS — Main Stylesheet
   Dark/Gold Luxury Theme — Matching Mockup Exactly
   ============================================================ */

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

/* 2. CSS VARIABLES */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8C96A;
    --gold-dark:   #A8893C;
    --gold-muted:  rgba(201,168,76,0.15);
    --dark:        #111111;
    --dark-2:      #1A1A1A;
    --dark-3:      #222222;
    --dark-4:      #2C2C2C;
    --light-bg:    #F9F6F0;
    --white:       #FFFFFF;
    --text-muted:  rgba(255,255,255,0.55);
    --text-light:  rgba(255,255,255,0.8);
    --border:      rgba(255,255,255,0.08);
    --border-gold: rgba(201,168,76,0.3);
    --shadow:      0 20px 60px rgba(0,0,0,0.4);
    --shadow-sm:   0 4px 20px rgba(0,0,0,0.15);
    --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
    --radius:      8px;
    --radius-lg:   16px;
    --ff-serif:    'Playfair Display', Georgia, serif;
    --ff-sans:     'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-sans);
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-family: var(--ff-serif); line-height: 1.2; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* 4. TYPOGRAPHY UTILITIES */
.font-serif  { font-family: var(--ff-serif); }
.font-sans   { font-family: var(--ff-sans); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-dark   { color: var(--dark); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-label {
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}
.section-label::before {
    content: '— ';
    opacity: 0.6;
}

.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}
.section-title.dark { color: var(--dark); }

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin-top: 12px;
    line-height: 1.7;
}
.section-subtitle.dark { color: #666; }

/* Divider */
.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0;
}
.gold-line.center { margin: 18px auto; }

/* 5. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-muted);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

.btn svg, .btn i { font-size: 15px; }

/* 6. NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.navbar-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text .logo-name {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
}
.logo-text .logo-sub {
    font-family: var(--ff-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: rgba(17,17,17,0.6);
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 500;
    color: #222;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 20px;
}
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#mainNavbar .nav-links .dropdown-menu-custom a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8) !important;
    border-radius: 0;
}
#mainNavbar .nav-links .dropdown-menu-custom a:hover {
    color: var(--gold) !important;
    background: var(--gold-muted) !important;
    padding-left: 26px;
}
#mainNavbar .nav-links .dropdown-menu-custom a::after { display: none !important; }

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #444;
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
}
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }

.btn-quote-nav {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-quote-nav:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: var(--transition);
}

/* 7. HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 115px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img, .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,10,10,0.93) 0%,
        rgba(10,10,10,0.80) 45%,
        rgba(10,10,10,0.45) 70%,
        rgba(10,10,10,0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding-top: 90px;
}
.hero-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
}
.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 220px;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.hero-feature-item:hover {
    border-color: var(--border-gold);
    background: var(--gold-muted);
}
.hero-feature-item i {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}
.hero-feature-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

/* Slide indicators */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.hero-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 3px;
}

/* 8. FEATURES BAR */
.features-bar {
    background: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.feature-item {
    position: relative;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 24px 10px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0 15px;
    font-size: 20px;
    color: #333;
}
.feature-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333;
    text-transform: uppercase;
}
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; padding: 0 20px; }
}
@media (max-width: 576px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 9. COLLECTIONS GRID */
.collections-section {
    background: var(--white);
    padding: 80px 0;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.view-all-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--gold);
    flex-shrink: 0;
}
.view-all-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.collection-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    transition: var(--transition);
}
.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(0,0,0,0.4) 60%, rgba(201,168,76,0.1) 100%);
}
.collection-card-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.collection-card-icon i { font-size: 14px; color: var(--gold); }
.collection-card-name {
    font-family: var(--ff-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.collection-card-sub {
    font-size: 11px;
    color: var(--gold);
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* 10. WHY CHOOSE US */
.why-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid #f0ebe0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.why-card {
    text-align: center;
    padding: 30px 16px;
    border: 1px solid #f0ebe0;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}
.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201,168,76,0.12);
    transform: translateY(-4px);
}
.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon i { font-size: 22px; color: var(--gold); }
.why-card h4 {
    font-family: var(--ff-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 12.5px;
    color: #888;
    line-height: 1.6;
}

/* 11. MANUFACTURING TIMELINE */
.mfg-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid #f0ebe0;
}
.mfg-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.mfg-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(100% / 14);
    right: calc(100% / 14);
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
    z-index: 0;
}
.mfg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}
.mfg-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}
.mfg-step:hover .mfg-icon {
    background: var(--gold);
}
.mfg-step:hover .mfg-icon i { color: var(--dark); }
.mfg-icon i { font-size: 22px; color: var(--gold); transition: var(--transition); }
.mfg-step h4 {
    font-family: var(--ff-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.mfg-step p {
    font-size: 11.5px;
    color: #999;
    line-height: 1.5;
}

/* 12. GLOBAL MAP SECTION */
.global-section {
    background: var(--dark-2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.global-map-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: url('../assets/images/world-map.svg') no-repeat center/contain;
    pointer-events: none;
}
.global-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.global-text .section-title { font-size: clamp(26px, 3vw, 42px); }
.global-text .section-subtitle { max-width: 420px; }
.global-btn {
    margin-top: 32px;
}
.global-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.global-stat {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.global-stat:hover { border-color: var(--border-gold); }
.global-stat .num {
    font-family: var(--ff-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}
.global-stat .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* 13. TESTIMONIALS */
.testi-section {
    background: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.testi-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.testi-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--border-gold);
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testi-stars i { color: var(--gold); font-size: 14px; }
.testi-quote {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-top: 16px;
}
.testi-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 48px;
    color: var(--gold);
    font-family: var(--ff-serif);
    line-height: 1;
    opacity: 0.3;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fdfaf3;
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}
.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}
.testi-role {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* Video Section */
.video-section {
    background: var(--dark-2);
    padding: 90px 0;
}
.video-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-thumb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-thumb:hover img { transform: scale(1.04); }
.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    gap: 12px;
}
.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); background: var(--gold-light); }
.play-btn i { font-size: 22px; color: var(--dark); margin-left: 3px; }
.video-play span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    font-weight: 500;
}

/* 14. PAGE HERO (Inner pages) */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    background: var(--dark-2);
    overflow: hidden;
    padding-top: 115px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.2) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.breadcrumb-trail a { color: var(--gold); }
.breadcrumb-trail a:hover { color: var(--gold-light); }
.breadcrumb-trail span { color: rgba(255,255,255,0.4); }
.page-hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
}

/* 15. FEATURE BAR */
.feature-bar {
    background: var(--light-bg);
    border-bottom: 1px solid #e8e0d0;
    padding: 28px 0;
}
.feature-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 24px;
    border-right: 1px solid #e8e0d0;
}
.feature-bar-item:last-child { border-right: none; }
.feature-bar-item i { font-size: 26px; color: var(--gold); flex-shrink: 0; }
.feature-bar-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}
.feature-bar-item p {
    font-size: 12px;
    color: #888;
}

/* 16. COLLECTIONS FILTER PAGE */
.collections-page {
    background: var(--white);
    padding: 40px 0 80px;
}
.collections-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

/* Sidebar */
.filter-sidebar {
    position: sticky;
    top: 90px;
}
.filter-group {
    border-bottom: 1px solid #f0ebe0;
    padding: 20px 0;
}
.filter-group:first-child { padding-top: 0; }
.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    cursor: pointer;
}
.filter-group-header h4 {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
}
.filter-group-header i { font-size: 12px; color: #999; transition: var(--transition); }
.filter-group-header.collapsed i { transform: rotate(-90deg); }

.filter-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13.5px;
    color: #444;
    transition: var(--transition);
}
.filter-category-item:hover { background: #faf6ee; color: var(--dark); }
.filter-category-item.active {
    background: #faf6ee;
    color: var(--dark);
    font-weight: 600;
    border-left: 3px solid var(--gold);
    padding-left: 8px;
}
.filter-category-item .cat-arrow { font-size: 11px; color: #bbb; }
.filter-category-item.active .cat-arrow { color: var(--gold); }

.filter-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}
.filter-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.filter-checkbox input[type=checkbox] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.filter-checkbox .count {
    font-size: 11px;
    color: #bbb;
}
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
}
.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.color-swatch:hover, .color-swatch.active {
    transform: scale(1.2);
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
}
.more-colors {
    font-size: 12px;
    color: var(--gold);
    cursor: pointer;
    margin-top: 6px;
}
.btn-reset-filters {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    margin-top: 20px;
    font-family: var(--ff-sans);
}
.btn-reset-filters:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Products Grid Area */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ebe0;
    flex-wrap: wrap;
    gap: 12px;
}
.result-count-txt {
    font-size: 13.5px;
    color: #777;
}
.result-count-txt strong { color: var(--dark); }
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sort-select {
    padding: 9px 14px;
    border: 1px solid #e8e0d0;
    border-radius: 5px;
    font-size: 13px;
    font-family: var(--ff-sans);
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    outline: none;
    min-width: 170px;
}
.sort-select:focus { border-color: var(--gold); }
.view-toggle {
    display: flex;
    border: 1px solid #e8e0d0;
    border-radius: 5px;
    overflow: hidden;
}
.view-toggle button {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #aaa;
    transition: var(--transition);
}
.view-toggle button.active { background: var(--gold); color: var(--dark); }

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: var(--white);
    border: 1px solid #f0ebe0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f9f5ee;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--gold);
    color: var(--dark);
}
.product-badge.new { background: #2ecc71; color: #fff; }
.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-wishlist i { font-size: 14px; color: #ccc; transition: var(--transition); }
.product-wishlist:hover { background: #fff; }
.product-wishlist:hover i { color: #e74c3c; }
.product-wishlist.active i { color: #e74c3c; }

.product-info {
    padding: 16px;
}
.product-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--ff-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.35;
}
.product-spec {
    font-size: 12px;
    color: #999;
    margin-bottom: 14px;
}
.btn-request-quote {
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--dark);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--ff-sans);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.btn-request-quote:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-request-quote i { font-size: 12px; }

/* Pagination */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.pagination {
    display: flex;
    gap: 6px;
    align-items: center;
}
.page-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #e8e0d0;
    background: transparent;
    border-radius: 5px;
    font-size: 13.5px;
    font-family: var(--ff-sans);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
.page-btn.prev, .page-btn.next { font-size: 16px; }

/* Bottom Feature Strip */
.bottom-strip {
    background: var(--light-bg);
    border-top: 1px solid #e8e0d0;
    padding: 40px 0;
    margin-top: 60px;
}
.bottom-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.bottom-strip-item {
    padding: 16px 30px;
    border-right: 1px solid #e8e0d0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bottom-strip-item:last-child { border-right: none; }
.bottom-strip-item i { font-size: 28px; color: var(--gold); margin-bottom: 10px; }
.bottom-strip-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.bottom-strip-item p { font-size: 12px; color: #888; margin-bottom: 8px; }
.bottom-strip-item a {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bottom-strip-item a:hover { color: var(--gold-dark); }

/* 17. FOOTER */
.footer {
    background: #ffffff;
    padding: 70px 0 0;
    border-top: 1px solid #e5e7eb;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
}
.footer-logo-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-logo-circle img { height: 40px; }

.footer-brand-title {
    font-family: var(--ff-serif);
    color: #111111;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}
.text-green {
    color: #27ae60;
}
.text-gold {
    color: var(--gold);
}
.footer-brand-desc {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-right: 20px;
}
.footer-trust-badge {
    display: inline-block;
    border: 1px solid rgba(39, 174, 96, 0.3);
    background: rgba(39, 174, 96, 0.1);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #555555;
    transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }

.footer-col h4 {
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #111111;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 13.5px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before {
    content: '>';
    color: var(--gold);
    opacity: 0;
    transition: var(--transition);
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}
.footer-contact-item i { color: var(--gold); font-size: 14px; margin-top: 2px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: #777777;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold); }

/* 18. SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
.scroll-top i { font-size: 16px; color: var(--dark); }

/* 19. ADMIN PANEL */
.admin-body {
    background: #f4f6f9;
    font-family: var(--ff-sans);
    color: #333;
}
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: var(--dark);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-logo {
    padding: 22px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-sidebar-logo img { height: 32px; }
.admin-sidebar-logo span {
    font-family: var(--ff-serif);
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
}
.admin-nav {
    flex: 1;
    padding: 20px 0;
}
.admin-nav-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 16px 20px 6px;
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    position: relative;
}
.admin-nav a i { font-size: 16px; width: 20px; text-align: center; }
.admin-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.admin-nav a.active {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    border-left: 3px solid var(--gold);
}
.admin-nav a.active i { color: var(--gold); }

.admin-main {
    margin-left: 250px;
    min-height: 100vh;
}
.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid #e8ecef;
    padding: 0 30px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
}
.admin-topbar h1 { font-size: 18px; color: var(--dark); font-family: var(--ff-serif); }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.admin-user-avatar {
    width: 34px;
    height: 34px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--dark);
}
.admin-content { padding: 30px; }

/* Admin Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #e8ecef;
    transition: var(--transition);
}
.admin-stat-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.admin-stat-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.admin-stat-icon.blue { background: rgba(52,152,219,0.12); color: #3498db; }
.admin-stat-icon.green { background: rgba(46,204,113,0.12); color: #2ecc71; }
.admin-stat-icon.red { background: rgba(231,76,60,0.12); color: #e74c3c; }
.admin-stat-num { font-family: var(--ff-serif); font-size: 30px; font-weight: 700; color: var(--dark); }
.admin-stat-label { font-size: 13px; color: #888; margin-top: 2px; }

/* Admin Tables */
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e8ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}
.admin-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--ff-serif);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.admin-table th {
    background: #fafbfc;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 18px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f8f8f8;
    color: #444;
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafbfc; }
.admin-table img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }

/* Admin Form */
.admin-form .form-group { margin-bottom: 20px; }
.admin-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 7px;
}
.admin-form input[type=text],
.admin-form input[type=email],
.admin-form input[type=number],
.admin-form input[type=file],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--ff-sans);
    font-size: 13.5px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus { border-color: var(--gold); }
.admin-form textarea { resize: vertical; min-height: 120px; }

.btn-admin-primary {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--ff-sans);
    cursor: pointer;
    transition: var(--transition);
}
.btn-admin-primary:hover { background: var(--gold-light); }
.btn-admin-secondary {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--ff-sans);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-admin-secondary:hover { border-color: #999; color: #333; }
.btn-danger { background: #e74c3c; color: #fff; border: none; padding: 8px 14px; border-radius: 5px; font-size: 12px; cursor: pointer; transition: var(--transition); }
.btn-danger:hover { background: #c0392b; }
.btn-edit { background: rgba(52,152,219,0.1); color: #3498db; border: none; padding: 8px 14px; border-radius: 5px; font-size: 12px; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-edit:hover { background: #3498db; color: #fff; }

/* Admin Badge */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-success { background: rgba(46,204,113,0.1); color: #27ae60; }
.badge-warning { background: rgba(241,196,15,0.1); color: #e67e22; }
.badge-danger { background: rgba(231,76,60,0.1); color: #e74c3c; }

/* Stats Grid (About Page) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}
.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-family: var(--ff-serif);
    font-size: 36px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* 20. RESPONSIVE */
@media (max-width: 1200px) {
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .mfg-timeline { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .top-bar { display: none !important; }
    .btn-quote-nav { display: none !important; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-features { display: none; }
    .collections-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .global-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .video-inner { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main { margin-left: 0; }
}

@media (max-width: 768px) {
    .navbar-inner { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        align-items: flex-start;
        z-index: 999;
    }
    .nav-links.mobile-open a {
        color: #111 !important;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 12px 14px;
        margin: 0;
    }
    .nav-links.mobile-open .nav-dropdown {
        width: 100%;
    }
    .nav-links.mobile-open .dropdown-menu-custom {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 5px;
    }
    .nav-links.mobile-open .nav-dropdown:hover .dropdown-menu-custom {
        display: block;
    }
    .nav-links.mobile-open .dropdown-menu-custom a {
        color: #444 !important;
        padding-left: 20px;
        border-bottom: none;
    }
    .mobile-toggle { display: flex; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .mfg-timeline { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 10px 16px; }
    .testi-grid { grid-template-columns: 1fr; }
    .bottom-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: clamp(28px, 7vw, 42px); }
}

@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .collections-grid { grid-template-columns: 1fr; gap: 24px; }
    .products-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .bottom-strip-grid { grid-template-columns: 1fr; }
    .feature-bar-grid { grid-template-columns: 1fr; }
}

/* 21. ANIMATIONS & UTILITIES */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* Glassmorphism panel */
.glass-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 80px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); background: #20b958; }
.whatsapp-fab i { font-size: 24px; color: #fff; }

/* ============ MARQUEE TOP BAR ============ */
.marquee-top {
    background-color: #003a93;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1000;
}
.marquee-content {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
}
.marquee-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #00ff00;
    border-radius: 50%;
    margin: 0 35px;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* NEW ARRIVALS */
.new-arrivals {
    padding: 80px 0 20px;
    background: #fff;
}
.na-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.na-slider::-webkit-scrollbar {
    display: none;
}
.na-item {
    flex: 0 0 calc(20% - 24px);
    scroll-snap-align: start;
    text-align: center;
}
@media (max-width: 992px) { .na-item { flex: 0 0 calc(33.333% - 20px); } }
@media (max-width: 768px) { .na-item { flex: 0 0 calc(50% - 15px); } }
@media (max-width: 576px) { .na-item { flex: 0 0 100%; } }
.na-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}
.na-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.na-title {
    font-family: var(--ff-serif);
    font-size: 13.5px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    margin-bottom: 5px;
}
.na-price {
    font-family: var(--ff-serif);
    font-size: 12px;
    color: #555;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.slider-btn:hover { background: #333333; }
.prev-btn { left: -22px; }
.next-btn { right: -22px; }
@media (max-width: 1400px) {
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }
}

/* Vertical Thumbnails scrollbar hiding */
.vertical-thumbs::-webkit-scrollbar {
    display: none;
}
.vertical-thumbs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gallery-arrow-btn:hover {
    background: #C9A84C !important;
}
.gallery-arrow-btn:hover i {
    color: #fff !important;
}
.gallery-arrow-btn {
    opacity: 0.85;
}
.gallery-arrow-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05) !important;
}

/* ═══════════════════════════════
   19. LUXURY ANIMATIONS
═══════════════════════════════ */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0d0d0d;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.loader-logo-text {
    font-family: var(--ff-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: loaderTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loader-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    animation: loaderLineProgress 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes loaderTextReveal {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLineProgress {
    to { width: 120px; }
}
body.loading {
    overflow: hidden;
}

/* Scroll Reveal base styles */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card Tilt & Shine Effect */
.product-card, .na-item, .collection-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card::after, .na-item::after, .collection-card::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}
.product-card:hover::after, .na-item:hover::after, .collection-card:hover::after {
    left: 250%;
}

/* Magnetic Button support class */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Perspective Gallery Spinner */
.gallery-3d-wrap {
    perspective: 1000px;
    cursor: grab;
}
.gallery-3d-wrap:active {
    cursor: grabbing;
}
.gallery-3d-card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Manufacturing Process Gallery */
.mfg-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}
.mfg-gallery-card:hover img {
    transform: scale(1.08);
}
@media (max-width: 992px) {
    .mfg-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
@media (max-width: 576px) {
    .mfg-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* =========================================
   TRANSPARENT HEADER (HOME PAGE ONLY)
   ========================================= */
body.home-page .site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
body.home-page .top-bar {
    background: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.home-page .navbar {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.home-page .navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Text colors when NOT scrolled (White text over dark image) */
body.home-page .navbar:not(.scrolled) .logo-name { color: #ffffff !important; }
body.home-page .navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.8) !important; }
body.home-page .navbar:not(.scrolled) .nav-links a { color: #ffffff !important; }
body.home-page .navbar:not(.scrolled) .nav-links a::after { background: #ffffff !important; }
body.home-page .navbar:not(.scrolled) .nav-lang { color: #ffffff !important; border-color: rgba(255,255,255,0.3) !important; }
body.home-page .navbar:not(.scrolled) .mobile-toggle span { background: #ffffff !important; }

/* Mobile Menu Overrides for Home Page */
@media (max-width: 991px) {
    body.home-page .navbar:not(.scrolled) .nav-links a { color: #222 !important; }
    body.home-page .navbar:not(.scrolled) .nav-links a::after { background: var(--gold) !important; }
    body.home-page .navbar:not(.scrolled) .nav-links a.active { color: var(--gold) !important; }
}

/* In scrolled state, they use default colors automatically */
body.home-page .navbar.scrolled .logo-name { color: #111 !important; }
body.home-page .navbar.scrolled .logo-sub { color: #555 !important; }
body.home-page .navbar.scrolled .nav-links a { color: #222 !important; }
body.home-page .navbar.scrolled .nav-links a.active { color: var(--gold) !important; }
body.home-page .navbar.scrolled .nav-links a::after { background: var(--gold) !important; }
body.home-page .navbar.scrolled .nav-lang { color: #222 !important; border-color: #ddd !important; }
body.home-page .navbar.scrolled .mobile-toggle span { background: #111 !important; }

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 3px 8px;
    border-radius: 50rem;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
}
.verified-badge i {
    font-size: 12px;
    color: #4CAF50;
}




/* Google Translate Fixes */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
body { top: 0px !important; }
#goog-gt-tt { display: none !important; top: 0px !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

/* Mobile Menu Color Fix & Dropdowns */
@media (max-width: 991px) {
  .navbar:not(.scrolled) .nav-links.mobile-open a { color: #111 !important; }
  .navbar:not(.scrolled) .nav-links.mobile-open .nav-lang { color: #111 !important; border-color: #ddd !important; }
  .mobile-lang-curr {
      display: flex;
      gap: 15px;
      padding: 12px 14px;
      width: 100%;
      border-top: 1px solid #eee;
      margin-top: 10px;
  }
  .mobile-lang-curr .dropdown {
      position: relative;
  }
  .mobile-lang-curr .dropdown-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      transform: none !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
      z-index: 1050;
  }
}
@media (min-width: 992px) {
  .mobile-lang-curr { display: none !important; }
}


/* ===== Premium Inquiry Popup Modal ===== */
.modal-backdrop.show {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    background-color: rgba(10, 15, 30, 0.6) !important;
    opacity: 1 !important;
}
.popup-dialog { max-width: 860px !important; }
.popup-glass-modal {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    min-height: 500px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35) !important;
}

/* LEFT DARK PANEL */
.popup-left-panel {
    width: 42%;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1a2540 60%, #0d1f1a 100%);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.popup-left-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.popup-left-panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.popup-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}
.popup-close-btn:hover { background: rgba(255,255,255,0.18); color: #fff; transform: rotate(90deg); }
.popup-left-inner { position: relative; z-index: 2; }
.popup-logo-wrap { margin-bottom: 28px; }
.popup-left-title {
    font-size: 22px; font-weight: 800;
    color: #ffffff; line-height: 1.3;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.popup-left-title span { color: #d4af37; }
.popup-left-desc {
    font-size: 13px; color: rgba(255,255,255,0.6);
    line-height: 1.6; margin-bottom: 24px;
}
.popup-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.popup-feature-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,0.85);
}
.popup-feature-item i { color: #d4af37; font-size: 15px; flex-shrink: 0; }
.popup-trust {
    display: flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px; color: #d4af37; font-weight: 600;
}
.popup-trust i { font-size: 16px; }

/* RIGHT WHITE PANEL */
.popup-right-panel {
    flex: 1;
    background: #ffffff;
    padding: 36px 32px;
    overflow-y: auto;
}
.popup-form-title {
    font-size: 20px; font-weight: 700; color: #0f172a;
    margin-bottom: 4px; font-family: var(--font-heading);
}
.popup-form-subtitle { font-size: 13px; color: #64748b; margin-bottom: 22px; }
.popup-field { margin-bottom: 16px; }
.popup-field label {
    display: block; font-size: 11.5px; font-weight: 700;
    color: #475569; text-transform: uppercase; letter-spacing: 0.6px;
    margin-bottom: 6px;
}
.popup-field label span { color: #d4af37; }
.popup-input-wrap {
    position: relative;
}
.popup-input-wrap i {
    position: absolute; left: 13px; top: 50%;
    transform: translateY(-50%);
    color: #94a3b8; font-size: 14px; pointer-events: none;
}
.popup-input-wrap input,
.popup-input-wrap textarea {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px; color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
    resize: none;
}
.popup-input-wrap input:focus,
.popup-input-wrap textarea:focus {
    border-color: #d4af37;
    background: #fffdf5;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 13px 20px;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.25);
}
.popup-submit-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b8931a 100%);
    box-shadow: 0 10px 24px rgba(212,175,55,0.35);
    transform: translateY(-2px);
}
.popup-privacy {
    text-align: center; font-size: 11px; color: #94a3b8;
    margin-top: 12px; margin-bottom: 0;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
@media (max-width: 640px) {
    .popup-glass-modal { flex-direction: column !important; }
    .popup-left-panel { width: 100%; min-height: 160px; padding: 20px; }
    .popup-left-desc, .popup-features { display: none; }
    .popup-right-panel { padding: 20px; }
}

