/* ===================== VED GAVYA DAIRY - MAIN STYLES ===================== */

:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8940D;
    --cream: #FFFDF4;
    --cream-dark: #FFF8E1;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(46,125,50,0.18);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
}

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

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

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===================== BUTTONS ===================== */
.btn-primary-brand {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-brand:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.4);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212,175,55,0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.btn-outline-brand {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-brand:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================== NAVBAR ===================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.navbar-brand-text {
    line-height: 1;
}
.navbar-brand-text .brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.navbar-brand-text .brand-tagline {
    font-size: 0.65rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
    background: rgba(46,125,50,0.06);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #388E3C 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-pattern.svg') center/cover no-repeat;
    opacity: 0.05;
}
.hero-section .hero-badge {
    background: rgba(212,175,55,0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-section h1 .highlight {
    color: var(--gold);
}
.hero-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.hero-image-container {
    text-align: center;
}
.hero-image-container img {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-label {
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    position: relative;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== PRODUCT CARDS ===================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.product-card-image {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-card-image img {
    transform: scale(1.06);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.product-badge.gold { background: var(--gold); color: var(--text-dark); }
.product-badge.out { background: #f44336; }

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.price-sale {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.price-mrp {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-discount {
    font-size: 0.8rem;
    color: #e53935;
    font-weight: 700;
    background: #ffebee;
    padding: 2px 8px;
    border-radius: 50px;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    margin-top: auto;
}
.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46,125,50,0.35);
    color: var(--white);
}
.btn-add-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ===================== CATEGORY CARDS ===================== */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: block;
    color: inherit;
}
.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: inherit;
}
.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(212,175,55,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    transition: var(--transition);
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.category-card h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ===================== FEATURES SECTION ===================== */
.feature-card {
    text-align: center;
    padding: 32px 20px;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(46,125,50,0.3);
}
.feature-card h5 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================== REVIEW CARDS ===================== */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: var(--text-dark); font-style: italic; margin-bottom: 16px; }
.reviewer-name { font-weight: 700; color: var(--primary-dark); }

/* ===================== FORM STYLES ===================== */
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
    background: var(--white);
}
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.auth-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    max-width: 480px;
    margin: 0 auto;
}
.auth-logo { width: 90px; height: 90px; object-fit: contain; }

/* ===================== CART / CHECKOUT ===================== */
.cart-table { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th { background: var(--primary); color: var(--white); padding: 14px 20px; font-weight: 600; border: none; }
.cart-table td { padding: 16px 20px; vertical-align: middle; border-bottom: 1px solid var(--border); }
.cart-product-image { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 32px; height: 32px; border: 1.5px solid var(--primary); background: transparent; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-weight: 700; }
.qty-btn:hover { background: var(--primary); color: var(--white); }
.qty-input { width: 50px; text-align: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 4px; font-weight: 600; }

.order-summary-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 80px;
}
.order-summary-card h5 {
    font-weight: 700;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--cream-dark);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; }
.summary-row.total { font-weight: 800; font-size: 1.1rem; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 8px; color: var(--primary-dark); }

/* ===================== ORDER STATUS BADGES ===================== */
.status-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}
.status-pending { background: #fff3e0; color: #e65100; }
.status-confirmed { background: #e3f2fd; color: #1565c0; }
.status-packed { background: #f3e5f5; color: #6a1b9a; }
.status-shipped { background: #e0f7fa; color: #006064; }
.status-delivered { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #ffebee; color: #b71c1c; }
.status-refunded { background: #fce4ec; color: #880e4f; }

/* ===================== WALLET / REFERRAL ===================== */
.wallet-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(46,125,50,0.3);
}
.wallet-amount { font-size: 2.8rem; font-weight: 800; color: var(--gold); }
.referral-code-box {
    background: var(--cream-dark);
    border: 2px dashed var(--gold);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.referral-code-text { font-size: 1.4rem; font-weight: 800; letter-spacing: 4px; color: var(--primary-dark); }

/* ===================== FOOTER ===================== */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark), #0d3b10);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-logo img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.footer-brand-name { font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-top: 10px; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
.footer-heading { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { background: rgba(0,0,0,0.2); margin-top: 40px; padding: 16px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}
.social-link:hover { background: var(--gold); color: var(--text-dark); transform: translateY(-3px); }

/* ===================== ALERTS ===================== */
.alert-brand {
    background: linear-gradient(90deg, rgba(46,125,50,0.1), rgba(46,125,50,0.05));
    border: 1px solid rgba(46,125,50,0.3);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    padding: 14px 20px;
}
.alert-gold {
    background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.4);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    color: #7a6000;
    padding: 14px 20px;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 48px 0;
    color: var(--white);
    margin-bottom: 48px;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--gold); }

/* ===================== INVOICE ===================== */
.invoice-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 32px; border-radius: 12px 12px 0 0; }
.invoice-body { padding: 32px; }
.invoice-table th { background: var(--primary); color: var(--white); }
.invoice-logo { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }

/* ===================== LOADING SPINNER ===================== */
.spinner-brand { color: var(--primary); }

/* ===================== TOAST NOTIFICATION ===================== */
.toast-container-brand {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}
.toast-brand {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    min-width: 280px;
    animation: slideIn 0.3s ease;
}
.toast-brand.toast-success { border-left-color: var(--primary); }
.toast-brand.toast-error { border-left-color: #e53935; }
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===================== ADMIN SIDEBAR ===================== */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark), #0d3b10);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition);
}
.admin-sidebar .sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-sidebar .sidebar-logo img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--gold); }
.admin-sidebar .sidebar-logo .brand { color: var(--gold); font-weight: 800; font-size: 1rem; }
.admin-sidebar .sidebar-logo .sub { color: rgba(255,255,255,0.5); font-size: 0.7rem; }
.admin-sidebar .sidebar-nav { padding: 16px 0; }
.admin-sidebar .nav-group-label { color: rgba(255,255,255,0.35); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 20px 6px; }
.admin-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    border-left: 3px solid transparent;
    margin: 2px 0;
}
.admin-sidebar .sidebar-link:hover, .admin-sidebar .sidebar-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-left-color: var(--gold);
}
.admin-sidebar .sidebar-link i { width: 20px; text-align: center; font-size: 1rem; }

