:root {
  --bg: #f8fafc;
  --bg2: #ffffff;
  --card: rgba(0,0,0,0.03);
  --card-border: rgba(0,0,0,0.08);
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(0,0,0,0.1);
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;
  --accent: #8b5cf6;
  --accent2: #7c3aed;
  --accent3: #0891b2;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-bg: rgba(255,255,255,0.85);
  --nav-border: rgba(0,0,0,0.06);
  --footer-bg: #0f172a;
  --footer-text: rgba(255,255,255,0.7);
  --hero-text-grad: #0f172a, #8b5cf6;
  --input-bg: rgba(0,0,0,0.03);
}

[data-theme="dark"] {
  --bg: #0a0e1a;
  --bg2: #111827;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --accent: #a78bfa;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.4);
  --nav-bg: rgba(10,14,26,0.9);
  --nav-border: rgba(255,255,255,0.06);
  --footer-bg: #050812;
  --footer-text: rgba(255,255,255,0.5);
  --hero-text-grad: #fff, #c4b5fd;
  --input-bg: rgba(255,255,255,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}
::selection { background: var(--accent); color: #fff; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; }

.ssk-container { width: min(1200px, 92vw); margin: 0 auto; }

.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.btn, button.btn, a.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: none; border-radius: 10px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
  background: var(--card); color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border-color: transparent; }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(139,92,246,0.3); }
[data-theme="dark"] .btn-primary:hover { box-shadow: 0 8px 25px rgba(167,139,250,0.4); }
.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--glass); border-color: var(--accent); box-shadow: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  cursor: pointer; font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text2); flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); transform: rotate(15deg); }

input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--glass-border); border-radius: 10px;
  background: var(--input-bg); color: var(--text);
  font-family: var(--font); font-size: 14px;
  transition: all 0.3s ease; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
[data-theme="dark"] input:focus, [data-theme="dark"] select:focus, [data-theme="dark"] textarea:focus {
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* Sale Bar */
.sale-bar {
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(8,145,178,0.06));
  border-bottom: 1px solid rgba(124,58,237,0.1);
  padding: 10px 0;
  position: relative;
  z-index: 101;
}
[data-theme="dark"] .sale-bar {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.1));
}
.sale-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 13px; color: var(--text2); flex-wrap: wrap;
}
.sale-icon { font-size: 16px; }
.sale-inner strong { color: var(--accent); }
.sale-countdown { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; background: var(--glass); padding: 4px 12px; border-radius: 6px; font-size: 13px; }
.sale-cta { color: var(--accent3); font-weight: 600; font-size: 13px; }

/* Navbar */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s ease;
}
.header-grid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; flex-shrink: 0; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}
.brand-text b { display: block; font-size: 16px; color: var(--text); }
.brand-text small { display: block; font-size: 11px; color: var(--text3); font-weight: 400; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-btn {
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
  text-decoration: none; transition: all 0.2s;
}
.header-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }

/* Nav */
.nav { border-top: 1px solid var(--nav-border); }
.nav-inner { display: flex; gap: 2px; padding: 4px 0; overflow-x: auto; }
.nav-inner::-webkit-scrollbar { height: 0; }
.nav-inner a {
  padding: 8px 16px; border-radius: 6px;
  color: var(--text2); font-size: 13px; font-weight: 500;
  white-space: nowrap; transition: all 0.2s; text-decoration: none;
}
.nav-inner a:hover { background: var(--glass); color: var(--text); }

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 4px;
  padding: 10px; border: 1px solid var(--glass-border);
  border-radius: 8px; background: transparent;
  cursor: pointer; flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--text2); border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 90; pointer-events: auto; opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }

/* Hero */
.hero {
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(124,58,237,0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(8,145,178,0.04) 0%, transparent 50%);
  pointer-events: none;
}
[data-theme="dark"] .hero::before {
  background: radial-gradient(circle at 30% 50%, rgba(139,92,246,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(6,182,212,0.06) 0%, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(124,58,237,0.08); color: var(--accent);
  border: 1px solid rgba(124,58,237,0.15);
  margin-bottom: 20px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--hero-text-grad));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 17px; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--text); }
.hero-stat span { font-size: 13px; color: var(--text3); }

