/* ─── THC VAPE DUBAI ─── */
:root {
  --bg: #080808; --bg-card: #0F0F0F; --bg-elevated: #161616; --bg-hover: #1E1E1E;
  --border: #262626; --border-light: #333333; --text: #F0F0F0; --text-muted: #999999; --text-dim: #555555;
  --gold: #D4A832; --gold-light: #E8C040; --gold-dark: #B89220; --gold-glow: rgba(212,168,50,0.25);
  --indica: #8B5CF6; --sativa: #22C55E; --hybrid: #F59E0B; --success: #22C55E; --danger: #EF4444;
  --radius: 12px; --radius-sm: 8px; --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ─── Buttons (no color change on hover) ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-size: 0.8125rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border-color: var(--gold);
}
.btn-primary:hover {
  transform: translateY(-1px); box-shadow: 0 4px 20px var(--gold-glow);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}
.btn-outline {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline:hover {
  background: transparent; color: var(--gold); border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border-color: #25D366;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2rem; font-size: 0.9375rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.6875rem; }
.btn-block { width: 100%; }

/* ─── Header ─── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(8,8,8,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.125rem; font-weight: 900; letter-spacing: 0.12em; color: var(--text); }
.logo span { color: var(--gold); }
.main-nav ul { display: flex; list-style: none; gap: 1.5rem; }
.main-nav a { color: var(--text-muted); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.cart-toggle { position: relative; background: none; border: none; color: var(--text); cursor: pointer; padding: 0.5rem; }
.cart-badge { position: absolute; top: -2px; right: -6px; background: var(--gold); color: #000; font-size: 0.625rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.5rem; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: var(--transition); }

/* ─── Hero ─── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 1.25rem 3rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(212,168,50,0.07) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(212,168,50,0.04) 0%, transparent 50%), var(--bg); }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { font-size: clamp(2.2rem, 6.5vw, 4.5rem); font-weight: 900; letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 1.25rem; }
.hero h1 .gold { color: var(--gold); }
.hero-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto 1.75rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* ─── Natural Content (homepage) ─── */
.natural-content h2 { font-size: 1.375rem; font-weight: 700; color: var(--text); margin: 2rem 0 0.75rem; }
.natural-content h2:first-child { margin-top: 0; }
.natural-content p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.natural-content strong { color: var(--text); }
.natural-content a { color: var(--gold); }

/* ─── Authentic Inline ─── */
.authentic-inline { display: flex; gap: 0.5rem; margin-bottom: 0.875rem; flex-wrap: wrap; }
.auth-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 100px; font-size: 0.6875rem; font-weight: 600; color: var(--success); }
.auth-badge svg { color: var(--success); }

/* ─── TOC ─── */
.toc-box { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.5rem; }
.toc-box h3 { font-size: 0.875rem; margin-bottom: 0.75rem; color: var(--gold); }
.toc-box ol { list-style: none; counter-reset: toc; }
.toc-box ol li { counter-increment: toc; padding: 0.375rem 0; border-bottom: 1px solid var(--border); font-size: 0.8125rem; }
.toc-box ol li:last-child { border-bottom: none; }
.toc-box ol li::before { content: counter(toc) "."; color: var(--gold); font-weight: 700; margin-right: 0.5rem; }
.toc-box a { color: var(--text-muted); }
.toc-box a:hover { color: var(--gold); }

/* ─── FAQ ─── */
.faq-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.faq-section > h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--gold); }
.faq-item { margin-bottom: 1rem; }
.faq-item h3 { font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 0.375rem; }
.faq-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Emirates Grid ─── */
.emirates-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.emirates-grid span { padding: 0.375rem 0.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); }

/* ─── Page Hero ─── */
.page-hero { padding: 7rem 1.25rem 2.5rem; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(212,168,50,0.06) 0%, transparent 70%), var(--bg); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 0.9375rem; }

