/* ==========================================================================
   PERFUME BAR — LUXURY BLACK & GOLD DESIGN SYSTEM
   High-End Fragrance Boutique CSS (Surpassing sample for PB.webp)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0D0D0F;
    --bg-card: #141419;
    --bg-card-hover: #1C1C24;
    --bg-glass: rgba(20, 20, 25, 0.85);
    
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-bright: #FFD700;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA771C 100%);
    --gold-glow: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(13, 13, 15, 0) 70%);
    
    --text-main: #F5F5F7;
    --text-muted: #9E9EA8;
    --text-gold: #E5C158;
    
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-gold-hover: rgba(212, 175, 55, 0.6);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.7);
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted { color: var(--text-muted); }

/* Containers */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement Strip */
.announcement-bar {
    background: linear-gradient(90deg, #0A0A0C, #18171C, #0A0A0C);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    color: var(--gold-light);
    position: relative;
    z-index: 100;
}

.announcement-bar strong {
    color: var(--gold-bright);
}

/* Navigation & Header */
.main-header {
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.brand-logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #D1D1D6;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mega Menu Dropdown */
.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 900px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 120;
}

.mega-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.brand-menu-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.brand-menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.mega-featured-card {
    background: radial-gradient(circle, #1E1D26 0%, #141419 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.mega-featured-card img {
    height: 140px;
    object-fit: contain;
    margin: 0 auto 15px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.action-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.action-icon-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: justify-content;
    justify-content: center;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #0D0D0F;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* Floating Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 995;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-5px);
}

/* Mobile Drawer Menu */
.hamburger-btn {
    display: none !important;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-drawer {
    display: none !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #141419;
    border-right: 1px solid var(--border-gold);
    z-index: 9999;
    padding: 30px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    overflow-y: auto;
}

.mobile-drawer-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .hamburger-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-drawer {
        display: block !important;
    }
    
    .mobile-drawer-overlay {
        display: block !important;
    }
    
    .mobile-drawer.open {
        left: 0;
    }
    
    .mobile-drawer-overlay.visible {
        opacity: 1;
        visibility: visible;
    }
}


/* Tabbed System (Product Reviews & Details) */
.tab-headers {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--gold-primary);
    font-weight: 700;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Star Rating Selector */
.star-rating-select {
    display: flex;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 15px;
}


/* Hero Section (Recreating & Exceeding sample for PB.webp) */
.hero-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(13, 13, 15, 1) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 .gold-highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-bottle-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--gold-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-bottle-img {
    position: relative;
    z-index: 2;
    max-height: 520px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9));
    animation: floatBottle 5s ease-in-out infinite alternate;
}

@keyframes floatBottle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* Category Banners / Feature Header */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-tag {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

/* Product Cards (Matching & Exceeding sample for PB.webp) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.2);
}

.badge-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
}

.btn-wishlist-card {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.btn-wishlist-card:hover, .btn-wishlist-card.active {
    color: #E74C3C;
    border-color: #E74C3C;
    background: rgba(231, 76, 60, 0.1);
}

.product-img-wrapper {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 220px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img.primary-img {
    opacity: 0;
    transform: scale(1.05);
}

.product-img-wrapper img.hover-img {
    position: absolute;
    opacity: 0;
}

.product-card:hover .product-img-wrapper img.hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.product-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    min-height: 48px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-card-add {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-card-add:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Scent Notes / Olfactory Pyramid Section */
.scent-pyramid-section {
    padding: 100px 0;
    background: #09090B;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.note-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.note-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.note-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

/* Craftsmanship Hotspots (As seen in sample for PB.webp) */
.craftsmanship-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #171620 0%, #0D0D0F 100%);
}

.craft-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

.craft-bottle-img {
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9));
}

.hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 3px solid #0D0D0F;
    cursor: pointer;
    box-shadow: 0 0 20px var(--gold-bright);
    animation: pulseHotspot 2s infinite;
}

@keyframes pulseHotspot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid var(--gold-primary);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-main);
    display: none;
    box-shadow: var(--shadow-card);
    z-index: 20;
}

.hotspot:hover .hotspot-tooltip {
    display: block;
}

/* Floating WhatsApp Chat Assistant */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Sticky Mobile Navigation Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0A0A0C;
    border-top: 1px solid var(--border-gold);
    padding: 10px 0;
    z-index: 998;
}

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

.mobile-bottom-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-bottom-bar a.active, .mobile-bottom-bar a:hover {
    color: var(--gold-primary);
}

/* Footer Styling */
.main-footer {
    background: #08080A;
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Admin Panel Base Styling */
.admin-body {
    background-color: #0A0A0C;
}

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

.admin-sidebar {
    width: 260px;
    background: #121217;
    border-right: 1px solid var(--border-gold);
    padding: 30px 20px;
}

.admin-main {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th, .admin-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Responsive Media Queries */

/* ✅ DESKTOP ONLY: Force-hide mobile elements */
@media (min-width: 1025px) {
    .hamburger-btn,
    .mobile-drawer,
    .mobile-drawer-overlay {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-stats { justify-content: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger-btn { display: flex !important; align-items: center; justify-content: center; visibility: visible !important; }
}


@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.3rem; }
    .mobile-bottom-bar { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-wrapper { height: 75px; }
    .brand-logo { font-size: 1.4rem; }
    .brand-logo img { height: 38px; }
}


/* ==========================================================================
   ADMIN PANEL — Layout & Component Styles
   ========================================================================== */

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

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    background: #0F0F13;
    border-right: 1px solid rgba(212,175,55,0.12);
    padding: 30px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.2) transparent;
}
.admin-sidebar a { text-decoration: none; transition: all 0.25s; }
.admin-sidebar a:hover { color: #D4AF37 !important; background: rgba(212,175,55,0.08) !important; }
.admin-sidebar ul { list-style: none; }

/* Admin Main Content */
.admin-main {
    padding: 40px;
    color: var(--text-main);
}
.admin-main h1 {
    color: #FFF;
    font-family: var(--font-heading);
}

/* Admin Cards */
.admin-card {
    background: #141419;
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

/* Admin Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.admin-table th {
    padding: 12px 16px;
    text-align: left;
    color: #9E9EA8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #CCC;
    vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(212,175,55,0.03); }

/* Admin Form Inputs */
.admin-main input[type="text"],
.admin-main input[type="email"],
.admin-main input[type="number"],
.admin-main input[type="password"],
.admin-main select,
.admin-main textarea {
    background: #0D0D0F;
    border: 1px solid rgba(212,175,55,0.2);
    color: #FFF;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}
.admin-main input:focus,
.admin-main select:focus,
.admin-main textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Status Badges */
.badge-active   { background: rgba(46,204,113,0.15);  color: #2ecc71; border: 1px solid rgba(46,204,113,0.3);  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.badge-inactive { background: rgba(231,76,60,0.12);   color: #e74c3c; border: 1px solid rgba(231,76,60,0.3);   padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.badge-pending  { background: rgba(241,196,15,0.12);  color: #f1c40f; border: 1px solid rgba(241,196,15,0.3);  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.badge-gold     { background: rgba(212,175,55,0.15);  color: #D4AF37; border: 1px solid rgba(212,175,55,0.3);  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: inline-block; }

/* Admin Responsive */
@media (max-width: 1024px) {
    .admin-layout { grid-template-columns: 220px 1fr; }
    .admin-main   { padding: 25px; }
}
@media (max-width: 768px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-main   { padding: 20px; }
}
