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

:root {
    --bg-main: #0F111A;
    --bg-sidebar: #161925;
    --bg-card: rgba(30, 34, 51, 0.7);
    --bg-input: rgba(255, 255, 255, 0.05);
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --gold-soft: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-main: #E0E0E0;
    --text-dim: #A0A0A0;
    --accent: #00D2FF;
    --success: #00B894;
    --danger: #FF7675;
    --border: 1px solid rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.6); border-radius: 10px; border: 2px solid var(--bg-main); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.app-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

/* Sidebar Refinement */
.sidebar {
    background: var(--bg-sidebar);
    border-right: var(--border);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: var(--bg-input);
    border: 1px solid var(--gold-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 20px var(--gold-soft);
    overflow: hidden;
    transition: var(--transition);
}

.logo-circle:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: scale(1.05);
}

.product-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition);
    filter: brightness(0.6) contrast(1.1);
}
.product-card-premium:hover .product-img-wrap img { filter: brightness(0.8) contrast(1.2) scale(1.05); }

.logo-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.logo-title h2 { 
    font-family: 'Outfit'; 
    font-size: 1.4rem; 
    color: #fff; 
    letter-spacing: -0.5px; 
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.logo-title span { 
    font-size: 0.65rem; 
    color: var(--gold); 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.5;
    margin: 1.5rem 0 0.5rem 1rem;
    font-weight: 700;
}
.nav-menu { flex: 1; display: grid; gap: 4px; align-content: start; overflow-y: auto; padding-right: 5px; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    color: var(--text-dim);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover { background: var(--bg-input); color: #fff; transform: translateX(5px); }
.nav-link.active { background: var(--gold-soft); color: var(--gold); border: var(--border); border-color: rgba(212, 175, 55, 0.3); }
.nav-link i { width: 20px; }

/* Main Content Area */
.main-content-area {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.top-bar {
    height: 80px;
    background: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    position: sticky;
    top: 0;
    z-index: 200;
}

.top-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.premium-logo-effect {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    transition: var(--transition);
    animation: logo-float 4s ease-in-out infinite;
    cursor: pointer;
}

.premium-logo-effect:hover {
    filter: drop-shadow(0 0 25px var(--gold-bright));
    transform: scale(1.1) rotate(2deg);
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.logout-top {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 118, 117, 0.1);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 118, 117, 0.2);
    transition: var(--transition);
}

.logout-top:hover {
    background: var(--danger);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 118, 117, 0.4);
}

.demo-badge-wrap {
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    padding: 2px;
    border-radius: 50px;
    position: relative;
}

.demo-badge {
    background: var(--bg-sidebar);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    animation: pulse-glow 2s infinite;
    border: 1px solid var(--gold-soft);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px var(--gold-soft); transform: scale(1); }
    50% { box-shadow: 0 0 20px var(--gold-glow); transform: scale(1.02); }
    100% { box-shadow: 0 0 5px var(--gold-soft); transform: scale(1); }
}

.top-bar-actions { display: flex; align-items: center; gap: 20px; }

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: var(--border);
    transition: var(--transition);
    position: relative;
    color: var(--text-dim);
}

.icon-btn:hover { background: var(--gold-soft); color: var(--gold); border-color: var(--gold-soft); transform: translateY(-2px); }

.notification-dot {
    position: absolute;
    top: 10px; right: 10px;
    width: 8px; height: 8px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--bg-sidebar);
}

