/* ============================================================
   OLD & RARE — Premium Brand Design System
   Color palette extracted from logo:
   - Deep Royal Maroon (shield, crown velvet)
   - Rich Ornamental Gold (detailing, elephants, text)
   - Warm Ivory/Cream (background warmth)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* ─── Logo-Derived Color Palette ─── */
    --primary:          #3B0A0A;       /* Deep royal maroon — shield & crown */
    --primary-light:    #5C1A1A;       /* Lighter maroon for hover states */
    --primary-dark:     #2A0505;       /* Darker maroon for depth */
    --primary-surface:  #4D1111;       /* Maroon surface for cards on dark */
    
    --gold:             #C9A84C;       /* Core ornamental gold from logo */
    --gold-light:       #D4B96A;       /* Lighter gold for hovers */
    --gold-dark:        #A88B3A;       /* Darker gold for pressed states */
    --gold-muted:       rgba(201, 168, 76, 0.15); /* Gold tint for surfaces */
    --gold-glow:        rgba(201, 168, 76, 0.25); /* Gold glow for effects */
    
    --ivory:            #FAF6F0;       /* Warm ivory — page background */
    --ivory-dark:       #F0EBE3;       /* Slightly darker ivory */
    --cream:            #FFF9F0;       /* Cream for card backgrounds */
    
    --text-primary:     #1C1210;       /* Near-black with warm tone */
    --text-secondary:   #6B5E54;       /* Warm mid-tone for body */
    --text-muted:       #9B8E84;       /* Muted warm gray  */
    --text-on-dark:     #F5F0EA;       /* Light text on dark surfaces */
    --text-on-dark-muted: rgba(245, 240, 234, 0.6);
    
    --surface-dark:     #0F0A08;       /* Rich near-black for footer */
    --surface-darker:   #0A0705;       /* Deepest dark */
    --border:           rgba(201, 168, 76, 0.12); /* Gold-tinted borders */
    --border-light:     rgba(0, 0, 0, 0.06);
    
    /* ─── Typography ─── */
    --font-heading: 'Cinzel', serif;
    --font-body:    'Inter', sans-serif;
    
    /* ─── Transitions ─── */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
    --transition:   0.4s var(--ease-out);
    --transition-fast: 0.25s var(--ease-out);
    
    /* ─── Shadows ─── */
    --shadow-sm:    0 2px 8px rgba(59, 10, 10, 0.06);
    --shadow-md:    0 8px 24px rgba(59, 10, 10, 0.08);
    --shadow-lg:    0 16px 48px rgba(59, 10, 10, 0.12);
    --shadow-gold:  0 4px 20px rgba(201, 168, 76, 0.15);
    --shadow-glow:  0 0 30px rgba(201, 168, 76, 0.1);
    
    /* ─── Radius ─── */
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    16px;
    --radius-xl:    20px;
    --radius-full:  9999px;

    /* ─── Admin Panel Stable Theme Vars ─── */
    --admin-bg:       #0F0E13;
    --admin-surface:  rgba(255, 255, 255, 0.02);
    --admin-card-bg:  rgba(255, 255, 255, 0.03);
    --admin-border:   rgba(201, 168, 76, 0.08);
    --admin-text:     #E0DDD7;
    --admin-text-muted: rgba(224, 221, 215, 0.5);
    --admin-gold:     #C9A84C;
}

/* Admin Light Mode Block has been moved to the end of the file for maximum specificity and priority. */



/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */

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

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */

.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--gold);
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar-left {
        width: 100%;
        font-size: 0.62rem;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 10px;
    }
    .top-bar-right {
        display: none !important;
    }
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.08), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================================
   HEADER / NAVBAR — Glassmorphism with brand colors
   ============================================================ */

