:root {
  --bg-page: #0f1115;
  --bg-card: #16181d;
  --bg-glass: rgba(22, 24, 29, 0.7);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --brand-gold: #d4af37;
  --brand-gold-hover: #b5952f;
  --brand-fire-1: #ff7b00;
  --brand-fire-2: #ff2a00;
  --border: #2e323b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(255, 123, 0, 0.3);
  --font-h: 'Playfair Display', Georgia, serif;
  --font-p: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-p); background: var(--bg-page); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: .3s; }
h1, h2, h3, h4, h5 { font-family: var(--font-h); font-weight: normal; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar { background: #000; font-size: 13px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.topbar-flex { display: flex; justify-content: space-between; align-items: center; }
.city-picker-btn { background: none; border: none; color: var(--text-main); font: inherit; cursor: pointer; transition:.3s; }
.city-picker-btn:hover { color: var(--brand-gold); }
.topbar-phone { color: var(--brand-gold); font-weight: bold; letter-spacing: 1px; }

/* Header Glassmorphism */
.header { position: sticky; top: 0; z-index: 100; background: var(--bg-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: .3s; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 26px; font-weight: 900; letter-spacing: 2px; font-family: var(--font-p); }
.nav-links { display: flex; gap: 30px; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--brand-gold); }
.header-actions { display: flex; gap: 20px; align-items: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-p); font-weight: 600; padding: 14px 28px; border-radius: 50px; cursor: pointer; border: none; transition: .3s; text-align: center; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.btn-gold { background: var(--brand-gold); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.btn-gold:hover { background: var(--brand-gold-hover); transform: translateY(-2px); }
.btn-fire { background: linear-gradient(45deg, var(--brand-fire-1), var(--brand-fire-2)); color: #fff; box-shadow: var(--shadow-glow); }
.btn-fire:hover { box-shadow: 0 0 30px rgba(255, 123, 0, 0.6); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border); background: transparent; color: var(--text-main); }
.btn-outline:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
.btn-icon { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-main); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .3s; }
.btn-icon:hover { background: var(--brand-gold); color: #000; border-color: var(--brand-gold); }

/* Cart Badge */
.cart-btn { position: relative; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.cart-btn:hover { color: var(--brand-gold); }
.cart-badge { position: absolute; top: -8px; right: -12px; background: var(--brand-fire-2); color: #fff; font-size: 11px; font-weight: 800; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--bg-card); font-family: var(--font-p); }

/* Hero Section */
.hero { position: relative; padding: 60px 0; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(circle at 70% 40%, rgba(212,175,55,0.08), transparent 60%); z-index: 1; pointer-events: none; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.1); color: var(--brand-gold); padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 30px; border: 1px solid rgba(212,175,55,0.2); text-transform: uppercase; letter-spacing: 2px; }
.hero-title { font-size: 64px; line-height: 1.05; margin-bottom: 30px; background: linear-gradient(to right, #fff, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; font-weight: 300; line-height: 1.8; }
.hero-actions { display: flex; gap: 20px; align-items: center; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 30px; border-top: 1px solid var(--border); padding-top: 30px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-family: var(--font-h); color: var(--brand-gold); margin-bottom: 5px; }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-sep { width: 1px; background: var(--border); }
.hero-image-wrap { position: relative; }
.hero-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/5; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--bg-glass); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: var(--radius); display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow); }
.hero-badge svg { color: var(--brand-gold); width: 32px; height: 32px; }
.hero-badge b { display: block; font-size: 16px; margin-bottom: 2px; }
.hero-badge span { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 42px; margin-bottom: 20px; }
.section-lead { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; font-weight: 300; }

/* Features (4 icons) */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feat-card { text-align: center; padding: 20px; }
.feat-icon { width: 64px; height: 64px; background: rgba(212,175,55,0.1); color: var(--brand-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; border: 1px solid rgba(212,175,55,0.2); }
.feat-card h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--font-h); }
.feat-card p { font-size: 14px; color: var(--text-muted); }

/* Elite Catalog Grid */
.elite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; }
.elite-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .4s; }
.elite-card:hover { transform: translateY(-10px); border-color: var(--brand-gold); box-shadow: var(--shadow); }
.ec-img-wrap { position: relative; overflow: hidden; }
.ec-img { width: 100%; height: 260px; object-fit: cover; transition: .6s; }
.elite-card:hover .ec-img { transform: scale(1.08); }
.ec-badge { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); color: var(--brand-gold); padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(212,175,55,0.3); }
.ec-body { padding: 30px; }
.ec-title { font-size: 22px; margin-bottom: 12px; }
.ec-title a:hover { color: var(--brand-gold); }
.ec-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ec-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 20px; }
.ec-price { font-size: 24px; font-family: var(--font-h); color: var(--brand-gold); }
.ec-price span { font-size: 13px; font-family: var(--font-p); color: var(--text-muted); }