.main-scroll {
    padding: 1.5rem 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header & Filter System */
.header-section { margin-bottom: 2.5rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.header-section h1 { font-size: 2.5rem; font-family: 'Outfit', sans-serif; font-weight: 800; color: #fff; letter-spacing: -1px; }

.date-picker-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: var(--border);
}

.date-picker-wrap input { background: transparent; border: none; color: white; font-size: 0.85rem; cursor: pointer; outline: none; }
.date-picker-wrap span { color: var(--text-dim); }

.quick-date-btns { display: flex; gap: 8px; }
.q-date-btn {
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--bg-input);
    border: var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.q-date-btn:hover, .q-date-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* Grid Layout */
.grid-main { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

/* Advanced Card Aesthetics */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }

.stat-card { padding: 1.8rem 2.2rem; }
.stat-card::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    opacity: 0.5;
}

.stat-val { font-size: 2.4rem; font-weight: 900; font-family: 'Outfit'; color: #fff; margin-bottom: 0.2rem; }
.stat-label { color: var(--text-dim); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

/* Tables Premium */
.data-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
.data-table th { text-align: left; padding: 15px 20px; color: var(--text-dim); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.data-table td { padding: 20px; background: rgba(255,255,255,0.02); border-top: var(--border); border-bottom: var(--border); color: #fff; font-size: 0.95rem; }
.data-table td:first-child { border-left: var(--border); border-radius: 12px 0 0 12px; }
.data-table td:last-child { border-right: var(--border); border-radius: 0 12px 12px 0; }
.data-table tr:hover td { background: rgba(212, 175, 55, 0.05); border-color: rgba(212, 175, 55, 0.2); }

/* Table Wrapper for Mobile */
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Badges */
.badge { padding: 6px 14px; border-radius: 8px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }
.badge-gold { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.3); }
.badge-success { background: rgba(0, 184, 148, 0.1); color: var(--success); border: 1px solid rgba(0, 184, 148, 0.3); }
.badge-danger { background: rgba(255, 118, 117, 0.1); color: var(--danger); border: 1px solid rgba(255, 118, 117, 0.3); }
.badge-info { background: rgba(0, 210, 255, 0.1); color: var(--accent); border: 1px solid rgba(0, 210, 255, 0.3); }

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 20px var(--gold-glow); }
.btn-secondary { background: var(--bg-input); color: #fff; border: var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-success { background: var(--success); color: #000; }
.btn-danger { background: var(--danger); color: #000; }

.btn-sm { padding: 8px 16px; font-size: 0.75rem; border-radius: 10px; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-dim); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-top: 15px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: var(--bg-input); border: var(--border); border-radius: 12px; color: #fff; outline: none; transition: var(--transition); margin-bottom: 15px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

/* Modals Premium & Ferah */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(15px);
    z-index: 1000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
    background: var(--bg-sidebar); 
    border: 1px solid var(--gold-soft);
    border-radius: 32px;
    padding: 4rem; 
    width: 95%; 
    max-width: 700px; 
    position: relative;
    transform: translateY(20px); 
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { 
    position: absolute; top: 30px; right: 30px; cursor: pointer; 
    width: 40px; height: 40px; border-radius: 50%; background: var(--bg-input);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); transition: 0.3s; 
}
.modal-close:hover { color: #fff; background: var(--danger); transform: rotate(90deg); }

.form-group label { font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 12px; margin-top: 20px; }
.form-group label:first-child { margin-top: 0; }
.form-group input, .form-group select, .form-group textarea {
    padding: 18px 24px; font-size: 1rem; border-radius: 16px; margin-bottom: 20px;
}

/* Map Dashboard */
#branch-map {
    height: 400px;
    width: 100%;
    border-radius: var(--radius-lg);
    border: var(--border);
    margin-top: 1.5rem;
    z-index: 10;
}
.leaflet-container { background: var(--bg-sidebar); border-radius: var(--radius-lg); }
.leaflet-popup-content-wrapper { 
    background: #161925 !important; 
    color: #fff !important; 
    border: 1px solid var(--gold-soft);
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.leaflet-popup-tip { background: #161925 !important; border: 1px solid var(--gold-soft); }
.leaflet-popup-content { margin: 15px !important; line-height: 1.4; }

/* Toasts */
#app-toast { position: fixed; bottom: 30px; right: 30px; z-index: 2000; }
.toast-box {
    background: #1e2233; border: var(--border); border-left: 4px solid var(--gold);
    padding: 16px 24px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
    transform: translateX(120%); transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast-box.active { transform: translateX(0); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.4s ease forwards; }

/* Multi-select logic */
option { background: var(--bg-sidebar); color: #fff; padding: 10px; }

/* Login Screen */
.login-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #1a1e2e 0%, #0a0a0a 100%);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-overlay.active { display: flex; }

.login-card {
    background: rgba(22, 25, 37, 0.7);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 32px;
    padding: 4rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 50px rgba(212, 175, 55, 0.1);
    position: relative;
}

.login-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--gold-glow), transparent 40%, var(--gold-glow));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
}

.captcha-box input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--gold-soft);
    color: var(--gold);
    font-weight: 700;
    text-align: center;
}

/* Production Specifics */
.prod-card {
    border-left: 4px solid var(--accent);
}

/* Responsive */
@media (max-width: 1200px) {
    .col-3 { grid-column: span 6; }
    .col-4 { grid-column: span 6; }
    .col-8 { grid-column: span 12; }
}

@media (max-width: 1024px) {
    .app-container { grid-template-columns: 1fr; }
    .sidebar { 
        position: fixed; top: 0; left: 0; height: 100vh; width: 280px; 
        transform: translateX(-100%); z-index: 1000; transition: transform 0.3s ease; 
    }
    .sidebar.active { transform: translateX(0); }
    #mobile-overlay.active { display: block !important; }
    .mobile-menu-btn { display: flex !important; }
    .main-scroll { padding: 1.5rem; }
    .top-bar { padding: 0 1.5rem; gap: 10px; }
    .col-6 { grid-column: span 12; }
    .header-section { flex-direction: column; align-items: flex-start; gap: 15px; }
}

@media (max-width: 768px) {
    .col-3, .col-4, .col-6, .col-8 { grid-column: span 12; }
    .modal-content { width: 100%; padding: 2rem; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr !important; }
    #perm-grid, #perm-grid-edit { grid-template-columns: 1fr !important; }
    .top-logo-area img { height: 30px; }
    #current-time { display: none !important; }
    .top-bar-actions { gap: 8px; }
    .icon-btn { width: 35px; height: 35px; }
    .logout-top { padding: 8px 12px; }
    .logout-top span { display: none; }
    .card { padding: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .data-table { display: block; overflow-x: auto; white-space: nowrap; }
    .crm-form-box form { grid-template-columns: 1fr !important; }
    .crm-form-box form > div { grid-column: span 1 !important; }
    .header-section h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .login-card { padding: 2rem; }
    .captcha-box { flex-direction: column; align-items: stretch !important; gap: 10px !important; }
    .captcha-box > div { justify-content: space-between !important; }
    .ai-chat-window { width: 90%; right: 5%; bottom: 100px; }
    .notification-dropdown { width: 300px; right: -50px; }
}
.notification-dropdown {
    position: absolute; top: 55px; right: 0; width: 320px;
    background: var(--bg-sidebar); border: var(--border); border-color: var(--gold-soft);
    border-radius: var(--radius-md); box-shadow: var(--shadow);
    display: none; flex-direction: column; z-index: 1000;
    overflow: hidden;
    text-align: left;
}
.notification-dropdown.active { display: flex; animation: fadeInUp 0.3s ease; }
.notif-header { padding: 15px 20px; border-bottom: var(--border); background: var(--bg-input); font-weight: 700; font-size: 0.85rem; color: var(--gold); }
.notif-body { max-height: 400px; overflow-y: auto; }
.notif-item { padding: 15px 20px; border-bottom: var(--border); display: flex; gap: 12px; transition: 0.2s; cursor: pointer; }
.notif-item:hover { background: var(--bg-input); }
.notif-item i { color: var(--gold); flex-shrink: 0; }
.notif-item p { font-size: 0.8rem; line-height: 1.4; margin: 0; color: #fff; }
.notif-item small { color: var(--text-dim); display: block; margin-top: 4px; }

/* AI Assistant Styles */
.ai-assistant-btn {
    position: fixed; bottom: 40px; right: 40px;
    width: 60px; height: 60px; border-radius: 20px;
    background: var(--bg-card); border: 1px solid var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); cursor: pointer; transition: var(--transition);
    box-shadow: var(--shadow); z-index: 2000;
}
.ai-assistant-btn:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px var(--gold-glow); }
.ai-assistant-btn i { animation: float 3s ease-in-out infinite; }

.ai-chat-window {
    position: fixed; bottom: 110px; right: 40px;
    width: 350px; height: 450px; background: var(--bg-sidebar);
    border: 1px solid var(--gold-soft); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); z-index: 2000; display: none;
    flex-direction: column; overflow: hidden;
}
.ai-chat-window.active { display: flex; animation: fadeInUp 0.3s ease; }
.ai-chat-header { padding: 1.5rem; background: var(--bg-input); border-bottom: var(--border); display: flex; align-items: center; gap: 10px; }
.ai-chat-body { flex: 1; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.ai-bubble { padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; max-width: 85%; line-height: 1.4; }
.ai-bubble.bot { background: var(--bg-input); color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 4px; }
.ai-bubble.user { background: var(--gold-soft); color: var(--gold); align-self: flex-end; border-bottom-right-radius: 4px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logocu-credit {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: auto;
    padding: 1.2rem;
    background: rgba(212, 175, 55, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
    transition: var(--transition);
}

.logocu-credit span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-top: 5px;
    text-shadow: 0 0 10px var(--gold-glow);
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from { text-shadow: 0 0 5px var(--gold-soft); }
    to { text-shadow: 0 0 20px var(--gold-bright); }
}

.logocu-credit:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Product Management Grid Enhancement */
.product-card-premium {
    background: linear-gradient(145deg, rgba(30, 34, 51, 0.9), rgba(15, 17, 26, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-premium .product-img-wrap {
    height: 220px;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
}

.product-card-premium .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 900;
    font-family: 'Outfit';
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.product-card-premium:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* CRM Form Styling */
.crm-form-box {
    background: var(--bg-sidebar);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-soft);
    margin-bottom: 2.5rem;
}
