/* ============================================================
   File: public/assets/css/theme.css
   Emerald Earth — Ceylon Gems Design System
   Import this on every page alongside Tailwind CDN
============================================================ */

/* ============================================================
   GOOGLE FONTS IMPORT
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');


/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
============================================================ */
:root {
    /* --- Colours --- */
    --forest:        #1A3D2B;
    --forest-light:  #234D37;
    --forest-dark:   #122B1E;
    --forest-deep:   #0D1F15;

    --gold:          #C9A84C;
    --gold-light:    #D4B86A;
    --gold-dark:     #A8882A;
    --gold-pale:     #F0E6C8;

    --ivory:         #F7F3EC;
    --ivory-warm:    #EDE6D8;
    --ivory-deep:    #D8CEB8;

    --earth:         #7A6B58;
    --earth-light:   #9A8B78;
    --earth-dark:    #5A4E3E;

    /* --- Typography --- */
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'DM Sans', system-ui, sans-serif;

    /* --- Spacing --- */
    --nav-height:    72px;

    /* --- Transitions --- */
    --transition:    all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.18s ease;
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--forest);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
}

input, textarea, select {
    font-family: var(--font-body);
}


/* ============================================================
   TYPOGRAPHY
============================================================ */
.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

/* Display headings */
h1, h2, h3, .h1, .h2, .h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--forest);
}

/* Section label — small uppercase eyebrow text */
.label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Section title */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--forest);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* Gold gradient text */
.text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

/* Gold horizontal rule */
.gold-rule {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    display: inline-block;
    flex-shrink: 0;
}

/* Gold divider — centered */
.gold-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

/* Section header block */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}


/* ============================================================
   BUTTONS
============================================================ */

/* Primary — gold gradient */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--forest-deep);
}
.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
    color: var(--forest-deep);
}

.btn-forest {
    background: var(--forest);
    color: var(--ivory);
}
.btn-forest:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 61, 43, 0.25);
    color: var(--ivory);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
}

.btn-outline-ivory {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid rgba(247, 243, 236, 0.5);
}
.btn-outline-ivory:hover {
    border-color: var(--ivory);
    background: rgba(247, 243, 236, 0.08);
    color: var(--ivory);
}

/* Button sizes */
.btn-sm  { padding: 9px 22px; font-size: 10px; }
.btn-lg  { padding: 16px 42px; font-size: 12px; }


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(13, 31, 21, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.navbar-logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.navbar-logo-sub {
    font-family: var(--font-body);
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.26em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 1px;
}

/* Nav links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar-links a {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.65);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--gold);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

/* Navbar right side */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Cart icon */
.cart-icon {
    position: relative;
    color: rgba(247, 243, 236, 0.7);
    transition: color 0.2s;
    line-height: 0;
}
.cart-icon:hover { color: var(--gold); }

.cart-badge {
    position: absolute;
    top: -6px; right: -7px;
    width: 17px; height: 17px;
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar spacer */
.navbar-spacer {
    height: var(--nav-height);
}


/* ============================================================
   CARDS — GEM
============================================================ */
.gem-card {
    background: #fff;
    border: 1px solid var(--ivory-deep);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.gem-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 56px rgba(26, 61, 43, 0.13), 0 0 0 1px rgba(201, 168, 76, 0.25);
    border-color: rgba(201, 168, 76, 0.35);
}

.gem-card:hover .gem-card-img {
    transform: scale(1.07);
}

.gem-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.gem-card-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gem-card-body {
    padding: 20px 22px 22px;
}

.gem-card-type {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.gem-card-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 5px;
    line-height: 1.2;
}

.gem-card-origin {
    font-size: 12px;
    color: var(--earth);
    margin-bottom: 10px;
}

.gem-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.gem-tag {
    background: #EBF2EE;
    color: var(--forest);
    font-size: 10px;
    font-weight: 500;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.gem-tag-rare {
    background: #FEF8EC;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.gem-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--ivory-warm);
}

.gem-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--forest);
    line-height: 1;
}

.gem-price-per {
    font-size: 11px;
    color: var(--earth);
    margin-top: 2px;
}

/* Gem badges */
.gem-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 11px;
}

.gem-badge-rare {
    background: var(--forest);
    color: var(--gold);
}

.gem-badge-new {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest-deep);
}

.gem-badge-cert {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 11px;
    background: rgba(13, 31, 21, 0.88);
    color: var(--gold);
}


/* ============================================================
   CARDS — TOUR
============================================================ */
.tour-card {
    background: #fff;
    border: 1px solid var(--ivory-deep);
    overflow: hidden;
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(26, 61, 43, 0.11);
}

.tour-card:hover .tour-card-img {
    transform: scale(1.05);
}