/* Widgets */
.widget-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--shadow); }
.wb-title { font-size: 28px; margin-bottom: 15px; }
.wb-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 30px; }

/* Range Slider Premium */
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 28px; width: 28px; border-radius: 50%; background: var(--brand-gold); cursor: pointer; margin-top: -12px; box-shadow: 0 0 15px rgba(212,175,55,0.6); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: var(--border); border-radius: 2px; }
.m-res-box { text-align: center; margin-top: 30px; }
.m-val-wrap { display: inline-block; padding: 10px 30px; border: 1px solid var(--border); border-radius: 50px; font-size: 36px; font-family: var(--font-h); margin-bottom: 15px; }
#mDesc { font-size: 15px; font-weight: 300; }

/* Mix Builder */
.mix-builder .mb-row { margin-bottom: 20px; }
.mb-row span { display: block; font-size: 13px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 1px; }
.mb-bar { height: 6px; background: var(--bg-page); border-radius: 3px; overflow: hidden; }
.mb-bar div { height: 100%; border-radius: 3px; }

/* Services List */
.services-list { max-width: 800px; margin: 0 auto; }
.srv-row { display: flex; align-items: center; padding: 20px 0; border-bottom: 1px dashed var(--border); transition: .3s; }
.srv-row:hover { padding-left: 10px; color: var(--brand-gold); border-bottom-color: var(--brand-gold); }
.srv-name { font-size: 18px; font-family: var(--font-h); }
.srv-dots { flex: 1; border-bottom: 1px dotted var(--border); margin: 0 20px; opacity: 0.5; }
.srv-price { font-size: 20px; font-weight: bold; color: var(--brand-gold); }

