/* ==========================================================================
   Tasveer by Prince Studio - Royal Obsidian & PrintShoppy Acrylic Glass System
   ========================================================================== */

:root {
    /* Royal Obsidian & Gold Color System */
    --bg-main: #060608;
    --bg-surface: #0e0e12;
    --card-bg: rgba(18, 18, 22, 0.88);
    --card-border: rgba(212, 175, 55, 0.22);
    --card-border-hover: rgba(245, 158, 11, 0.7);
    
    --gold-primary: #d4af37;
    --gold-bright: #fbbf24;
    --gold-dark: #b45309;
    --gold-gradient: linear-gradient(135deg, #fff7ed 0%, #fbbf24 45%, #d4af37 80%, #92400e 100%);
    --gold-text-gradient: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #f59e0b 80%, #d4af37 100%);
    --gold-glow: rgba(245, 158, 11, 0.35);

    --primary: #f59e0b;
    --primary-hover: #d97706;
    --primary-light: rgba(245, 158, 11, 0.15);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1ebe57;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.95);
    --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-royal: 'Cinzel', serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Setup */
html, body {
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; outline: none; }
input, select, textarea { font-family: inherit; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Top Announcement Bar */
.announcement-bar {
    background: #000000;
    color: var(--gold-bright);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
}
.announcement-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.announcement-info { display: flex; align-items: center; gap: 18px; }
.announcement-info span { display: flex; align-items: center; gap: 6px; }
.announcement-links { display: flex; gap: 15px; }
.announcement-links a { color: var(--text-muted); transition: var(--transition); }
.announcement-links a:hover { color: var(--gold-bright); }

/* Floating Live Support WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed; bottom: 25px; right: 25px;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--whatsapp-color); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 2000; transition: var(--transition); animation: pulseWhatsapp 2s infinite;
}
.floating-whatsapp-btn:hover { transform: scale(1.1); background: var(--whatsapp-hover); }
@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Main Header */
.main-header {
    background: rgba(6, 6, 8, 0.94);
    backdrop-filter: blur(16px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.logo { display: flex; flex-direction: column; }
.logo-title {
    font-family: var(--font-royal);
    font-size: 2.3rem; font-weight: 900; letter-spacing: 3px;
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.logo-sub { font-size: 0.72rem; font-weight: 800; color: var(--gold-bright); letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; display: flex; align-items: center; gap: 6px; }

.search-wrapper { flex: 1; max-width: 480px; position: relative; }
.search-input {
    width: 100%; padding: 14px 48px 14px 20px;
    border: 1px solid var(--card-border); border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04); color: #ffffff; font-size: 0.95rem; transition: var(--transition);
}
.search-input:focus { border-color: var(--gold-bright); box-shadow: 0 0 0 4px var(--gold-glow); outline: none; }
.search-btn {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%; background: var(--gold-gradient); color: #000;
    display: flex; align-items: center; justify-content: center; font-weight: 800; transition: var(--transition);
}
.search-btn:hover { transform: translateY(-50%) scale(1.05); box-shadow: 0 0 15px var(--gold-bright); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.icon-action-btn {
    position: relative; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--card-border);
    color: var(--gold-bright); display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; transition: var(--transition);
}
.icon-action-btn:hover { background: var(--gold-gradient); color: #000; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--gold-bright); color: #000; font-size: 0.75rem; font-weight: 900;
    width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg-main);
}

/* Primary Navigation Bar */
.nav-bar { background: var(--bg-surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--card-border); }
.nav-list { display: flex; align-items: center; gap: 25px; overflow-x: auto; white-space: nowrap; padding: 12px 0; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-item {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
    color: var(--text-muted); padding: 8px 18px; border-radius: var(--radius-full);
    transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
}
.nav-item:hover, .nav-item.active { color: #000; background: var(--gold-gradient); font-weight: 800; box-shadow: 0 4px 15px var(--gold-glow); }

/* PRINCILLARY PRINTSHOPPY STYLE FRAME SHAPE SLIDER BAR */
.shapes-filter-bar { display: flex; gap: 15px; overflow-x: auto; padding: 15px 0 25px; scrollbar-width: none; }
.shape-pill-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius-md); padding: 12px 20px; display: flex;
    align-items: center; gap: 12px; cursor: pointer; transition: var(--transition);
    min-width: 140px; flex-shrink: 0; justify-content: center;
}
.shape-pill-card:hover, .shape-pill-card.active {
    border-color: var(--gold-bright); background: var(--gold-gradient); color: #000; font-weight: 800;
    transform: translateY(-4px); box-shadow: var(--shadow-gold);
}
.shape-pill-card i { font-size: 1.2rem; }

/* HERO SECTION STRUCTURE */
.royal-hero-section {
    padding: 70px 0 90px;
    background: radial-gradient(circle at 75% 30%, rgba(245, 158, 11, 0.15) 0%, rgba(6, 6, 8, 1) 65%);
    position: relative; overflow: hidden;
}
.hero-split-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }

.hero-crown-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245, 158, 11, 0.12); border: 1px solid var(--gold-bright);
    color: var(--gold-bright); font-family: var(--font-heading); font-weight: 800; font-size: 0.85rem;
    padding: 8px 20px; border-radius: var(--radius-full); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px;
}
.hero-main-heading {
    font-family: var(--font-royal); font-size: 3.8rem; font-weight: 900; line-height: 1.1;
    color: #ffffff; margin-bottom: 22px;
}
.hero-main-heading span {
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtext { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 35px; line-height: 1.7; max-width: 580px; }

.hero-stats-row { display: flex; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.stat-pill { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--card-border); padding: 12px 24px; border-radius: var(--radius-md); display: flex; flex-direction: column; }
.stat-pill strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-bright); }
.stat-pill span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 34px; font-family: var(--font-heading); font-weight: 800; font-size: 1rem; border-radius: var(--radius-full); transition: var(--transition); letter-spacing: 0.5px; }
.btn-primary { background: var(--gold-gradient); color: #000; box-shadow: 0 8px 25px var(--gold-glow); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5); }
.btn-outline { border: 2px solid var(--gold-bright); color: var(--gold-bright); background: rgba(0,0,0,0.4); }
.btn-outline:hover { background: var(--gold-bright); color: #000; transform: translateY(-2px); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #1ebe57); color: #ffffff; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45); }

/* BENTO GRID CATEGORIES ARCHITECTURE */
.bento-section { padding: 80px 0 40px; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    background: var(--card-bg); border: 1px solid var(--card-border);
    min-height: 240px; cursor: pointer; transition: var(--transition);
}
.bento-card:hover { transform: translateY(-6px); border-color: var(--gold-bright); box-shadow: var(--shadow-gold); }
.bento-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: transform 0.6s ease; opacity: 0.6; }
.bento-card:hover img { transform: scale(1.1); opacity: 0.8; }
.bento-content { position: relative; z-index: 2; padding: 30px; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); }
.bento-content h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.bento-content p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.bento-tag { align-self: flex-start; background: var(--gold-gradient); color: #000; font-size: 0.72rem; font-weight: 900; padding: 4px 12px; border-radius: var(--radius-full); text-transform: uppercase; margin-bottom: 10px; }
.bento-link { font-size: 0.85rem; font-weight: 800; color: var(--gold-bright); }

.bento-large { grid-column: span 2; grid-row: span 2; min-height: 480px; }
.bento-tall { grid-column: span 1; grid-row: span 2; min-height: 480px; }

/* ADVANTAGES GRID */
.advantages-section { padding: 60px 0; background: var(--bg-surface); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 30px; }
.adv-box { display: flex; align-items: center; gap: 18px; padding: 22px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color); transition: var(--transition); }
.adv-box:hover { transform: translateY(-4px); border-color: var(--gold-bright); box-shadow: 0 4px 20px var(--gold-glow); }
.adv-icon { width: 55px; height: 55px; border-radius: 50%; background: rgba(245, 158, 11, 0.15); border: 1px solid var(--gold-bright); color: var(--gold-bright); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.adv-info h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.adv-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* STUDIO CUSTOMIZER WORKBENCH */
.customizer-section { padding: 70px 0; background: var(--bg-main); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 40px; }
.section-tag { color: var(--gold-bright); font-weight: 800; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-royal); font-size: 2.8rem; font-weight: 900; color: #ffffff; margin-bottom: 12px; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

.customizer-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--card-border); }
.visualizer-preview-container { background-color: #121215; border-radius: var(--radius-md); padding: 50px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 480px; position: relative; overflow: hidden; border: 1px solid var(--border-color); }
.visualizer-preview-container.room-studio { background-image: radial-gradient(circle, #222228 0%, #0e0e12 100%); }
.visualizer-preview-container.room-living { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1000&auto=format&fit=crop'); }
.visualizer-preview-container.room-bedroom { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=1000&auto=format&fit=crop'); }
.visualizer-preview-container.room-dark { background-image: radial-gradient(circle, #18181b 0%, #000000 100%); }

/* PRINTSHOPPY REALISTIC ACRYLIC GLASS FRAME MOCKUP WITH STUDS */
.frame-mockup { position: relative; transition: var(--transition); max-width: 320px; width: 100%; box-shadow: 0 25px 60px rgba(0,0,0,0.8); background: #fff; }
.frame-mockup.frame-black { border: 22px solid #141414; box-shadow: 0 20px 45px rgba(0,0,0,0.8), inset 0 0 5px rgba(0,0,0,0.5); }
.frame-mockup.frame-wood { border: 24px solid #795548; border-image: linear-gradient(to bottom, #8d6e63, #5d4037) 1; box-shadow: 0 20px 45px rgba(0,0,0,0.7); }
.frame-mockup.frame-white { border: 22px solid #ffffff; box-shadow: 0 20px 45px rgba(0,0,0,0.4); }
.frame-mockup.frame-gold { border: 22px solid #d4af37; border-image: linear-gradient(135deg, #fef08a, #f59e0b, #b45309) 1; box-shadow: 0 20px 45px rgba(245, 158, 11, 0.4); }
.frame-mockup.frame-acrylic {
    border: 12px solid rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.6), inset 0 0 15px rgba(255,255,255,0.4);
    position: relative; overflow: visible;
}

/* PrintShoppy Glass Sheen Overlay & Standoff Bolts */
.acrylic-stud {
    position: absolute; width: 18px; height: 18px; border-radius: 50%;
    background: radial-gradient(circle, #ffffff 20%, #cbd5e1 50%, #64748b 90%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.6), inset 0 0 2px rgba(255,255,255,0.8);
    z-index: 10; border: 1px solid #475569;
}
.stud-tl { top: -6px; left: -6px; }
.stud-tr { top: -6px; right: -6px; }
.stud-bl { bottom: -6px; left: -6px; }
.stud-br { bottom: -6px; right: -6px; }

.glass-sheen {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 45%, rgba(255,255,255,0.12) 100%);
    pointer-events: none; z-index: 5;
}

.matting-layer { background: #fff; padding: 15px; transition: padding 0.3s ease; position: relative; }
.photo-canvas { width: 100%; height: 260px; object-fit: cover; display: block; border: 1px solid rgba(0,0,0,0.05); transition: filter 0.3s ease, transform 0.3s ease; }

.customizer-controls { display: flex; flex-direction: column; gap: 22px; }
.control-group { display: flex; flex-direction: column; gap: 8px; }
.control-label { font-weight: 700; font-size: 0.95rem; color: #ffffff; display: flex; justify-content: space-between; }
.file-upload-btn { border: 2px dashed var(--gold-bright); border-radius: var(--radius-md); padding: 18px; text-align: center; background: rgba(245, 158, 11, 0.08); color: var(--gold-bright); cursor: pointer; font-weight: 700; transition: var(--transition); }
.file-upload-btn:hover { background: rgba(245, 158, 11, 0.2); }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 10px; }
.option-btn { padding: 10px; border: 1px solid var(--card-border); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; text-align: center; background: rgba(255, 255, 255, 0.03); color: var(--text-main); transition: var(--transition); }
.option-btn:hover, .option-btn.active { border-color: var(--gold-bright); background: var(--gold-gradient); color: #000; font-weight: 800; }

.customizer-price-box { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.03); padding: 20px 24px; border-radius: var(--radius-md); border: 1px solid var(--card-border); margin-top: 10px; }
.calc-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--gold-bright); }

/* PRODUCTS CATALOG GRID */
.products-section { padding: 70px 0; background: var(--bg-main); }
.filter-bar-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.sort-select { padding: 12px 20px; border: 1px solid var(--card-border); border-radius: var(--radius-full); background: var(--bg-surface); color: #ffffff; font-weight: 700; font-size: 0.9rem; }

.filter-tabs { display: flex; gap: 12px; overflow-x: auto; white-space: nowrap; padding-bottom: 15px; margin-bottom: 30px; scrollbar-width: none; }
.filter-btn { padding: 10px 24px; border-radius: var(--radius-full); border: 1px solid var(--card-border); background: var(--bg-surface); font-weight: 700; font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--gold-gradient); color: #000; font-weight: 800; border-color: var(--gold-bright); box-shadow: 0 4px 18px var(--gold-glow); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px; }
.product-card { background: var(--card-bg); border-radius: var(--radius-md); border: 1px solid var(--card-border); overflow: hidden; transition: var(--transition); position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); border-color: var(--gold-bright); box-shadow: var(--shadow-gold); }

.card-image-wrap { position: relative; height: 260px; overflow: hidden; background: #000; }
.card-image-wrap img, .card-image-wrap video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .card-image-wrap img, .product-card:hover .card-image-wrap video { transform: scale(1.08); }
.tag-badge { position: absolute; top: 12px; left: 12px; background: var(--gold-gradient); color: #000; font-size: 0.72rem; font-weight: 900; padding: 4px 12px; border-radius: var(--radius-full); text-transform: uppercase; z-index: 6; }

.card-quick-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(10px); transition: var(--transition); z-index: 7; }
.product-card:hover .card-quick-actions { opacity: 1; transform: translateX(0); }
.quick-action-btn { width: 38px; height: 38px; border-radius: 50%; background: #000000; border: 1px solid var(--gold-bright); color: var(--gold-bright); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.quick-action-btn:hover { background: var(--gold-gradient); color: #000; }

.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card-category { font-size: 0.78rem; font-weight: 800; color: var(--gold-bright); text-transform: uppercase; margin-bottom: 6px; letter-spacing: 1px; }
.card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: #ffffff; margin-bottom: 10px; line-height: 1.3; }
.card-rating { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: var(--gold-bright); margin-bottom: 14px; }
.card-rating span { color: var(--text-muted); font-size: 0.78rem; margin-left: 4px; }
.card-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border-color); }
.price-tag { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 900; color: var(--gold-bright); }
.old-price { font-size: 0.88rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.add-cart-btn { padding: 9px 20px; border-radius: var(--radius-full); background: var(--gold-gradient); color: #000; font-weight: 900; font-size: 0.88rem; transition: var(--transition); }
.add-cart-btn:hover { transform: scale(1.05); box-shadow: 0 0 15px var(--gold-glow); }

/* REVIEWS & FAQ */
.reviews-section { padding: 60px 0; background: var(--bg-main); border-top: 1px solid var(--card-border); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.review-card { background: var(--card-bg); border-radius: var(--radius-md); border: 1px solid var(--card-border); padding: 25px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.review-stars { color: var(--gold-bright); font-size: 1.15rem; }
.review-text { font-size: 0.95rem; color: #e2e8f0; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-color); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-gradient); color: #000; font-weight: 900; display: flex; align-items: center; justify-content: center; }

.faq-section { padding: 60px 0; background: var(--bg-surface); border-top: 1px solid var(--card-border); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--card-border); border-radius: var(--radius-md); overflow: hidden; background: var(--card-bg); }
.faq-header { padding: 20px 24px; font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #ffffff; }
.faq-body { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-muted); display: none; line-height: 1.6; }
.faq-item.open .faq-body { display: block; }
.faq-item.open .faq-header { color: var(--gold-bright); }

.tracker-section { padding: 60px 0; background: var(--bg-surface); border-top: 1px solid var(--card-border); }
.tracker-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 35px; border: 1px solid var(--card-border); max-width: 800px; margin: 0 auto; }
.tracker-input-group { display: flex; gap: 10px; margin-bottom: 30px; }
.tracker-input { flex: 1; padding: 14px 20px; border: 1px solid var(--card-border); border-radius: var(--radius-full); background: rgba(255,255,255,0.05); color: #fff; font-size: 0.95rem; }

/* MODALS & CART */
.modal-overlay, .cart-drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(10px); z-index: 2500; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px; }
.modal-overlay.open, .cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-surface); border-radius: var(--radius-lg); max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; padding: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; border: 1px solid var(--card-border); box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 18px; right: 18px; font-size: 1.5rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; }

.cart-drawer { position: fixed; top: 0; right: -440px; width: 100%; max-width: 440px; height: 100%; background: var(--bg-surface); z-index: 2501; display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-left: 1px solid var(--card-border); box-shadow: var(--shadow-lg); }
.cart-drawer-overlay.open .cart-drawer { right: 0; }
.cart-header { padding: 20px; border-bottom: 1px solid var(--card-border); display: flex; align-items: center; justify-content: space-between; color: var(--gold-bright); }
.cart-items-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px; }

.site-footer { background: #000000; color: var(--text-muted); padding: 60px 0 20px; border-top: 1px solid var(--card-border); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-family: var(--font-heading); color: var(--gold-bright); font-size: 1.25rem; margin-bottom: 20px; position: relative; }
.footer-col h3::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 35px; height: 3px; background: var(--gold-bright); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid #222; color: #666; font-size: 0.85rem; }

.toast-container { position: fixed; bottom: 80px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: #18181b; color: #ffffff; padding: 14px 22px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 700; border-left: 4px solid var(--gold-bright); border-top: 1px solid var(--card-border); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 992px) {
    .hero-split-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-main-heading { font-size: 2.8rem; }
    .hero-subtext { margin: 0 auto 35px; }
    .hero-stats-row, .hero-btns { justify-content: center; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large, .bento-tall { grid-column: span 2; grid-row: span 1; min-height: 320px; }
    .customizer-box { grid-template-columns: 1fr; }
    .modal-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .announcement-bar, .search-wrapper { display: none; }
    .hero-main-heading { font-size: 2.2rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-tall { grid-column: span 1; min-height: 280px; }
    .cart-drawer { max-width: 100%; }
}

/* ENTERPRISE ADMIN PORTAL STYLES */
.admin-portal-wrapper { background: #07070a; color: #fff; min-height: 100vh; padding-bottom: 60px; }
.admin-header-bar { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }

.admin-nav-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 2px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
.admin-tab-btn { padding: 12px 22px; border-radius: var(--radius-md); background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); color: #cbd5e1; font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: var(--transition); }
.admin-tab-btn:hover { background: rgba(245, 158, 11, 0.18); color: var(--gold-bright); border-color: var(--gold-bright); }
.admin-tab-btn.active { background: var(--gold-gradient) !important; color: #000000 !important; font-weight: 900 !important; border-color: var(--gold-bright) !important; box-shadow: 0 4px 18px var(--gold-glow); }

.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 35px; }
.stat-card { background: #111116; border: 1px solid var(--card-border); padding: 22px; border-radius: var(--radius-md); text-align: left; }
.stat-card h4 { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: #ffffff; }

.low-stock-alert-card { background: rgba(239, 68, 68, 0.15); border: 1px solid #ef4444; color: #fca5a5; padding: 16px 20px; border-radius: var(--radius-md); margin-bottom: 25px; display: flex; align-items: center; gap: 15px; font-size: 0.95rem; }

.admin-table-wrap { overflow-x: auto; background: #0f0f14; border-radius: var(--radius-md); border: 1px solid var(--card-border); }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem; }
.admin-table th { background: #16161d; color: var(--gold-bright); font-weight: 800; padding: 14px 18px; border-bottom: 1px solid var(--card-border); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1px; }
.admin-table td { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #e2e8f0; vertical-align: middle; }
.admin-table tr:hover { background: rgba(255,255,255,0.02); }

.status-badge { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; display: inline-block; }
.status-processing { background: rgba(245, 158, 11, 0.2); color: #f59e0b; border: 1px solid #f59e0b; }
.status-shipped { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid #3b82f6; }
.status-delivered { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid #22c55e; }
.status-cancelled { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid #ef4444; }