/* ─── Products Grid ─── */
.products-section { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); font-size: 0.9375rem; }
.section-cta { text-align: center; margin-top: 2rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.product-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.card-image { display: block; position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-elevated); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .card-image img { transform: scale(1.05); }
.strain-badge { position: absolute; top: 12px; left: 12px; padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.strain-badge.indica { background: linear-gradient(135deg, var(--indica), #7C3AED); }
.strain-badge.sativa { background: linear-gradient(135deg, var(--sativa), #059669); }
.strain-badge.hybrid { background: linear-gradient(135deg, var(--hybrid), #D97706); }
.card-body { padding: 1.125rem; }
.card-brand { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.card-body h3 { font-size: 0.9375rem; font-weight: 600; margin: 0.25rem 0 0.5rem; line-height: 1.4; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--gold); }
.card-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.625rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.875rem; }
.rating { display: flex; align-items: center; gap: 0.25rem; }
.stars { color: var(--gold); font-size: 0.8125rem; }
.rating-count { font-size: 0.6875rem; color: var(--text-dim); }
.price { font-size: 1.0625rem; font-weight: 700; color: var(--gold); }

/* ─── Blog ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.blog-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.blog-card-link { display: block; padding: 1.5rem; color: var(--text); text-decoration: none; }
.blog-card-link h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.375rem; color: var(--text); line-height: 1.4; }
.blog-card-link:hover h3 { color: var(--gold); }
.blog-date { display: block; font-size: 0.6875rem; color: var(--gold); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-link p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-read { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 2rem 0 0.75rem; }
.blog-article h2:first-child { margin-top: 0; }
.blog-article p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.blog-article strong { color: var(--text); }
.blog-nav { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ─── Shop Bar ─── */
.shop-bar { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
.shop-count { font-size: 0.8125rem; color: var(--text-muted); }
.strain-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.375rem 0.875rem; border-radius: 100px; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* ─── Breadcrumb ─── */
.breadcrumb { padding: 1rem 0; font-size: 0.75rem; color: var(--text-dim); }
.breadcrumb ol { display: flex; list-style: none; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--border-light); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── Single Product ─── */
.product-single { padding: 0.5rem 0 3rem; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 0.5rem; }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; gap: 2rem; } }

.product-gallery { position: sticky; top: 80px; align-self: start; }
.gallery-main { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gallery-main img { max-height: 100%; object-fit: contain; transition: var(--transition); }
.strain-overlay { position: absolute; top: 16px; left: 16px; font-size: 0.75rem; padding: 0.375rem 1rem; z-index: 2; }
.gallery-thumbs { display: flex; gap: 0.625rem; margin-top: 0.875rem; }
.gallery-thumb { width: 72px; height: 72px; background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 0.375rem; cursor: pointer; transition: var(--transition); overflow: hidden; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info { padding-top: 0.5rem; }
.product-brand { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.375rem; }
.product-info h1 { font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.625rem; }
.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.875rem; }
.rating-text { font-size: 0.75rem; color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.875rem; padding-bottom: 0.875rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.current-price { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stock-badge { font-size: 0.6875rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 100px; }
.stock-badge.in-stock { background: rgba(34,197,94,0.12); color: var(--success); }
.product-short-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.875rem; }
.product-meta-bar { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.25rem; flex-wrap: wrap; }
.product-meta-bar .sep { color: var(--border-light); }
.strain-display { font-weight: 600; color: var(--gold); }

.flavor-selector { margin-bottom: 1.125rem; }
.flavor-selector label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.375rem; }
.flavor-dropdown { width: 100%; padding: 0.875rem 1rem; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 0.875rem; font-family: inherit; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; transition: var(--transition); }
.flavor-dropdown:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }

.effects-box { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.875rem 1.125rem; margin-bottom: 1.125rem; }
.effects-box h4 { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.625rem; }
.effects-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.effect-tag { padding: 0.375rem 0.875rem; background: rgba(212,168,50,0.08); border: 1px solid rgba(212,168,50,0.2); border-radius: 100px; font-size: 0.6875rem; font-weight: 500; color: var(--gold); transition: var(--transition); }
.effect-tag:hover { background: rgba(212,168,50,0.15); transform: translateY(-1px); }

.add-to-cart-row { display: flex; gap: 0.875rem; margin-bottom: 1.125rem; }
.quantity-stepper { display: flex; align-items: center; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 42px; height: 46px; background: none; border: none; color: var(--text); font-size: 1.125rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--bg-hover); color: var(--gold); }
.quantity-stepper input { width: 48px; height: 46px; background: none; border: none; color: var(--text); text-align: center; font-size: 0.875rem; font-weight: 600; -moz-appearance: textfield; }
.quantity-stepper input::-webkit-outer-spin-button, .quantity-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn-add-cart { flex: 1; font-size: 0.875rem; }

.product-tabs { margin-top: 1.5rem; }
.tab-buttons { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; }
.tab-btn { padding: 0.75rem 1.25rem; background: none; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: var(--transition); margin-bottom: -1px; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.product-description { font-size: 0.875rem; line-height: 1.9; color: var(--text-muted); }
.product-description p { margin-bottom: 1rem; }
.product-description h2 { font-size: 1.125rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.75rem; }
.product-description h3 { font-size: 0.9375rem; font-weight: 600; color: var(--gold); margin: 1.25rem 0 0.5rem; }
.product-description strong { color: var(--text); }
.product-description a { color: var(--gold); }
.product-description ul { margin: 0.75rem 0 1rem 1.25rem; color: var(--text-muted); font-size: 0.875rem; line-height: 1.9; }
.product-description ul li { margin-bottom: 0.375rem; }

.meta-table { width: 100%; border-collapse: collapse; }
.meta-table th, .meta-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.8125rem; }
.meta-table th { width: 45%; color: var(--text-muted); font-weight: 500; }
.meta-table td { color: var(--text); font-weight: 500; }

.related-section { padding: 2.5rem 0 4rem; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.375rem; margin-bottom: 1.25rem; }

/* SEO Section */
.seo-section { padding: 3rem 1.25rem; max-width: 800px; margin: 0 auto; }
.seo-section h2 { font-size: 1.25rem; color: var(--text); margin-bottom: 1rem; }
.seo-section p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.seo-section a { color: var(--gold); }
.seo-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.seo-links a { padding: 0.5rem 1rem; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 100px; font-size: 0.6875rem; color: var(--text-muted); transition: var(--transition); }
.seo-links a:hover { border-color: var(--gold); color: var(--gold); }

/* Content Pages */
.content-section { padding: 2.5rem 0 4rem; }
.about-content h2, .delivery-content h2, .legal-content h2 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.about-content h2:first-child, .delivery-content h2:first-child, .legal-content h2:first-child { margin-top: 0; }
.about-content p, .delivery-content p, .legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.875rem; font-size: 0.875rem; }
.legal-content h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--gold); }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature { text-align: center; padding: 1.25rem; }
.feature h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.25rem; }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--gold); color: #000; font-weight: 700; border-radius: 50%; margin-bottom: 0.625rem; font-size: 0.875rem; }
.step h4 { margin-bottom: 0.5rem; font-size: 0.9375rem; }
.step p { font-size: 0.75rem; margin: 0; color: var(--text-muted); }