.hero-visual { position: relative; min-height: 400px; display: grid; place-items: center; }
.hero-card { position: relative; width: 100%; height: 400px; }
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; } }
.floating-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; color: var(--text);
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow);
  z-index: 2;
}
.fc-icon { font-size: 20px; }
.card-1 { top: 8%; left: 5%; animation-delay: 0s; }
.card-2 { top: 15%; right: 5%; animation-delay: 1.5s; }
.card-3 { bottom: 25%; left: 8%; animation-delay: 3s; }
.card-4 { bottom: 10%; right: 10%; animation-delay: 4.5s; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

/* Section */
.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 16px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 34px); font-weight: 800;
  background: linear-gradient(135deg, var(--hero-text-grad));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.section-head p { font-size: 14px; color: var(--text2); margin-top: 4px; }
.section-link { font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.category-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  transition: all 0.3s ease; text-decoration: none;
}
.category-card:hover { transform: translateY(-2px); border-color: rgba(124,58,237,0.2); box-shadow: var(--shadow); }
.cat-icon { font-size: 24px; width: 44px; height: 44px; border-radius: 10px; background: var(--input-bg); display: grid; place-items: center; flex-shrink: 0; }
.category-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.category-card p { font-size: 13px; color: var(--text2); }
.cat-arrow { margin-left: auto; color: var(--text3); font-size: 18px; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.product-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.25);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before { opacity: 1; }
.product-image {
  height: 180px;
  border-radius: 12px; margin: 16px 16px 0;
  background: var(--input-bg);
  display: grid; place-items: center;
  overflow: hidden; position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-placeholder { font-size: 28px; font-weight: 800; color: var(--text3); }
.product-placeholder.env { font-size: 22px; }
.product-body { padding: 16px; }
.product-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.product-tag { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: rgba(124,58,237,0.08); color: var(--accent); }
.product-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.product-desc { font-size: 13px; color: var(--text2); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.price { font-size: 22px; font-weight: 800; color: var(--accent); }
.price-period { font-size: 13px; color: var(--text3); }
.sale-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
  background: rgba(220,38,38,0.1); color: var(--danger);
  border: 1px solid rgba(220,38,38,0.2);
}
.cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
  text-decoration: none; transition: all 0.2s;
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.cart-btn span { font-size: 16px; }

/* Deal Banner */
.deal-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(8,145,178,0.05));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
[data-theme="dark"] .deal-banner {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(6,182,212,0.08));
}
.deal-content { flex: 1; }
.deal-badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; background: rgba(220,38,38,0.1); color: var(--danger); border: 1px solid rgba(220,38,38,0.2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.deal-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.deal-banner p { color: var(--text2); margin-bottom: 20px; }
.deal-timer { text-align: center; flex-shrink: 0; }
.timer-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.deal-timer strong { font-size: 28px; font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.review-card {
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.review-stars { font-size: 16px; color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; }
.review-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.review-author span { font-size: 12px; color: var(--text3); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-card {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 10px;
  cursor: pointer; transition: all 0.3s ease;
}
.faq-card:hover { border-color: rgba(124,58,237,0.15); }
.faq-card summary {
  font-weight: 600; font-size: 15px; cursor: pointer;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-card summary::after {
  content: '+'; font-size: 20px; color: var(--accent);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-card[open] summary::after { content: '−'; }
.faq-card p { margin-top: 14px; color: var(--text2); font-size: 14px; line-height: 1.7; }

/* Footer */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 0;
  margin-top: 80px;
  color: var(--footer-text);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 16px; margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: var(--footer-text); font-size: 14px; margin: 10px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 14px; line-height: 1.7; }
.payment-methods { color: var(--footer-text); }
.footer-contact { margin-top: 16px; }
.footer-contact a { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; margin-top: 40px; font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

/* WhatsApp Float */
/* Empty State */
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; background: var(--glass); border: 1px solid var(--card-border); border-radius: var(--radius-lg); }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--text2); }

/* Alert */
.alert { padding: 16px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; border: 1px solid; }
.alert-error { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.15); color: var(--danger); }
.alert-success { background: rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.15); color: var(--success); }
.alert-warning { background: rgba(217,119,6,0.08); border-color: rgba(217,119,6,0.15); color: var(--warning); }
.alert-info { background: rgba(8,145,178,0.08); border-color: rgba(8,145,178,0.15); color: var(--accent3); }

/* Toast */
.toast {
  position: fixed; top: 20px; right: 20px; z-index: 999;
  padding: 16px 24px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); color: var(--text);
  box-shadow: var(--shadow); animation: slideIn 0.3s ease;
}
.toast.success { border-color: rgba(5,150,105,0.2); background: rgba(5,150,105,0.08); color: var(--success); }
.toast.error { border-color: rgba(220,38,38,0.2); background: rgba(220,38,38,0.08); color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Animations */
.fade-in { animation: fadeIn 0.6s ease both; }
.fade-up { animation: fadeUp 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Table */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
table th { text-align: left; padding: 12px 16px; font-weight: 600; color: var(--text2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--glass-border); }
table td { padding: 12px 16px; border-bottom: 1px solid var(--card-border); }
table tr:hover td { background: var(--card); }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--text3); margin-bottom: 16px; }
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }

