@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --bg: #0e0d0c;
    --bg-nav: rgba(14, 13, 12, 0.94);
    --bg-card: #1a1815;
    --bg-card2: #111009;
    --bg-muted: #2a2620;
    --fg: #f0ece4;
    --fg-muted: #a89e8a;
    --fg-dim: #7d7264;
    --fg-dimmer: #4a4540;
    --gold: #c9a84c;
    --gold-hover: #dbbf6b;
    --gold-text: #0e0d0c;
    --border: #2e2a24;
    --border-hover: rgba(201, 168, 76, 0.3);
    --overlay: rgba(14, 13, 12, 0.70);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --radius: 4px;
}

:root.light {
    --bg: #f7f3ec;
    --bg-nav: rgba(247, 243, 236, 0.96);
    --bg-card: #ffffff;
    --bg-card2: #f0ebe0;
    --bg-muted: #ede8de;
    --fg: #1a1410;
    --fg-muted: #5c4f3a;
    --fg-dim: #8a7560;
    --fg-dimmer: #b8a890;
    --gold: #a8822a;
    --gold-hover: #c9a84c;
    --gold-text: #ffffff;
    --border: #ddd5c4;
    --border-hover: rgba(168, 130, 42, 0.3);
    --overlay: rgba(247, 243, 236, 0.70);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Vazirmatn', system-ui, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fg-dim);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--fg);
}

p {
    color: var(--fg-muted);
}

a {
    color: var(--fg);
    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

/* Navbar */
#site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s;
}

#site-navbar .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

#site-navbar .nav-logo img {
    height: 36px;
}

#site-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#site-navbar .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--fg-muted);
    transition: color 0.2s;
    white-space: nowrap;
}

#site-navbar .nav-links a:hover, #site-navbar .nav-links a.active {
    color: var(--gold);
}

#site-navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    position: relative;
}

.nav-icon-btn:hover {
    color: var(--gold);
    background: var(--bg-muted);
}

.cart-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background: var(--gold);
    color: var(--gold-text);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#cart-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 1001;
    display: none;
}

#cart-dropdown.open {
    display: block;
}

.cart-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-dropdown-item img {
    width: 48px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
}

.cart-dropdown-item .item-info {
    flex: 1;
    min-width: 0;
}

.cart-dropdown-item .item-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-dropdown-item .item-meta {
    font-size: 0.72rem;
    color: var(--fg-dim);
    margin-top: 2px;
}

.cart-dropdown-item .item-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--gold-text);
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--gold-text);
}

.btn-gold:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.btn-outline {
    background: transparent;
    color: var(--fg-muted);
    border: 1px solid var(--border);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--fg-muted);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    color: var(--fg);
    background: var(--bg-muted);
}

/* Cards */
.px-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.px-card:hover {
    border-color: var(--border-hover);
}

/* Product card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.product-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.product-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-muted);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    background: var(--gold);
    color: var(--gold-text);
}

.product-card-body {
    padding: 1rem;
}

.product-card-brand {
    font-size: 0.7rem;
    color: var(--fg-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.product-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.15rem;
}

.product-card-notes {
    font-size: 0.72rem;
    color: var(--fg-dim);
    margin-bottom: 0.75rem;
}

.volume-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.vol-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--fg-muted);
    background: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.vol-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.vol-pill.active {
    border-color: var(--gold);
    color: var(--gold-text);
    background: var(--gold);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.price-box .orig {
    font-size: 0.72rem;
    color: var(--fg-dimmer);
    text-decoration: line-through;
    display: block;
}

.price-box .curr {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

.price-box .unit {
    font-size: 0.65rem;
    color: var(--fg-dim);
    margin-top: 1px;
}

.add-cart-btn {
    background: var(--bg-muted);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--fg-muted);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.add-cart-btn:hover {
    background: var(--gold);
    color: var(--gold-text);
}

/* Section titles */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.25rem;
}

.section-sub {
    font-size: 0.8rem;
    color: var(--fg-dim);
}

/* Horizontal scroll */
.h-scroll-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.h-scroll-track::-webkit-scrollbar {
    display: none;
}

.h-scroll-track .product-card {
    min-width: 220px;
    flex-shrink: 0;
}

/* Forms */
.px-input {
    width: 100%;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    color: var(--fg);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.875rem;
    padding: 0.6rem 0.875rem;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s;
}

.px-input:focus {
    border-color: var(--gold);
}

.px-input::placeholder {
    color: var(--fg-dimmer);
}

select.px-input {
    cursor: pointer;
}

textarea.px-input {
    resize: vertical;
}

.px-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fg-muted);
    margin-bottom: 0.35rem;
    display: block;
}

/* Footer */
#site-footer {
    background: var(--bg-card2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 1.5rem 2rem;
    margin-top: 5rem;
}

#site-footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

#site-footer .footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

#site-footer .footer-tagline {
    font-size: 0.78rem;
    color: var(--fg-dim);
}

#site-footer h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

#site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-footer ul li {
    margin-bottom: 0.5rem;
}

#site-footer ul li a {
    font-size: 0.8rem;
    color: var(--fg-dim);
    transition: color 0.2s;
}