.contact-layout { max-width: 600px; margin: 0 auto; }
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.875rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1.125rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); color: var(--text); }
.contact-method:hover { border-color: var(--gold-dark); transform: translateX(4px); }
.contact-method svg { color: var(--gold); flex-shrink: 0; }
.contact-method div { display: flex; flex-direction: column; }
.contact-method strong { font-size: 0.8125rem; }
.contact-method span { font-size: 0.75rem; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 3rem 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.5rem; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.625rem; line-height: 1.6; }
.footer-links h4 { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.875rem; color: var(--text); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.375rem; }
.footer-links a { font-size: 0.75rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2rem; padding: 1.25rem; text-align: center; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.6875rem; color: var(--text-dim); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: 0; width: 280px; max-width: 85vw; height: 100vh; background: var(--bg-card); z-index: 3000; transform: translateX(100%); transition: var(--transition); padding: 4rem 2rem; }
.mobile-menu.open { transform: translateX(0); }
.menu-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1.0625rem; font-weight: 600; color: var(--text); padding: 0.5rem 0; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2500; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* Cart Drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 400px; max-width: 100%; height: 100vh; background: var(--bg-card); border-left: 1px solid var(--border); z-index: 2001; transform: translateX(100%); transition: var(--transition); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 1.0625rem; }
.cart-close { background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; line-height: 1; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-empty { text-align: center; color: var(--text-dim); padding: 3rem 0; }
.cart-item { display: flex; gap: 0.875rem; padding: 0.875rem 0; border-bottom: 1px solid var(--border); }
.cart-item-image { width: 56px; height: 56px; background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 0.25rem; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.75rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-meta { font-size: 0.625rem; color: var(--text-dim); margin-top: 0.25rem; }
.cart-item-price { font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-top: 0.25rem; }
.cart-item-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 0.25rem; align-self: flex-start; transition: var(--transition); }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg-elevated); }
.cart-row { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 0; font-size: 0.8125rem; }
.cart-row span:first-child { color: var(--text-muted); }
.cart-row span:last-child { font-weight: 600; }
.cart-total { padding-top: 0.625rem; margin-top: 0.375rem; border-top: 1px solid var(--border); font-size: 1.0625rem; }
.cart-total span:last-child { color: var(--gold); font-size: 1.125rem; }
.cart-note { font-size: 0.625rem; color: var(--text-dim); text-align: center; margin-top: 0.625rem; }
#discountRow span:last-child { color: var(--success); }