.admin-content { margin-left: 260px; min-height: 100vh; background: #f4f6f9; }
.admin-topbar {
    background: var(--white);
    padding: 14px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
}
.admin-page-content { padding: 28px; }

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.stat-icon.green { background: rgba(46,125,50,0.12); color: var(--primary); }
.stat-icon.gold { background: rgba(212,175,55,0.15); color: var(--gold-dark); }
.stat-icon.blue { background: rgba(25,118,210,0.1); color: #1976D2; }
.stat-icon.orange { background: rgba(245,124,0,0.1); color: #F57C00; }
.stat-icon.red { background: rgba(229,57,53,0.1); color: #E53935; }
.stat-icon.purple { background: rgba(106,27,154,0.1); color: #6A1B9A; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* ===================== TABLES ===================== */
.admin-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.admin-table tbody tr:hover { background: rgba(46,125,50,0.04); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-image-container { display: none; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .auth-card { padding: 32px 24px; }
    .section-header h2 { font-size: 1.7rem; }
}

/* ===================== ANIMATIONS ===================== */
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.scale-hover { transition: var(--transition); }
.scale-hover:hover { transform: scale(1.02); }

/* ===================== MISC ===================== */
.section-bg { background: var(--white); }
.section-bg-cream { background: var(--cream-dark); }
.text-primary-brand { color: var(--primary) !important; }
.text-gold { color: var(--gold-dark) !important; }
.bg-primary-brand { background: var(--primary) !important; }
.border-primary-brand { border-color: var(--primary) !important; }
.rounded-brand { border-radius: var(--radius) !important; }

.page-section { padding: 72px 0; }
.page-section-sm { padding: 48px 0; }

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.empty-state i { font-size: 4rem; color: rgba(46,125,50,0.2); margin-bottom: 20px; }
.empty-state h4 { color: var(--text-dark); font-weight: 700; margin-bottom: 10px; }