header {
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(250, 246, 240, 0.95);
    box-shadow: 0 4px 30px rgba(59, 10, 10, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
    mix-blend-mode: multiply; /* Removes white background from logo on light header */
}

header.scrolled .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

nav a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover {
    color: var(--gold-dark);
}

nav a:hover::after {
    width: 100%;
}

/* ============================================================
   BUTTONS — Accent gold with maroon undertones
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    gap: 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    color: var(--text-on-dark);
    text-align: center;
    height: 100%;
    min-height: 100%;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 10, 10, 0.85) 0%,
        rgba(59, 10, 10, 0.6) 40%,
        rgba(42, 5, 5, 0.4) 70%,
        rgba(15, 10, 8, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.4s var(--ease-out);
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 6px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-full);
    background: rgba(201, 168, 76, 0.08);
}

.hero-content h2 {
    font-size: 4rem;
    font-style: normal;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    color: rgba(245, 240, 234, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--gold) !important;
    width: 50px;
    height: 50px;
    background: rgba(59, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: rgba(245, 240, 234, 0.4) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 30px;
    border-radius: 5px !important;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    color: var(--text-primary);
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 5px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* ============================================================
   GRIDS
   ============================================================ */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 25px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Global Mobile Dropdown Reset */
.mobile-filter-select {
    display: none;
}
.desktop-filter-list {
    display: block;
}

/* Base Typographic Resets for Inline Hacks */
.motto-heading {
    font-size: 3.2rem;
    color: var(--ivory);
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.b2b-hero-heading {
    font-size: 3.5rem;
    color: var(--gold);
    margin-top: 15px;
    font-weight: 400;
}

.product-hero-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.motto-section, .b2b-hero-section {
    padding: 120px 0;
}

/* ============================================================
   PRODUCT CARD — Premium rounded card with gold accents
   ============================================================ */

.product-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.25);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 320px;
    overflow: hidden;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px 22px 24px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.3;
}

.product-price {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    font-family: var(--font-body);
    margin-top: auto;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */

.category-card {
    text-align: center;
    background: var(--cream);
    padding: 45px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.2);
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.category-card p {
    margin: 15px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.category-card a {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: var(--transition);
}

.category-card a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ============================================================
   HERITAGE / WHY CHOOSE US SECTION
   ============================================================ */

.heritage-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-surface) 100%);
    color: var(--text-on-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.heritage-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.heritage-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-5px);
}

.heritage-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 22px;
    display: inline-block;
}