/* Product Detail Page */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* Stats */
.stat-card { padding: 24px; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--glass-border); }
.stat-card .stat-label { font-size: 12px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card .stat-value { font-size: 28px; font-weight: 800; margin-top: 6px; color: var(--text); }

/* Sections alternate bg */
.section-categories { background: transparent; }
.section-products { background: var(--card); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.section-deal { background: transparent; }
.section-envato { background: var(--card); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.section-reviews { background: transparent; }

/* Focus visible for a11y */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  color: #fff;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}
@media (max-width: 640px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* Responsive */
@media (max-width: 1100px) {
  .header-grid { flex-wrap: wrap; gap: 10px; }
  .search-shell { max-width: 320px; }
  .search-shell select { min-width: 80px; font-size: 12px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 40px; }
  .hero-visual { min-height: 300px; }
  .hero-card { height: 300px; }
  .floating-card { padding: 10px 14px; font-size: 12px; }
  .fc-icon { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .mobile-menu-btn { display: flex; }
  .header-actions { display: none; }
  .header-grid { flex-wrap: wrap; }
  .brand { order: 1; }
  .mobile-menu-btn { order: 2; }
  .search-shell { order: 3; flex: 1 1 100%; max-width: 100%; margin-top: 6px; }
  .search-shell select { min-width: 80px; font-size: 12px; }
  .nav { position: relative; z-index: 99; }
  .nav.open .nav-inner { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px 16px; background: var(--nav-bg); position: relative; z-index: 99; }
  .nav-inner { display: none; }
  .nav-inner a { padding: 12px 16px; font-size: 15px; border-radius: 8px; pointer-events: auto; }
  .mobile-overlay.open { display: block; opacity: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .deal-banner { flex-direction: column; text-align: center; padding: 28px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .hero h1 { font-size: clamp(28px, 5vw, 42px); }
  .hero-subtitle { font-size: 15px; }
  .section-head h2 { font-size: 26px; }
  .brand-text small { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 32px 0 28px; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 240px; }
  .hero-card { height: 240px; }
  .hero h1 { font-size: 26px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { font-size: 11px; }
  .header-grid { gap: 8px; }
  .search-shell { flex-wrap: wrap; }
  .search-shell input { flex: 1 1 100%; font-size: 14px; padding: 12px 14px; }
  .search-shell select { flex: 1; border-left: none; border-top: 1px solid var(--glass-border); min-width: 80px; font-size: 13px; }
  .search-shell button { flex: 0 0 auto; padding: 12px 18px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section { padding: 32px 0; }
  .section-head h2 { font-size: 22px; }
  .deal-banner { padding: 20px; }
  .sale-bar { padding: 8px 14px; }
  .sale-inner { font-size: 11px; gap: 6px; }
  .sale-countdown { font-size: 11px; }
  .review-card { padding: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ssk-container { padding: 0 14px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 0; margin-top: 50px; }
  .footer-grid { gap: 20px; }
  .envato-pricing { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { font-size: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .sale-inner { font-size: 12px; gap: 8px; }
  .hero h1 { font-size: 24px; }
  .hero { padding: 24px 0 20px; }
  .site-header { padding: 10px 14px; }
  .brand-logo { width: 34px; height: 34px; font-size: 14px; }
  .brand-text b { font-size: 14px; }
  .product-grid { gap: 12px; }
  .category-grid { gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .floating-card { display: none; }
  .hero-visual { min-height: 200px; }
  .hero-card { height: 200px; }
  .search-shell select { min-width: 70px; font-size: 12px; }
  .search-shell button { padding: 11px 16px; font-size: 13px; }
  .search-shell input { font-size: 13px; padding: 11px 14px; }
  .nav-inner a { padding: 10px 14px; }
}
@media (max-width: 480px) {
  .ssk-container { padding: 0 10px; }
  .hero { padding: 20px 0 16px; }
  .hero h1 { font-size: 20px; }
  .hero-subtitle { font-size: 13px; }
  .hero-stat strong { font-size: 18px; }
  .hero-stat span { font-size: 10px; }
  .hero-grid { gap: 20px; }
  .hero-badge { font-size: 11px; padding: 4px 10px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .section { padding: 24px 0; }
  .section-head h2 { font-size: 20px; }
  .section-head p { font-size: 13px; }
  .product-card { padding: 12px; }
  .product-card h3 { font-size: 14px; }
  .product-card .price { font-size: 16px; }
  .category-card { padding: 14px; }
  .category-card h3 { font-size: 13px; }
  .footer-grid { gap: 16px; }
  .footer-section h4 { font-size: 14px; }
  .footer-section a, .footer-section p { font-size: 12px; }
  .footer-bottom { font-size: 12px; }
  .site-header { padding: 8px 10px; }
  .brand-logo { width: 30px; height: 30px; font-size: 12px; }
  .brand-text b { font-size: 12px; }
  .brand-text small { display: none; }
  .sale-bar { padding: 6px 10px; }
  .sale-inner { font-size: 10px; gap: 4px; flex-wrap: wrap; justify-content: center; }
  .sale-cta { font-size: 10px; padding: 4px 10px; }
  .btn { padding: 10px 18px; font-size: 13px; }
  .btn-sm { padding: 6px 12px; font-size: 11px; }
  .hero-visual { min-height: 160px; }
  .hero-card { height: 160px; }
  .review-card strong { font-size: 14px; }
  .review-card p { font-size: 12px; }
  .deal-banner h3 { font-size: 16px; }
  .deal-banner p { font-size: 12px; }
  .price-box { flex-direction: column; gap: 8px; }
  .price-box .price { font-size: 24px; }
  .search-shell select { font-size: 12px; padding: 12px 30px 12px 12px; }
  .search-shell button { font-size: 13px; padding: 12px 16px; }
  .search-shell input { font-size: 14px; padding: 12px 14px; }
  .footer { padding: 32px 0 0; margin-top: 40px; }
  .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
  .footer-col a { font-size: 12px; margin: 6px 0; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-bottom { padding: 14px 0; margin-top: 24px; font-size: 11px; }
  .hero-stats { justify-content: space-around; }
}

/* Search */
.search-shell {
  display: flex;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  flex: 1;
  max-width: 440px;
}
.search-shell input { border: none; background: transparent; flex: 1; }
.search-shell select { border: none; background: transparent; width: auto; min-width: 100px; border-left: 1px solid var(--glass-border); border-radius: 0; }
.search-shell button {
  padding: 12px 20px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: all 0.3s;
}
.search-shell button:hover { opacity: 0.9; }

/* Prev classes kept for compatibility */
.product-card .product-image b { font-size: 28px; color: var(--text3); }
.product-card p { font-size: 14px; color: var(--text2); }
.price small { font-size: 14px; color: var(--text3); font-weight: 400; }

/* Envato Pricing Cards */
.envato-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.pricing-card {
  display: block;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pricing-card.pricing-card-active {
  border-color: var(--accent);
  background: rgba(139,92,246,0.05);
}
.pricing-card input { display: none; }
.pricing-card-content {
  padding: 20px;
}
.pricing-card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.pricing-card-content .price {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.pricing-card-content small {
  display: block;
  font-size: 13px;
  color: var(--text3);
}
.pricing-card-active .pricing-card-content::before {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
@media (max-width: 640px) {
  .envato-pricing { grid-template-columns: 1fr; }
}

/* Backwards compatibility for envato-product.php */
.dash-grid, .dash-grid-3 { display: grid; gap: 20px; }
.dash-grid { grid-template-columns: 1fr 1fr; }
.dash-grid-3 { grid-template-columns: repeat(3, 1fr); }
.dash-card { background: var(--glass); backdrop-filter: blur(12px); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; }
.dash-card img { border-radius: inherit; }
.dash-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-card-head h2 { font-size: 18px; font-weight: 700; }
.purple-btn, .white-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.purple-btn { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border: none; }
.purple-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.white-btn { background: var(--glass); border: 1px solid var(--glass-border); color: var(--text); }
.white-btn:hover { border-color: var(--accent); }
.pay-logos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
@media (max-width: 768px) { .dash-grid, .dash-grid-3 { grid-template-columns: 1fr; } }