/* Video Placeholder */
.video-placeholder { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(212,175,55,0.9); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; cursor: pointer; transition: .3s; padding-left: 6px; }
.play-btn:hover { background: #fff; transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 30px rgba(255,255,255,0.5); }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 16px; color: var(--text-muted); }
.check-list svg { color: var(--brand-gold); width: 24px; height: 24px; flex-shrink:0; }

/* Reviews Slider (Static Grid for now) */
.reviews-slider { display: grid; gap: 30px; }
.rev-card { background: var(--bg-page); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); position: relative; }
.rev-card::before { content: '”'; position: absolute; top: 10px; right: 30px; font-size: 80px; font-family: var(--font-h); color: rgba(212,175,55,0.1); line-height: 1; }
.rev-stars { color: var(--brand-gold); margin-bottom: 15px; letter-spacing: 2px; }
.rev-text { font-style: italic; font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.rev-author { font-family: var(--font-h); font-size: 18px; color: var(--brand-gold); }

/* B2B Toggle */
.b2b-card { background: linear-gradient(145deg, #16181d, #0f1115); border: 1px solid var(--brand-gold); }
.b2b-toggle-wrap { display: flex; align-items: center; justify-content: space-between; background: #000; padding: 15px 25px; border-radius: 50px; margin-bottom: 30px; border: 1px solid var(--border); }
.b2b-switch { position: relative; display: inline-block; width: 60px; height: 30px; }
.b2b-switch input { opacity: 0; width: 0; height: 0; }
.b2b-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--border); border-radius: 30px; transition: .4s; }
.b2b-slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 4px; bottom: 4px; background-color: var(--brand-gold); border-radius: 50%; transition: .4s; }
input:checked + .b2b-slider { background-color: rgba(212,175,55,0.2); border: 1px solid var(--brand-gold); }
input:checked + .b2b-slider:before { transform: translateX(30px); background-color: var(--brand-gold); }
.b2b-prices .b2b-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--text-muted); }
.b2b-prices b { color: var(--text-main); font-size: 18px; font-family: var(--font-h); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 15px; background: var(--bg-card); overflow: hidden; }
.faq-question { padding: 25px 30px; font-family: var(--font-h); font-size: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: .3s; }
.faq-question:hover { color: var(--brand-gold); }
.faq-icon { font-size: 24px; color: var(--brand-gold); transition: .3s; font-family: var(--font-p); }
.faq-answer { padding: 0 30px; max-height: 0; opacity: 0; transition: .4s ease; color: var(--text-muted); font-size: 15px; }
.faq-item.active .faq-answer { padding: 0 30px 30px; max-height: 500px; opacity: 1; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Footer */
.footer { background: #000; border-top: 1px solid var(--brand-gold); padding: 80px 0 40px; color: var(--text-muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.f-title { color: #fff; font-size: 20px; font-family: var(--font-h); margin-bottom: 25px; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 15px; }
.f-links a:hover { color: var(--brand-gold); padding-left: 5px; }

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-cloud a { padding: 10px 20px; background: transparent; border: 1px solid var(--border); border-radius: 50px; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.tag-cloud a:hover { background: var(--brand-gold); color: #000; border-color: var(--brand-gold); }

/* Modals */
.modal-overlay { position: fixed; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: .4s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-card); border: 1px solid var(--brand-gold); border-radius: var(--radius-lg); width: 100%; max-width: 700px; padding: 50px; transform: translateY(50px); transition: .5s; box-shadow: var(--shadow); position: relative; max-height: 90vh; display: flex; flex-direction: column; }
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 25px; right: 25px; background: none; border: none; color: var(--text-muted); font-size: 30px; cursor: pointer; transition: .3s; }
.modal-close:hover { color: var(--brand-gold); transform: rotate(90deg); }

.city-search { width: 100%; padding: 18px 25px; border-radius: 50px; border: 1px solid var(--border); background: var(--bg-page); color: #fff; font-size: 16px; margin-bottom: 30px; outline: none; transition: .3s; }
.city-search:focus { border-color: var(--brand-gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); }
.city-list { overflow-y: auto; flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding-right: 15px; }
.city-list::-webkit-scrollbar { width: 4px; }
.city-list::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 10px; }
.city-modal-item { padding: 15px; border-radius: var(--radius); transition: .3s; border: 1px solid transparent; }
.city-modal-item:hover { background: var(--bg-page); border-color: var(--border); transform: translateX(5px); }

/* Other Pages Overrides to match Elite Theme */
.breadcrumbs-sec { padding: 30px 0; background: #000; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--brand-gold); }
.good-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .4s; }
.good-card:hover { border-color: var(--brand-gold); }
.good-img { width: 100%; height: 240px; object-fit: cover; }
.good-body { padding: 30px; }
.good-badge { display: inline-block; padding: 4px 12px; background: rgba(212,175,55,0.1); color: var(--brand-gold); border-radius: 50px; font-size: 11px; margin-bottom: 15px; text-transform: uppercase; }
.good-title { font-size: 22px; font-family: var(--font-h); margin-bottom: 10px; }
.good-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.good-price { font-size: 24px; font-family: var(--font-h); color: var(--brand-gold); margin-bottom: 20px; }

/* SVG constraints (fixes giant icons issue) */
svg { max-width: 100%; flex-shrink: 0; }
.hero-tag svg { width: 16px; height: 16px; vertical-align: text-bottom; margin-right: 5px; fill:currentColor; }
.feat-icon svg { width: 32px; height: 32px; }
.btn-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.topbar-flex svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 4px; }
.cart-btn svg { width: 24px; height: 24px; }
.burger-btn svg { width: 28px; height: 28px; }
.widget-box svg { width: 24px; height: 24px; }

/* Contact widget icons */
.widget-box > div > div > svg { width: 24px; height: 24px; color: var(--brand-gold); }

/* Burger */
.burger-btn { display: none; background: none; border: none; color: var(--text-main); cursor: pointer; }


@media (max-width: 992px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--bg-glass); backdrop-filter: blur(16px); padding: 30px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.active { display: flex !important; }
  .hidden-mobile, .topbar-contacts { display: none !important; }
  .burger-btn { display: block !important; }


  .nav-links, .hidden-mobile, .topbar-contacts { display: none; }
  .burger-btn { display: block; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-title { font-size: 42px; }
  .hero { padding: 40px 0; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .stat-sep { display: none; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

.hero-tag svg { width: 18px !important; height: 18px !important; }
.feat-icon svg { width: 36px !important; height: 36px !important; }
.check-list svg { width: 24px !important; height: 24px !important; }
.hero-badge svg { width: 32px !important; height: 32px !important; }
.btn-icon svg { width: 20px !important; height: 20px !important; }
.cart-btn svg { width: 24px !important; height: 24px !important; }
.burger-btn svg { width: 28px !important; height: 28px !important; }
.widget-box svg { width: 24px !important; height: 24px !important; }
.brand svg { width: 32px !important; height: 32px !important; }
.topbar-flex svg { width: 16px !important; height: 16px !important; }