.heritage-card h3 {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

.heritage-card p {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================================
   FOOTER — Premium dark with gold accents
   ============================================================ */

footer {
    background: linear-gradient(180deg, var(--surface-dark), var(--surface-darker));
    color: var(--text-on-dark);
    padding: 90px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 70px;
}

.footer-social-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col a {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    color: var(--text-on-dark-muted);
    font-size: 0.85rem;
}

.footer-social-link {
    background: transparent;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(224, 221, 215, 0.4);
    border: 1px solid rgba(224, 221, 215, 0.1);
    transition: var(--transition);
    font-size: 1.6rem; /* Increased size as requested */
    text-decoration: none;
}

.footer-social-link i {
    color: inherit;
    transition: color var(--transition-fast);
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.footer-social-link:hover {
    color: var(--gold) !important;
    border-color: var(--gold);
    transform: translateY(-3px);
    background: transparent; /* No yellow circle on hover */
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.footer-social-link:hover i {
    color: var(--gold) !important;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

.shop-header {
    background: linear-gradient(135deg, var(--ivory-dark), var(--cream));
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-muted), transparent 70%);
    pointer-events: none;
}

.shop-layout {
    display: flex;
    gap: 40px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-inner {
    background: var(--cream);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 120px;
}

.main-content {
    flex-grow: 1;
}

.sidebar-section-title {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-body);
}

.search-bar {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.search-bar:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-secondary);
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.category-list a:hover {
    background: var(--gold-muted);
    color: var(--gold-dark);
    padding-left: 16px;
}

.category-list a.active {
    color: var(--gold-dark);
    font-weight: 600;
    background: var(--gold-muted);
}

/* Sort Buttons */
.sort-btn {
    display: block;
    font-size: 0.8rem;
    padding: 10px 14px;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
}

.sort-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.sort-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    border-color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-gallery img {
    max-width: 100%;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.product-gallery:hover img {
    transform: scale(1.03);
}

.product-meta h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.15;
}

.product-meta .price {
    font-size: 1.8rem;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    margin-bottom: 30px;
    font-weight: 500;
}

.product-meta .desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.9;
}

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

.whatsapp-cta {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #25D366, var(--gold));
}

.breadcrumb {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb .separator {
    color: var(--border);
    font-size: 0.75rem;
}

.breadcrumb .current {
    font-size: 0.75rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   NEW ARRIVALS SECTION
   ============================================================ */

.new-arrivals-section {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   PRODUCT CAROUSEL (Swiper)
   ============================================================ */

.product-carousel {
    padding: 20px 0 50px;
    overflow: hidden;
}

.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    color: var(--gold-dark) !important;
    transition: var(--transition);
}

.product-carousel .swiper-button-next:hover,
.product-carousel .swiper-button-prev:hover {
    background: var(--gold);
    color: var(--primary-dark) !important;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.product-carousel .swiper-button-next::after,
.product-carousel .swiper-button-prev::after {
    font-size: 0.9rem;
    font-weight: bold;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-whatsapp:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* Pulse animation */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */

.admin-login {
    max-width: 440px;
    margin: 80px auto;
    background: var(--cream);
    padding: 50px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.admin-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 24px 0;
}

.admin-sidebar h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.admin-nav li a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border-left: 3px solid var(--gold);
}

.admin-content {
    flex-grow: 1;
    padding: 40px;
    background: var(--ivory);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--ivory);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

td {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

tr:hover td {
    background: var(--gold-muted);
}

/* ============================================================
   MOBILE BOTTOM NAV — Premium app-like experience
   ============================================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 -4px 30px rgba(59, 10, 10, 0.08);
    z-index: 9999;
    padding: 8px 10px 22px;
    border-top: 1px solid var(--border);
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 4px;
    text-decoration: none;
    flex: 1;
    padding: 6px 0;
    transition: var(--transition-fast);
    font-weight: 600;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.15rem;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:active {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item:hover {
    color: var(--gold-dark);
}

.mobile-bottom-nav .cart-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 4px solid var(--ivory);
    box-shadow: 0 8px 24px rgba(59, 10, 10, 0.2);
    transition: var(--transition);
}

.mobile-bottom-nav .cart-btn:hover .cart-icon-wrapper {
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-dark);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s var(--ease-out) forwards;
    opacity: 0;
}

/* Stagger delays */
.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }

/* ============================================================
   SCROLLBAR — Branded
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   RESPONSIVE — Mobile-first refinements
   ============================================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .footer-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    /* Header */
    header nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001; /* Above overlay */
        padding: 5px;
    }

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        margin: 6px auto;
        background-color: var(--gold);
        transition: all 0.3s ease-in-out;
    }

    .header-inner {
        justify-content: space-between;
        height: 65px;
    }

    .logo img {
        height: 50px;
    }

    /* Content spacing */
    body {
        padding-bottom: 85px;
    }

    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hero */
    .hero-slider {
        height: 75vh;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .slide-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
    }

    .welcome-content {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .welcome-content h2 {
        text-align: center !important;
    }

    /* Fixed global typographic responsiveness */
    .motto-heading { font-size: 2.2rem !important; }
    .b2b-hero-heading { font-size: 2.4rem !important; }
    .product-hero-heading { font-size: 2rem !important; }
    
    .motto-section, .b2b-hero-section { padding: 60px 0 !important; }

    .product-details-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 0px !important;
    }

    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .welcome-image-wrapper {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 40px !important;
    }

    /* Responsive Shop Infrastructure */
    .shop-layout-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .shop-layout-grid > * {
        min-width: 0; /* Prevents CSS Grid Blowout from overflow-x */
    }

    /* Redundant Sidebar rules moved below for priority */

    .product-listing-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-card {
        margin-bottom: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .shop-header h1 {
        font-size: 2.2rem !important;
    }

    .mobile-filter-select {
        display: block !important;
        width: 100%;
        padding: 10px 15px;
        border: 1px solid rgba(201, 168, 76, 0.4);
        border-radius: var(--radius-sm);
        background: #FFFFFF;
        font-size: 0.95rem;
        font-family: inherit;
        color: var(--text-primary);
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        margin-bottom: 5px;
    }

    /* Tighter spacing for mobile shop sidebar */
    .shop-sidebar {
        border-right: none !important;
        padding-right: 0 !important;
        border-bottom: 1px solid var(--border) !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
    }

    .shop-sidebar > div {
        margin-bottom: 20px !important;
    }

    .shop-sidebar h4 {
        margin-bottom: 8px !important;
    }

    .mobile-filter-select:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    }

    .desktop-filter-list {
        display: none !important;
    }

    .product-image {
        height: 180px !important;
    }

    .product-info h3 {
        font-size: 0.95rem !important;
    }

    .product-info .btn {
        padding: 8px 0 !important;
    }

    /* Mobile bottom nav */
    .mobile-bottom-nav {
        display: block;
    }

    .floating-whatsapp {
        display: none !important;
    }

    /* Shop layout */
    .shop-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    /* Product details */
    .product-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-meta h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .footer-col {
        text-align: center;
        width: 100%;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .logo {
        display: flex;
        justify-content: center;
    }

    footer p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    footer .footer-social-link {
        display: flex !important;
        flex-direction: row !important;
        color: var(--gold) !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(201,168,76,0.15) !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Grids */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Product card mobile */
    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 14px 16px 18px;
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    /* Admin */
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .product-meta h1 {
        font-size: 1.7rem;
    }

    .hero-slider {
        height: 65vh;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.72rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gold { color: var(--gold) !important; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-ivory { background: var(--ivory) !important; }
.bg-primary { background: var(--primary) !important; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-surface));
    padding: 70px 0;
    text-align: center;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1), transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-form-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-read-more {
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PREMIUM ADMIN PANEL
   ============================================================ */

.admin-body {
    background: var(--admin-bg);
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--admin-text);
}

/* Admin Login — Full-Screen Premium */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F0E13 0%, #1A1520 40%, #0F0E13 100%);
    position: relative;
    overflow: hidden;
}

.admin-login-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 40% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(59, 10, 10, 0.08) 0%, transparent 50%);
    animation: adminBgFloat 15s ease-in-out infinite;
}

@keyframes adminBgFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, 2%); }
}