/* Cart Page */
.cart-page { padding: 1.5rem 0 3rem; }
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-empty-page { text-align: center; padding: 4rem; color: var(--text-muted); }
.cart-item-row { display: flex; align-items: center; gap: 1rem; padding: 1.125rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.625rem; flex-wrap: wrap; }
.cart-item-row .cart-item-image { width: 72px; height: 72px; }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 80px; align-self: start; }
.cart-summary h3 { font-size: 1.0625rem; margin-bottom: 1rem; padding-bottom: 0.625rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.8125rem; }
.summary-row span:first-child { color: var(--text-muted); }
.summary-row.total { margin-top: 0.625rem; padding-top: 0.625rem; border-top: 1px solid var(--border); font-size: 1.0625rem; font-weight: 700; }
.summary-row.total span:last-child { color: var(--gold); }
.summary-row .free { color: var(--success); font-weight: 600; }
.summary-note { font-size: 0.6875rem; color: var(--text-dim); margin-top: 1rem; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 5rem; }
  .hero h1 { font-size: 2rem; }
  .page-hero { padding-top: 5rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .shop-bar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .add-to-cart-row { flex-direction: column; }
  .cart-drawer { width: 100%; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .product-info h1 { font-size: 1.2rem; }
}

/* ─── Contact Icons (WhatsApp + Telegram) ─── */
.contact-icons { display: flex; gap: 1rem; margin: 1.25rem 0; }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-elevated);
  border: 1px solid var(--border); transition: var(--transition);
}
.contact-icon:hover { transform: translateY(-2px); border-color: var(--gold); }
.contact-icon svg { width: 24px; height: 24px; }
.wa-icon:hover { background: #25D366; border-color: #25D366; }
.wa-icon:hover svg { fill: #fff; }
.tg-icon:hover { background: #229ED9; border-color: #229ED9; }
.tg-icon:hover svg { fill: #fff; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.product-card, .blog-card, .feature, .step { animation: fadeIn 0.5s ease forwards; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::selection { background: var(--gold); color: #000; }