.tour-card-img-wrap {
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-card-body {
    padding: 28px 30px;
}


/* ============================================================
   FORMS
============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--earth-dark);
    margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid var(--ivory-deep);
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--forest);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 2px rgba(26, 61, 43, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 12px;
    color: #DC2626;
    margin-top: 5px;
}


/* ============================================================
   FLASH MESSAGES
============================================================ */
.flash {
    padding: 14px 18px;
    border-left: 3px solid;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
}

.flash-success { background: #F0FDF4; border-color: #22C55E; color: #166534; }
.flash-error   { background: #FEF2F2; border-color: #EF4444; color: #991B1B; }
.flash-warning { background: #FFFBEB; border-color: #F59E0B; color: #92400E; }
.flash-info    { background: #EFF6FF; border-color: #3B82F6; color: #1E40AF; }


/* ============================================================
   STAT STRIP (used on homepage)
============================================================ */
.stat-strip {
    background: var(--forest);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.5);
}


/* ============================================================
   TESTIMONIAL CARD
============================================================ */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.18);
    padding: 32px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(247, 243, 236, 0.88);
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.4);
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.3;
}

.testimonial-location {
    font-size: 11px;
    color: rgba(247, 243, 236, 0.45);
    margin-top: 2px;
}


/* ============================================================
   ADMIN PANEL
============================================================ */

/* Admin stat card */
.admin-stat-card {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

/* Admin data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.data-table thead th {
    padding: 11px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B7280;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    text-align: left;
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.12s;
}

.data-table tbody tr:hover { background: #F9FAFB; }

.data-table tbody td {
    padding: 13px 16px;
    color: #374151;
    vertical-align: middle;
}

/* Admin form inputs */
.admin-input {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 9px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-input:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 2px rgba(26, 61, 43, 0.1);
}

.admin-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4B5563;
    margin-bottom: 6px;
}

/* Admin buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.admin-btn-primary   { background: var(--forest); color: #fff; }
.admin-btn-primary:hover { background: var(--forest-light); color: #fff; }

.admin-btn-danger    { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }
.admin-btn-danger:hover { background: #FEE2E2; }

.admin-btn-secondary { background: #F9FAFB; color: #374151; border: 1px solid #E5E7EB; }
.admin-btn-secondary:hover { background: #F3F4F6; }

.admin-btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--forest-deep); }
.admin-btn-gold:hover { box-shadow: 0 4px 14px rgba(201,168,76,0.35); }

/* Status badges */
.badge {
    display: inline-block;
    padding: 3px 11px;
    font-size: 10.5px;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.badge-green  { background: #D1FAE5; color: #065F46; }
.badge-yellow { background: #FEF9C3; color: #854D0E; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-gray   { background: #F3F4F6; color: #4B5563; }
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.badge-gold   { background: #FEF3C7; color: #92400E; }


/* ============================================================
   SCROLL TO TOP BUTTON
============================================================ */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 99;
    width: 44px; height: 44px;
    background: var(--forest);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--forest-deep);
}


/* ============================================================
   TOAST NOTIFICATION
============================================================ */
.toast {
    position: fixed;
    top: 88px; right: 24px;
    z-index: 200;
    background: var(--forest);
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    max-width: 300px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toast.show {
    transform: translateX(0);
}

.toast-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 13px;
    color: rgba(247, 243, 236, 0.88);
}


/* ============================================================
   UTILITY OVERRIDES
============================================================ */

/* Pattern background (dot grid) */
.pattern-dots {
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.1) 1px, transparent 1px);
    background-size: 26px 26px;
}

/* Dark section */
.section-dark {
    background: var(--forest);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: var(--ivory);
}

/* Cream section */
.section-cream {
    background: var(--gold-pale);
}


/* ============================================================
   LUCIDE ICON SIZING
============================================================ */
.navbar-logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--forest-deep);
    color: var(--forest-deep);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}


/* ============================================================
   FOOTER — SOCIAL & CONTACT ICONS
============================================================ */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: rgba(201, 168, 76, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    border-color: rgba(201, 168, 76, 0.6);
    color: var(--gold);
}

.footer-social-icon svg {
    width: 15px;
    height: 15px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 1px;
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
}


/* ============================================================
   FOOTER GRID — RESPONSIVE
============================================================ */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 44px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 6px !important;
    }
}


/* ============================================================
   MOBILE NAVIGATION DRAWER
============================================================ */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.28);
    color: rgba(247, 243, 236, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 4px;
}

.nav-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-toggle svg {
    width: 18px;
    height: 18px;
}

.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 300;
    width: 300px;
    max-width: 88vw;
    height: 100vh;
    background: var(--forest-deep);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(13, 31, 21, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-inner {
    padding: 0 28px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    margin-bottom: 28px;
    flex-shrink: 0;
}

.nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: rgba(247, 243, 236, 0.55);
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-close svg {
    width: 15px;
    height: 15px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav-links li a {
    display: block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.5);
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: color 0.2s;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: var(--gold);
}

.mobile-nav-footer {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: rgba(247, 243, 236, 0.6);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-cart-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* ============================================================
   RESPONSIVE — NAVBAR
============================================================ */
@media (max-width: 900px) {
    .navbar-links    { display: none; }
    .navbar-shop-btn { display: none !important; }
    .nav-toggle      { display: flex; }
    .navbar-inner    { gap: 12px; }
}

@media (max-width: 480px) {
    .navbar-inner     { padding: 0 20px; }
    .navbar-logo-name { font-size: 17px; }
    .navbar-logo-sub  { display: none; }
}


/* ============================================================
   RESPONSIVE — GENERAL
============================================================ */
@media (max-width: 560px) {
    .container  { padding: 0 20px; }
    .section    { padding: 64px 0; }
    .section-sm { padding: 44px 0; }
}