.admin-login-card {
    width: 420px;
    max-width: 92vw;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.admin-login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 35px;
}

.admin-login-header img {
    height: 70px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.2));
}

.admin-login-header h1 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.admin-login-header p {
    color: rgba(224, 221, 215, 0.5);
    font-size: 0.85rem;
}

.admin-form-group {
    margin-bottom: 22px;
}

.admin-form-group label {
    display: block;
    font-size: 0.75rem;
    color: rgba(224, 221, 215, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.admin-input-wrapper {
    position: relative;
}

.admin-input-wrapper i.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(201, 168, 76, 0.4);
    font-size: 0.9rem;
}

.admin-form-control {
    width: 100%;
    padding: 14px 16px 14px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    color: #E0DDD7;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    outline: none;
}

.admin-form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.admin-form-control::placeholder {
    color: rgba(224, 221, 215, 0.3);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(201, 168, 76, 0.5);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 4px;
}

.password-toggle:hover {
    color: var(--gold);
}

.admin-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.admin-btn:hover::before {
    left: 100%;
}

.admin-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
}

.admin-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #5cdb95;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: rgba(201, 168, 76, 0.6);
    font-size: 0.82rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.forgot-link:hover {
    color: var(--gold);
}

/* Admin Modal */
.admin-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.admin-modal-overlay.active {
    display: flex;
}

