@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap";:root{--bg-primary:#faf9f6;--bg-secondary:#fff;--bg-tertiary:#f3efe6;--accent-gold:#b89047;--accent-gold-hover:#9c7734;--accent-emerald:#0b533e;--accent-emerald-hover:#07382a;--text-primary:#1b221e;--text-secondary:#535a56;--text-muted:#858d88;--border-color:#e5dec9;--font-sans:"Outfit", sans-serif;--font-serif:"Playfair Display", serif;--transition-smooth:all .3s cubic-bezier(.4, 0, .2, 1);--border-radius:12px;--shadow-lg:0 12px 30px -10px #b890471f, 0 8px 20px -8px #0000000d;--shadow-gold:0 4px 14px 0 #b8904733}*{box-sizing:border-box;margin:0;padding:0}body{background-color:var(--bg-primary);color:var(--text-primary);font-family:var(--font-sans);line-height:1.5;overflow-x:hidden}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-primary)}::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--accent-gold)}.app-container{flex-direction:column;min-height:100vh;display:flex}.app-header{-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--border-color);z-index:100;transition:var(--transition-smooth);background:#faf9f6e6;justify-content:space-between;align-items:center;padding:1rem 2rem;display:flex;position:sticky;top:0}.logo-container{cursor:pointer;align-items:center;gap:.5rem;display:flex}.logo-text{font-family:var(--font-serif);letter-spacing:1px;background:linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;font-size:1.8rem;font-weight:700}.nav-actions{align-items:center;gap:1.5rem;display:flex}.nav-link{color:var(--text-secondary);cursor:pointer;transition:var(--transition-smooth);font-size:.95rem;font-weight:500;text-decoration:none}.nav-link:hover,.nav-link.active{color:var(--accent-gold)}.btn{font-family:var(--font-sans);border-radius:var(--border-radius);cursor:pointer;transition:var(--transition-smooth);border:none;justify-content:center;align-items:center;gap:.5rem;padding:.75rem 1.5rem;font-size:.95rem;font-weight:600;display:inline-flex}.btn-primary{background:linear-gradient(135deg, var(--accent-emerald) 0%, #0d694f 100%);color:#fff;box-shadow:0 4px 12px #0b533e33}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 20px #0b533e59}.btn-secondary{background:var(--bg-secondary);color:var(--text-primary);border:1px solid var(--border-color)}.btn-secondary:hover{background:#0000000a}.btn-danger{color:#fff;background:#ef4444}.btn-danger:hover{background:#dc2626;transform:translateY(-1px)}.hero-banner{text-align:center;border-bottom:1px solid var(--border-color);background:linear-gradient(#faf9f6cc,#faf9f6f7),url(https://images.unsplash.com/photo-1544441893-675973e31985?w=1600&auto=format&fit=crop&q=80) 50%/cover no-repeat;padding:5.5rem 2rem}.hero-title{font-family:var(--font-serif);color:var(--accent-emerald);margin-bottom:1rem;font-size:3.2rem;font-weight:700}.hero-subtitle{color:var(--text-secondary);max-width:600px;margin:0 auto;font-size:1.2rem;font-weight:500}.store-controls{flex-direction:column;gap:1.5rem;max-width:1200px;margin:0 auto;padding:2rem;display:flex}.search-bar-container{gap:.75rem;display:flex}.search-input{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--border-radius);color:var(--text-primary);font-family:var(--font-sans);transition:var(--transition-smooth);flex:1;padding:.75rem 1rem;font-size:1rem}.search-input:focus{border-color:var(--accent-gold);outline:none}.category-tags{flex-wrap:wrap;gap:.75rem;display:flex}.category-tag{background:var(--bg-secondary);border:1px solid var(--border-color);cursor:pointer;transition:var(--transition-smooth);border-radius:30px;padding:.5rem 1.25rem;font-size:.9rem;font-weight:500}.category-tag:hover,.category-tag.active{background:var(--accent-emerald);color:#fff;border-color:var(--accent-emerald)}.products-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem;max-width:1200px;margin:0 auto;padding:0 2rem 4rem;display:grid}.product-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--border-radius);transition:var(--transition-smooth);box-shadow:var(--shadow-lg);cursor:pointer;flex-direction:column;display:flex;overflow:hidden}.product-card:hover{border-color:var(--accent-gold);transform:translateY(-5px)}.product-image-container{aspect-ratio:4/5;background:#f7f6f2;position:relative;overflow:hidden}.product-image{object-fit:cover;width:100%;height:100%;transition:var(--transition-smooth)}.product-card:hover .product-image{transform:scale(1.05)}.product-badge{background:var(--bg-secondary);color:var(--accent-emerald);border:1px solid var(--accent-emerald);border-radius:20px;padding:.25rem .75rem;font-size:.75rem;font-weight:600;position:absolute;top:1rem;left:1rem}.product-info{flex-direction:column;flex-grow:1;padding:1.5rem;display:flex}.product-category{color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:.25rem;font-size:.8rem}.product-name{font-family:var(--font-serif);color:var(--text-primary);margin-bottom:.5rem;font-size:1.25rem;font-weight:600}.product-price-row{justify-content:space-between;align-items:center;margin-top:auto;display:flex}.product-price{color:var(--accent-emerald);font-size:1.25rem;font-weight:700}.detail-container{grid-template-columns:1fr 1fr;gap:3rem;max-width:1000px;margin:2rem auto 4rem;padding:0 2rem;display:grid}.detail-image-box{border-radius:var(--border-radius);border:1px solid var(--border-color);aspect-ratio:4/5;background:#f7f6f2;overflow:hidden}.detail-image{object-fit:cover;width:100%;height:100%}.detail-info-box{flex-direction:column;gap:1.5rem;display:flex}.detail-title{font-family:var(--font-serif);font-size:2.5rem;font-weight:700}.detail-price{color:var(--accent-emerald);font-size:2rem;font-weight:700}.detail-description{color:var(--text-secondary);font-size:1.05rem;line-height:1.6}.stock-tag{align-items:center;gap:.5rem;font-weight:600;display:inline-flex}.stock-in{color:var(--accent-emerald)}.stock-out{color:#ef4444}.cart-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1000;background:#1b221e66;justify-content:flex-end;display:flex;position:fixed;inset:0}.cart-drawer{background:var(--bg-secondary);border-left:1px solid var(--border-color);flex-direction:column;width:100%;max-width:450px;height:100%;animation:.3s cubic-bezier(.4,0,.2,1) slideIn;display:flex;box-shadow:-5px 0 30px #b8904714}@keyframes slideIn{0%{transform:translate(100%)}to{transform:translate(0)}}.cart-header{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:1.5rem;display:flex}.cart-title{font-family:var(--font-serif);font-size:1.5rem;font-weight:700}.close-btn{color:var(--text-secondary);cursor:pointer;transition:var(--transition-smooth);background:0 0;border:none;font-size:1.5rem}.close-btn:hover{color:var(--accent-gold)}.cart-items{flex-direction:column;flex:1;gap:1.25rem;padding:1.5rem;display:flex;overflow-y:auto}.cart-item{border-bottom:1px solid var(--border-color);gap:1rem;padding-bottom:1.25rem;display:flex}.cart-item-image{object-fit:cover;background:#f7f6f2;border-radius:6px;width:70px;height:85px}.cart-item-details{flex-direction:column;flex:1;justify-content:space-between;display:flex}.cart-item-name{font-size:.95rem;font-weight:600}.cart-item-price{color:var(--accent-emerald);font-size:1rem;font-weight:700}.cart-item-quantity-row{align-items:center;gap:.75rem;display:flex}.quantity-btn{background:var(--bg-tertiary);width:26px;height:26px;color:var(--text-primary);cursor:pointer;border:none;border-radius:50%;justify-content:center;align-items:center;font-weight:700;display:flex}.cart-footer{border-top:1px solid var(--border-color);background:var(--bg-primary);flex-direction:column;gap:1rem;padding:1.5rem;display:flex}.cart-summary-row{justify-content:space-between;font-size:1.1rem;font-weight:600;display:flex}.checkout-container{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--border-radius);max-width:600px;box-shadow:var(--shadow-lg);margin:3rem auto 5rem;padding:2.5rem}.checkout-title{font-family:var(--font-serif);text-align:center;margin-bottom:1.5rem;font-size:2rem;font-weight:700}.form-group{flex-direction:column;gap:.5rem;margin-bottom:1.25rem;display:flex}.form-label{color:var(--text-secondary);font-size:.9rem;font-weight:500}.form-input{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:var(--border-radius);color:var(--text-primary);font-family:var(--font-sans);transition:var(--transition-smooth);padding:.75rem 1rem;font-size:1rem}.form-input:focus{border-color:var(--accent-gold);outline:none}.payment-method-box{border-radius:var(--border-radius);background:#b890470f;border:1px solid #b8904740;align-items:center;gap:.75rem;margin:1.5rem 0;padding:1rem;display:flex}.success-container{text-align:center;background:var(--bg-secondary);border-radius:var(--border-radius);border:1px solid var(--border-color);max-width:500px;margin:4rem auto;padding:3rem}.success-icon{color:var(--accent-emerald);margin-bottom:1.5rem;font-size:4rem}.admin-container{width:100%;max-width:1200px;margin:0 auto;padding:2rem}.admin-header-row{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:2rem;display:flex}.admin-tabs{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:8px;gap:.5rem;padding:.25rem;display:flex}.admin-tab{color:var(--text-secondary);cursor:pointer;transition:var(--transition-smooth);background:0 0;border:none;border-radius:6px;padding:.5rem 1.25rem;font-size:.9rem;font-weight:600}.admin-tab.active{background:var(--bg-primary);color:var(--accent-gold)}.stats-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem;margin-bottom:2.5rem;display:grid}.stats-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--border-radius);flex-direction:column;gap:.5rem;padding:1.5rem;display:flex}.stats-value{color:var(--accent-gold);font-size:2rem;font-weight:700}.admin-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--border-radius);margin-bottom:2rem;padding:2rem}.table-responsive{overflow-x:auto}.admin-table{border-collapse:collapse;text-align:left;width:100%;font-size:.95rem}.admin-table th,.admin-table td{border-bottom:1px solid var(--border-color);padding:1rem}.admin-table th{color:var(--text-secondary);font-weight:600}.admin-table tbody tr:hover{background:#00000005}.status-select{background:var(--bg-secondary);border:1px solid var(--border-color);color:var(--text-primary);font-family:var(--font-sans);border-radius:6px;padding:.25rem .5rem}@media (width<=768px){.detail-container{grid-template-columns:1fr;gap:2rem}.app-header{padding:1rem}.hero-title{font-size:2.2rem}.checkout-container{margin:1rem;padding:1.5rem}}.sale-badge{color:#fff;text-transform:uppercase;z-index:2;background:#ef4444;border:1px solid #fff3;border-radius:20px;padding:.25rem .75rem;font-size:.75rem;font-weight:700;position:absolute;top:1rem;right:1rem;box-shadow:0 4px 10px #ef444440}.compare-price{color:var(--text-muted);margin-left:.5rem;font-size:1rem;font-weight:400;text-decoration:line-through}.detail-image-box{-webkit-user-select:none;user-select:none;position:relative}.slider-arrow{border:1px solid var(--border-color);color:var(--text-primary);cursor:pointer;width:40px;height:40px;transition:var(--transition-smooth);z-index:10;background:#ffffffd9;border-radius:50%;justify-content:center;align-items:center;font-size:1.1rem;display:flex;position:absolute;top:50%;transform:translateY(-50%);box-shadow:0 2px 8px #00000014}.slider-arrow:hover{color:var(--accent-emerald);background:#fff;box-shadow:0 4px 12px #b8904726}.slider-arrow.prev{left:1rem}.slider-arrow.next{right:1rem}.slider-dots{z-index:10;gap:.5rem;display:flex;position:absolute;bottom:1rem;left:50%;transform:translate(-50%)}.slider-dot{cursor:pointer;width:10px;height:10px;transition:var(--transition-smooth);background:#ffffff80;border:1px solid #00000026;border-radius:50%}.slider-dot.active{background:var(--accent-emerald);border-color:#fff;transform:scale(1.25)}.slider-thumbnails{justify-content:center;gap:.75rem;margin-top:1rem;display:flex}.slider-thumbnail{object-fit:cover;cursor:pointer;width:60px;height:75px;transition:var(--transition-smooth);background:#f7f6f2;border:2px solid #0000;border-radius:6px}.slider-thumbnail.active{border-color:var(--accent-emerald);box-shadow:0 2px 8px #0b533e26}.detail-desc-block{border-top:1px solid var(--border-color);margin-top:1.5rem;padding-top:1.5rem}.detail-desc-title{font-family:var(--font-serif);color:var(--accent-emerald);text-transform:uppercase;letter-spacing:.5px;margin-bottom:.75rem;font-size:1.15rem;font-weight:700}.specs-table{border-collapse:collapse;width:100%;margin-bottom:1.5rem}.specs-table td{border-bottom:1px solid #e5dec966;padding:.5rem 0;font-size:.95rem}.specs-label{color:var(--text-secondary);width:35%;font-weight:600}.specs-value{color:var(--text-primary);font-weight:500}.description-paragraphs{color:var(--text-secondary);margin-bottom:1rem;font-size:.95rem;line-height:1.6}.care-instructions{background:var(--bg-tertiary);border-left:3px solid var(--accent-gold);color:var(--text-secondary);border-radius:8px;padding:1rem;font-size:.9rem}.care-title{color:var(--text-primary);margin-bottom:.25rem;font-size:.9rem;font-weight:700}.care-list{padding-left:.25rem;list-style-type:none}.care-list li{align-items:center;gap:.4rem;margin-bottom:.15rem;display:flex}.care-list li:before{content:"•";color:var(--accent-gold);font-weight:700}.admin-app-layout{background-color:var(--bg-primary);min-height:100vh;display:flex}.admin-login-layout{background-color:var(--bg-primary);justify-content:center;align-items:center;min-height:100vh;display:flex}.admin-sidebar{color:#fff;z-index:100;background:#07251e;border-right:1px solid #b8904740;flex-direction:column;width:275px;display:flex;position:fixed;top:0;bottom:0;left:0;box-shadow:4px 0 25px #00000026}.sidebar-brand{background:#00000026;border-bottom:1px solid #ffffff14;align-items:center;gap:.85rem;padding:2rem 1.5rem;display:flex}.sidebar-logo{border:1px solid var(--accent-gold);background:#b8904726;border-radius:8px;justify-content:center;align-items:center;width:44px;height:38px;display:flex}.sidebar-title{font-family:var(--font-serif);color:#fff;letter-spacing:.5px;font-size:1.35rem;font-weight:700;line-height:1.1}.sidebar-badge{color:var(--accent-gold);letter-spacing:1.5px;text-transform:uppercase;font-size:.68rem;font-weight:700}.sidebar-nav{flex-direction:column;flex:1;gap:.4rem;padding:1.5rem 1rem;display:flex;overflow-y:auto}.nav-section-label{letter-spacing:1.5px;color:#fff6;margin-bottom:.25rem;padding:.5rem .75rem .25rem;font-size:.72rem;font-weight:700}.sidebar-nav-item{color:#ffffffbf;font-family:var(--font-sans);cursor:pointer;transition:var(--transition-smooth);text-align:left;background:0 0;border:1px solid #0000;border-radius:8px;align-items:center;gap:.85rem;width:100%;padding:.85rem 1rem;font-size:.92rem;font-weight:500;display:flex;position:relative}.sidebar-nav-item:hover{color:#fff;background:#ffffff0f;transform:translate(3px)}.sidebar-nav-item.active{color:#fff;background:linear-gradient(90deg,#b8904738 0%,#0b533e4d 100%);border-color:#b8904766;font-weight:600}.nav-icon{text-align:center;width:24px;font-size:1.1rem}.nav-label{flex:1}.active-indicator{background:var(--accent-gold);border-radius:0 4px 4px 0;width:4px;position:absolute;top:15%;bottom:15%;left:0}.sidebar-footer{background:#0003;border-top:1px solid #ffffff14;justify-content:space-between;align-items:center;padding:1.25rem 1rem;display:flex}.admin-profile{align-items:center;gap:.75rem;display:flex}.profile-avatar{background:var(--accent-gold);color:#fff;border-radius:50%;justify-content:center;align-items:center;width:36px;height:36px;font-size:.95rem;font-weight:700;display:flex}.profile-info{flex-direction:column;display:flex}.profile-name{color:#fff;font-size:.88rem;font-weight:600}.profile-role{color:#ffffff80;font-size:.72rem}.logout-btn{color:#fca5a5;cursor:pointer;transition:var(--transition-smooth);background:#ef444426;border:1px solid #ef44444d;border-radius:6px;padding:.4rem .75rem;font-size:.78rem;font-weight:600}.logout-btn:hover{color:#fff;background:#ef44444d}.admin-main-content{background-color:var(--bg-primary);flex:1;min-height:100vh;margin-left:275px;padding:2.5rem 3rem 4rem}.content-container{max-width:1250px;margin:0 auto}.admin-page-header{margin-bottom:2rem}.admin-page-title{font-family:var(--font-serif);color:var(--accent-emerald);margin-bottom:.25rem;font-size:2rem;font-weight:700}.admin-page-subtitle{color:var(--text-secondary);font-size:.92rem}.analytics-page{flex-direction:column;gap:2rem;display:flex}.analytics-header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;display:flex}.analytics-title{font-family:var(--font-serif);color:var(--accent-emerald);font-size:2.1rem;font-weight:700}.analytics-subtitle{color:var(--text-secondary);font-size:.95rem}.refresh-btn{padding:.6rem 1.25rem;font-size:.88rem}.kpi-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;display:grid}.kpi-card{background:var(--bg-secondary);border:1px solid var(--border-color);transition:var(--transition-smooth);border-radius:12px;align-items:center;gap:1.25rem;padding:1.5rem;display:flex;box-shadow:0 4px 15px #00000008}.kpi-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}.kpi-card.gold-border{border-left:4px solid var(--accent-gold)}.kpi-card.emerald-border{border-left:4px solid var(--accent-emerald)}.kpi-card.blue-border{border-left:4px solid #3b82f6}.kpi-card.purple-border{border-left:4px solid #8b5cf6}.kpi-icon-box{border-radius:12px;justify-content:center;align-items:center;width:52px;height:52px;font-size:1.5rem;display:flex}.kpi-icon-box.gold{background:#b8904726}.kpi-icon-box.emerald{background:#0b533e1f}.kpi-icon-box.blue{background:#3b82f61f}.kpi-icon-box.purple{background:#8b5cf61f}.kpi-content{flex-direction:column;display:flex}.kpi-label{color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;font-size:.82rem;font-weight:600}.kpi-value{color:var(--text-primary);margin:.2rem 0;font-size:1.55rem;font-weight:700;line-height:1.2}.kpi-badge{border-radius:4px;width:fit-content;padding:.15rem .4rem;font-size:.75rem;font-weight:600;display:inline-block}.kpi-badge.positive{color:#047857;background:#10b9811f}.kpi-badge.neutral{background:var(--bg-tertiary);color:var(--text-secondary)}.charts-grid{grid-template-columns:1fr 1.2fr;gap:1.5rem;display:grid}.chart-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:12px;padding:1.75rem;box-shadow:0 4px 15px #00000008}.chart-header{justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem;display:flex}.chart-title{font-family:var(--font-sans);color:var(--text-primary);font-size:1.15rem;font-weight:700}.chart-subtitle{color:var(--text-muted);font-size:.85rem}.chart-badge{color:var(--accent-gold-hover);background:#b8904726;border-radius:20px;padding:.3rem .75rem;font-size:.75rem;font-weight:600}.chart-badge.emerald{color:var(--accent-emerald);background:#0b533e1f}.category-chart-split{align-items:center;gap:1.5rem;display:flex}.donut-box{flex-shrink:0;width:110px;height:110px;position:relative}.donut-svg-ring{width:100%;height:100%}.donut-center-label{text-align:center;pointer-events:none;flex-direction:column;justify-content:center;align-items:center;display:flex;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.donut-num{color:var(--accent-emerald);font-size:1.15rem;font-weight:700;line-height:1}.donut-text{color:var(--text-muted);text-transform:uppercase;font-size:.68rem;font-weight:600}.flex-1{flex:1}.category-bars-list{flex-direction:column;gap:.85rem;display:flex}.cat-bar-item{flex-direction:column;gap:.25rem;display:flex}.cat-bar-header{justify-content:space-between;font-size:.88rem;font-weight:600;display:flex}.cat-name{color:var(--text-primary);align-items:center;gap:.5rem;display:flex}.cat-dot{border-radius:50%;width:10px;height:10px}.cat-val{color:var(--accent-emerald)}.cat-progress-track{background:var(--bg-tertiary);border-radius:4px;width:100%;height:7px;overflow:hidden}.cat-progress-fill{border-radius:4px;height:100%;transition:width .8s ease-out}.cat-subtext{color:var(--text-muted);font-size:.75rem}.svg-timeline-wrapper{align-items:center;width:100%;height:140px;display:flex}.timeline-svg{width:100%;height:130px;overflow:visible}.timeline-rect{transition:height .5s ease-out}.timeline-rect:hover{fill:var(--accent-gold)}.analytics-tables-grid{grid-template-columns:1.2fr 1fr;gap:1.5rem;display:grid}.table-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:12px;padding:1.75rem;box-shadow:0 4px 15px #00000008}.table-card-header{justify-content:space-between;align-items:center;margin-bottom:1.25rem;display:flex}.table-card-title{color:var(--text-primary);font-size:1.1rem;font-weight:700}.table-card-tag{color:#047857;background:#10b9811f;border-radius:6px;padding:.25rem .6rem;font-size:.75rem;font-weight:600}.table-card-tag.alert{color:#dc2626;background:#ef44441f}.mini-table{font-size:.88rem}.mini-table th{background:var(--bg-tertiary);padding:.75rem .5rem;font-size:.78rem}.mini-table td{padding:.85rem .5rem}.product-cell-info{align-items:center;gap:.75rem;display:flex}.mini-thumb{object-fit:cover;border:1px solid var(--border-color);border-radius:4px;width:36px;height:44px}.mini-prod-name{color:var(--text-primary);font-weight:600;line-height:1.2}.revenue-cell{color:var(--accent-emerald);font-weight:700}.stock-level-badge{border-radius:4px;padding:.2rem .5rem;font-size:.82rem;font-weight:700}.stock-level-badge.critical{color:#991b1b;background:#fee2e2}.stock-level-badge.warning{color:#92400e;background:#fef3c7}.empty-td{text-align:center;color:var(--text-muted);padding:2rem}.crm-summary-bar{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:12px;gap:2rem;padding:1.25rem 2rem;display:flex;box-shadow:0 4px 15px #00000008}.crm-metric-item{flex-direction:column;display:flex}.crm-metric-label{color:var(--text-muted);text-transform:uppercase;font-size:.8rem;font-weight:600}.crm-metric-value{color:var(--text-primary);font-size:1.4rem;font-weight:700}.crm-metric-value.gold{color:var(--accent-gold)}.crm-metric-value.emerald{color:var(--accent-emerald)}.crm-search-row{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;display:flex}.search-input-box{flex:1;max-width:450px;position:relative}.search-icon{color:var(--text-muted);position:absolute;top:50%;left:1rem;transform:translateY(-50%)}.search-field{border-radius:8px!important;padding-left:2.75rem!important}.search-count-tag{color:var(--text-secondary);background:var(--bg-tertiary);border-radius:6px;padding:.4rem .85rem;font-size:.85rem;font-weight:600}.customer-avatar-cell{align-items:center;gap:.85rem;display:flex}.cust-avatar{background:linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);color:#fff;border-radius:50%;justify-content:center;align-items:center;width:40px;height:40px;font-size:1.05rem;font-weight:700;display:flex}.cust-name-text{color:var(--text-primary);font-size:.95rem}.cust-id-sub{color:var(--text-muted);font-size:.75rem}.address-truncate{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.order-count-badge{color:var(--accent-emerald);background:#0b533e1a;border-radius:6px;padding:.25rem .6rem;font-size:.82rem;font-weight:600}.total-spent-text{color:var(--accent-emerald);font-size:.95rem}.tier-badge{border-radius:20px;padding:.25rem .65rem;font-size:.78rem;font-weight:600}.tier-badge.tier-vip{color:var(--accent-gold-hover);border:1px solid var(--accent-gold);background:#b890472e}.tier-badge.tier-frequent{color:#2563eb;background:#3b82f61f}.tier-badge.tier-standard{background:var(--bg-tertiary);color:var(--text-secondary)}.view-profile-btn{padding:.4rem .85rem!important;font-size:.82rem!important}.modal-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1000;background:#07251e99;justify-content:center;align-items:center;padding:2rem;display:flex;position:fixed;inset:0}.customer-modal-card{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:16px;width:100%;max-width:800px;max-height:90vh;padding:2.5rem;animation:.3s cubic-bezier(.16,1,.3,1) modalSlideUp;position:relative;overflow-y:auto;box-shadow:0 20px 40px #0003}@keyframes modalSlideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-close-btn{background:var(--bg-tertiary);width:36px;height:36px;color:var(--text-secondary);cursor:pointer;transition:var(--transition-smooth);border:none;border-radius:50%;justify-content:center;align-items:center;font-size:1.3rem;display:flex;position:absolute;top:1.5rem;right:1.5rem}.modal-close-btn:hover{background:var(--accent-gold);color:#fff}.modal-profile-header{border-bottom:1px solid var(--border-color);align-items:center;gap:1.5rem;margin-bottom:1.75rem;padding-bottom:1.75rem;display:flex}.modal-avatar{background:linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);color:#fff;width:64px;height:64px;box-shadow:var(--shadow-gold);border-radius:50%;justify-content:center;align-items:center;font-size:1.8rem;font-weight:700;display:flex}.modal-customer-name{font-family:var(--font-serif);color:var(--accent-emerald);font-size:1.6rem;font-weight:700}.modal-customer-id{color:var(--accent-gold);background:#b890471f;border-radius:6px;padding:.25rem .6rem;font-size:.85rem;font-weight:600}.modal-contact-row{color:var(--text-secondary);align-items:center;gap:.6rem;margin-top:.25rem;font-size:.9rem;display:flex}.modal-stats-grid{grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:1.75rem;display:grid}.modal-stat-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:10px;flex-direction:column;padding:1rem 1.25rem;display:flex}.modal-stat-label{color:var(--text-muted);text-transform:uppercase;font-size:.78rem;font-weight:600}.modal-stat-value{color:var(--text-primary);margin-top:.2rem;font-size:1.3rem;font-weight:700}.modal-stat-value.gold{color:var(--accent-gold)}.modal-stat-value.emerald{color:var(--accent-emerald)}.modal-section-box{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:10px;margin-bottom:1.75rem;padding:1.25rem 1.5rem}.modal-section-title{color:var(--accent-emerald);margin-bottom:.5rem;font-size:.95rem;font-weight:700}.modal-address-text{color:var(--text-secondary);font-size:.92rem;line-height:1.5}.modal-orders-list{flex-direction:column;gap:1rem;margin-top:1rem;display:flex}.customer-order-item{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:8px;padding:1.25rem}.order-item-header{border-bottom:1px stroke var(--border-color);justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.75rem;display:flex}.order-items-sublist{flex-direction:column;gap:.6rem;display:flex}.order-subitem{align-items:center;gap:.85rem;font-size:.88rem;display:flex}.order-subitem-thumb{object-fit:cover;border:1px solid var(--border-color);border-radius:4px;width:32px;height:40px}.order-subitem-meta{flex-direction:column;flex:1;display:flex}.subitem-title{color:var(--text-primary);font-weight:600}.subitem-qty{color:var(--text-muted);font-size:.78rem}.subitem-total{color:var(--text-primary);font-weight:600}@media (width<=992px){.admin-sidebar{width:230px}.admin-main-content{margin-left:230px;padding:2rem 1.5rem}.charts-grid,.analytics-tables-grid{grid-template-columns:1fr}}@media (width<=768px){.admin-sidebar{width:100%;height:auto;position:relative}.admin-main-content{margin-left:0;padding:1.5rem 1rem}.modal-stats-grid{grid-template-columns:1fr}}.notification-toast-card{z-index:10000;border:1px solid var(--accent-gold);border-left:5px solid var(--accent-emerald);cursor:pointer;background:#fff;border-radius:12px;align-items:center;gap:1rem;max-width:420px;padding:1rem 1.25rem;animation:.4s cubic-bezier(.16,1,.3,1) toastSlideIn;display:flex;position:fixed;top:1.5rem;right:1.5rem;box-shadow:0 12px 30px #0003}@keyframes toastSlideIn{0%{opacity:0;transform:translate(50px)}to{opacity:1;transform:translate(0)}}.toast-icon-box{background:#0b533e1f;border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:42px;height:42px;font-size:1.3rem;display:flex}.toast-content{flex-direction:column;flex:1;display:flex}.toast-title-row{justify-content:space-between;align-items:center;display:flex}.toast-heading{color:var(--accent-emerald);font-size:.92rem}.toast-time{color:var(--accent-gold);font-size:.72rem;font-weight:600}.toast-body{color:var(--text-primary);margin-top:.15rem;font-size:.85rem}.toast-amount{color:var(--text-secondary);margin-top:.15rem;font-size:.82rem}.toast-actions{align-items:center;gap:.5rem;display:flex}.toast-view-btn{padding:.35rem .75rem!important;font-size:.78rem!important}.toast-close-btn{color:var(--text-muted);cursor:pointer;transition:var(--transition-smooth);background:0 0;border:none;padding:0 .25rem;font-size:1.3rem}.toast-close-btn:hover{color:#ef4444}.sidebar-unread-badge{color:#fff;background:#ef4444;border-radius:10px;margin-left:auto;padding:.15rem .55rem;font-size:.72rem;font-weight:700}