#site-footer ul li a:hover {
    color: var(--gold);
}

#site-footer .footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--fg-dimmer);
    text-align: center;
}

.page-body, .site-main {
    padding-top: 65px;
}

/* Alerts */
.px-alert {
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.px-alert-error {
    background: rgba(224, 85, 85, 0.12);
    color: #e05555;
    border: 1px solid rgba(224, 85, 85, 0.25);
}

.px-alert-success {
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

/* Stars */
.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Filter panel */
.filter-panel {
    position: sticky;
    top: 88px;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h6 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.filter-check input {
    accent-color: var(--gold);
    cursor: pointer;
}

.filter-check label {
    font-size: 0.8rem;
    color: var(--fg-muted);
    cursor: pointer;
}

/* Divider */
.px-divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
    max-width: 1280px;
}

/* Mobile nav */
#mobile-nav-panel {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

#mobile-nav-panel.open {
    display: flex;
}

#mobile-nav-panel a {
    font-size: 1.1rem;
    color: var(--fg-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

#mobile-nav-panel a:hover {
    color: var(--gold);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-card2);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.38;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(100, 50, 10, 0.45) 0%, transparent 60%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--overlay) 0%, transparent 45%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--fg);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--fg-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.scroll-indicator p {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-dimmer);
    margin: 0;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border-radius: 100px;
    border: 2px solid var(--fg-dimmer);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    border-radius: 100px;
    background: var(--gold);
    animation: scrollDot 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    60% {
        transform: translateY(14px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Features strip */
.features-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fg);
}

.feature-sub {
    font-size: 0.72rem;
    color: var(--fg-dim);
}

/* Autumn banner */
.autumn-banner {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: var(--radius);
}

.autumn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(100, 55, 10, 0.7) 0%, rgba(10, 8, 5, 0.85) 60%);
}

.autumn-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem;
    text-align: right;
}

/* Cart */
.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    color: var(--fg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s, color 0.2s;
}

.qty-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fg);
    min-width: 20px;
    text-align: center;
}

/* OTP inputs */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    direction: ltr;
}

.otp-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--fg);
    font-family: 'Vazirmatn', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.otp-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

.otp-input.filled {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

/* Dashboard sidebar */
.dash-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 88px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.875rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-muted);
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-family: 'Vazirmatn', sans-serif;
    transition: background 0.15s, color 0.15s;
    margin-bottom: 2px;
}

.dash-nav-item:hover {
    background: var(--bg-muted);
    color: var(--fg);
}

.dash-nav-item.active {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.dash-nav-item.text-danger {
    color: #e05555;
}

.dash-nav-item.text-danger:hover {
    background: rgba(224, 85, 85, 0.1);
}

/* Order card */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.order-card-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.order-status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Address card */
.addr-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

/* Pagination */
.px-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.px-page-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: none;
    color: var(--fg-muted);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.px-page-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.px-page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--gold-text);
}

.px-page-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Spinner */
.px-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Filter overlay */
#filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 500;
}

#filter-overlay.open {
    display: block;
}

#mobile-filter-panel {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 501;
    padding: 1.5rem;
    overflow-y: auto;
    transition: right 0.3s ease;
}

#mobile-filter-panel.open {
    right: 0;
}

/* Bootstrap accordion overrides */
.accordion-button {
    color: var(--fg) !important;
    background-color: var(--bg-card) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(0.6) sepia(1) saturate(3) hue-rotate(0deg);
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
    #site-navbar .nav-links {
        display: none;
    }

    .h-scroll-track .product-card {
        min-width: 180px;
    }

    .autumn-content {
        padding: 1.5rem;
    }

    .autumn-banner {
        height: 280px;
    }

    span.text-lg.font-bold.hidden.sm\:block {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    #mobile-menu-btn {
        display: none !important;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --bg: #0e0d0c;
    --bg-nav: rgba(14, 13, 12, 0.94);
    --bg-card: #1a1815;
    --bg-card2: #111009;
    --bg-muted: #2a2620;
    --fg: #f0ece4;
    --fg-muted: #a89e8a;
    --fg-dim: #7d7264;
    --fg-dimmer: #4a4540;
    --gold: #c9a84c;
    --gold-hover: #dbbf6b;
    --gold-text: #0e0d0c;
    --border: #2e2a24;
    --border-hover: rgba(201, 168, 76, 0.3);
    --overlay: rgba(14, 13, 12, 0.70);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --radius: 4px;
}

:root.light {
    --bg: #f7f3ec;
    --bg-nav: rgba(247, 243, 236, 0.96);
    --bg-card: #ffffff;
    --bg-card2: #f0ebe0;
    --bg-muted: #ede8de;
    --fg: #1a1410;
    --fg-muted: #5c4f3a;
    --fg-dim: #8a7560;
    --fg-dimmer: #b8a890;
    --gold: #a8822a;
    --gold-hover: #c9a84c;
    --gold-text: #ffffff;
    --border: #ddd5c4;
    --border-hover: rgba(168, 130, 42, 0.3);
    --overlay: rgba(247, 243, 236, 0.70);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}