.admin-modal {
    width: 440px;
    max-width: 92vw;
    padding: 40px 35px;
    background: #1A1520;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    animation: modalSlideIn 0.3s var(--ease-out);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.admin-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.admin-modal-close {
    position: absolute;
    top: 16px; right: 18px;
    background: none;
    border: none;
    color: rgba(224, 221, 215, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
}

.admin-modal-close:hover {
    color: var(--gold);
}

.admin-modal h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.admin-modal p {
    color: rgba(224, 221, 215, 0.5);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-inputs input {
    width: 52px;
    height: 56px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.otp-inputs input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Admin Dashboard */
.admin-panel {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar-new {
    width: 270px;
    background: linear-gradient(180deg, #141118, #1A1520);
    border-right: 1px solid rgba(201, 168, 76, 0.06);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow: hidden; /* Prevent parent overflow */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.admin-sidebar-new::-webkit-scrollbar {
    display: none;
}

.admin-sidebar-logo {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-sidebar-logo img {
    height: 42px;
}

.admin-sidebar-logo {
    padding: 18px 24px; /* Slimmer logo section */
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.admin-sidebar-logo img {
    height: 42px;
}

.admin-sidebar-logo h2 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.admin-sidebar-logo span {
    display: block;
    color: rgba(224, 221, 215, 0.4);
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.admin-nav-new {
    list-style: none;
    padding: 8px; /* Tighter container padding */
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--gold) transparent;
}

.admin-nav-new::-webkit-scrollbar {
    width: 4px; /* Thin scrollbar */
}

.admin-nav-new::-webkit-scrollbar-track {
    background: transparent;
}

.admin-nav-new::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.4); /* Subtle gold */
    border-radius: 10px;
}

.admin-nav-new::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.admin-nav-new li {
    margin-bottom: 6px; /* Space between buttons to prevent touching */
}

.admin-nav-item-category {
    padding: 24px 24px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.admin-nav-new a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px; /* Extra vertical space for clarity (+2px) */
    color: rgba(224, 221, 215, 0.6);
    font-size: 0.88rem; /* Restored slightly for readability */
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.admin-nav-new a:hover {
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold-light);
}

.admin-nav-new a.active {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.06));
    color: var(--gold);
    border-left: 3px solid var(--gold);
}

.admin-nav-new a i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.admin-main-content {
    flex-grow: 1;
    margin-left: 270px;
    background: var(--admin-bg);
    min-height: 100vh;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px;
    background: var(--admin-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar h1 {
    color: #E0DDD7;
    font-size: 1.5rem;
    font-weight: 500;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-topbar-btn {
    padding: 8px 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-topbar-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.admin-content-area {
    padding: 36px;
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.stat-card .stat-icon.gold {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.stat-card .stat-icon.maroon {
    background: rgba(59, 10, 10, 0.3);
    color: #ff7b7b;
}

.stat-card .stat-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: #5cdb95;
}

.stat-card .stat-icon.blue {
    background: rgba(66, 133, 244, 0.1);
    color: #6BACF7;
}

.stat-card h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(224, 221, 215, 0.5);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-card .stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E0DDD7;
    font-family: var(--font-heading);
}

/* Admin Table Wrapper */
.admin-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.admin-table-header h3 {
    color: #E0DDD7;
    font-size: 1.1rem;
    font-weight: 500;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    box-shadow: none;
}

.admin-table th {
    background: rgba(201, 168, 76, 0.04);
    color: rgba(201, 168, 76, 0.7);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.admin-table td {
    padding: 16px 20px;
    color: rgba(224, 221, 215, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.04);
}

.admin-table tr:hover td {
    background: rgba(201, 168, 76, 0.03);
}

.admin-table .action-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.admin-table .action-btn.edit {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.admin-table .action-btn.edit:hover {
    background: rgba(201, 168, 76, 0.2);
}

.admin-table .action-btn.delete {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.admin-table .action-btn.delete:hover {
    background: rgba(220, 53, 69, 0.2);
}

/* Admin Form Card */
.admin-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 800px;
}

.admin-form-card .form-control {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 168, 76, 0.12);
    color: #E0DDD7;
    border-radius: var(--radius-sm);
}

/* GLOBAL Fix for Select Box Visibility significantly improved for all modes */
select option {
    background-color: #1A1520 !important; /* Forces Dark Background */
    color: #E0DDD7 !important; /* Forces Light Text */
}

body.admin-light-mode select option,
body:not(.admin-body) select option {
    background-color: #FFFFFF !important; /* Classic White for non-admin/day mode */
    color: #333333 !important; /* Classic Dark for non-admin/day mode */
}

.admin-form-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.admin-form-card label {
    color: rgba(224, 221, 215, 0.7);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.admin-form-card select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Admin Sidebar Responsive */
@media (max-width: 900px) {
    .admin-sidebar-new {
        width: 68px;
        overflow: hidden;
    }
    .admin-sidebar-logo h2,
    .admin-sidebar-logo span,
    .admin-nav-new a span {
        display: none;
    }
    .admin-sidebar-logo {
        padding: 20px 14px;
        justify-content: center;
    }
    .admin-nav-new a {
        justify-content: center;
        padding: 14px;
    }
    .admin-main-content {
        margin-left: 68px;
    }
}

@media (max-width: 600px) {
    .admin-sidebar-new {
        display: none;
    }
    .admin-main-content {
        margin-left: 0;
    }
    .admin-content-area {
        padding: 20px 16px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}/* 
   ============================================================
   ADMIN LIGHT MODE - FINAL OVERRIDES 
   ============================================================ */
body.admin-light-mode {
    --admin-bg:       #F5F2EF !important;
    --admin-surface:  #FFFFFF !important;
    --admin-card-bg:  #FFFFFF !important;
    --admin-border:   rgba(0, 0, 0, 0.08) !important;
    --admin-text:     #1C1210 !important;
    --admin-text-muted: #6B5E54 !important;
    --admin-gold:     #C9A84C !important;
    background: var(--admin-bg) !important;
    color: var(--admin-text) !important;
}

body.admin-light-mode .admin-main-content { background: var(--admin-bg) !important; }
body.admin-light-mode .admin-sidebar-new { background: #FFFFFF !important; border-right: 1px solid rgba(0,0,0,0.06) !important; }
body.admin-light-mode .admin-topbar { background: rgba(255,255,255,0.8) !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
body.admin-light-mode .admin-topbar h1 { color: var(--admin-text) !important; }
body.admin-light-mode .admin-nav-new a { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-nav-new a:hover { background: rgba(201,168,76,0.1) !important; color: var(--admin-gold) !important; }
body.admin-light-mode .admin-nav-new a.active { background: rgba(201,168,76,0.1) !important; color: var(--admin-gold) !important; border-left-color: var(--admin-gold) !important; }
body.admin-light-mode .admin-form-card,
body.admin-light-mode .admin-table-wrapper,
body.admin-light-mode .stat-card { background: var(--admin-surface) !important; border-color: var(--admin-border) !important; }
body.admin-light-mode .admin-table th { background: #FAF9F7 !important; color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-table td { color: var(--admin-text) !important; border-bottom-color: rgba(0,0,0,0.04) !important; }
body.admin-light-mode .admin-table tr:hover td { background: #FFFBF5 !important; }
body.admin-light-mode .admin-form-card label { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-form-card .form-control { background: #FFFFFF !important; border-color: rgba(0,0,0,0.1) !important; color: var(--admin-text) !important; }
body.admin-light-mode .admin-topbar-btn { background: rgba(0, 0, 0, 0.04) !important; border-color: rgba(0,0,0,0.08) !important; color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-topbar-btn:hover { background: rgba(201,168,76,0.1) !important; border-color: var(--gold) !important; color: var(--gold) !important; }
body.admin-light-mode .settings-tab.active { color: var(--admin-gold) !important; border-bottom-color: var(--admin-gold) !important; }

/* Dashboard & Stat Cards */
body.admin-light-mode .stat-card h4 { color: var(--admin-text-muted) !important; }
body.admin-light-mode .stat-card .stat-value { color: var(--admin-text) !important; }
body.admin-light-mode .admin-table-header h3 { color: var(--admin-text) !important; }

/* Sidebar Logo & Navigation */
body.admin-light-mode .admin-sidebar-logo h2 { color: var(--primary) !important; } /* Use brand maroon for logo text in light mode */
body.admin-light-mode .admin-sidebar-logo span { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-nav-new a { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-nav-new a i { color: var(--admin-text-muted) !important; }

/* Content Headings & Text */
body.admin-light-mode .admin-content-area h2, 
body.admin-light-mode .admin-content-area h3, 
body.admin-light-mode .admin-content-area h4 { color: var(--admin-text) !important; }
body.admin-light-mode .admin-content-area p { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-form-card h3 { color: var(--admin-text) !important; }

/* Action Buttons & Labels */
body.admin-light-mode .form-group label { color: var(--admin-text-muted) !important; }
body.admin-light-mode .admin-input-wrapper .password-toggle i { color: var(--admin-text-muted) !important; }

/* ============================================================
   MOBILE EDITORIAL MENU — High-Fidelity App Model
   ============================================================ */

.mobile-overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--ivory);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-overlay-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    width: 100%;
}

.mobile-nav-content ul {
    list-style: none;
    text-align: left;
    width: 100%;
}

.mobile-nav-content li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-content li:last-child {
    border-bottom: none;
}

.mobile-overlay-nav.active .mobile-nav-content li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay-nav.active .mobile-nav-content li:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(5) { transition-delay: 0.3s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(6) { transition-delay: 0.35s; }
.mobile-overlay-nav.active .mobile-nav-content li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-content a {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    transition: color 0.3s;
}

.mobile-nav-content a::after {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.mobile-nav-content a:hover {
    color: var(--gold-dark);
}

.mobile-nav-content a:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

/* Redesigned Mobile Social Bottom */
.mobile-socials {
    margin-top: 50px !important;
    padding-top: 30px;
    border-top: 1px dashed rgba(201, 168, 76, 0.3);
}

.mobile-socials a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-dark) !important;
    transition: all 0.3s;
}

.mobile-socials a:hover {
    background: var(--gold);
    color: white !important;
    border-color: var(--gold);
}

body.no-scroll {
    overflow: hidden !important;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
