/* ════════════════════════ DAHAGRAM MOBILE-FIRST CYBER DESIGN SYSTEM ════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&amp;family=JetBrains+Mono:wght@400;500;700&amp;display=swap');

:root {
  --dh-bg: #090D16;
  --dh-surface: #0F172A;
  --dh-surface-hover: #1E293B;
  --dh-border: rgba(255, 255, 255, 0.08);
  --dh-border-focus: rgba(6, 182, 212, 0.5);
  --dh-cyan: #06B6D4;
  --dh-blue: #3B82F6;
  --dh-purple: #8B5CF6;
  --dh-pink: #EC4899;
  --dh-amber: #F59E0B;
  --dh-emerald: #10B981;
  --dh-text: #F8FAFC;
  --dh-text-muted: #94A3B8;
  --dh-radius: 16px;
  --dh-radius-sm: 10px;
  --dh-shadow-glow: 0 0 30px rgba(6, 182, 212, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, html, #dh-store-wrapper {
  background-color: var(--dh-bg) !important;
  color: var(--dh-text) !important;
  font-family: 'Outfit', sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

#dh-store-wrapper {
  padding-bottom: 80px; /* Space for mobile bottom bar */
}

.dh-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Top Promo Ticker ── */
.dh-ticker-bar {
  background: linear-gradient(90deg, #0F172A, #1E1B4B, #0F172A);
  border-bottom: 1px solid var(--dh-border);
  padding: 8px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.dh-ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  animation: dhTicker 35s linear infinite;
}
.dh-ticker-divider { color: var(--dh-cyan); opacity: 0.7; }
@keyframes dhTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Main Header ── */
.dh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dh-border);
  padding: 14px 0;
}
.dh-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dh-mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.dh-mobile-menu-btn:active {
  background: rgba(255,255,255,0.1);
}
.dh-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff !important;
}
.dh-logo-bolt { color: var(--dh-cyan); font-size: 24px; }
.dh-logo-dot { color: var(--dh-cyan); font-size: 16px; font-weight: 700; }
.dh-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dh-nav-link {
  color: var(--dh-text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dh-nav-link:hover, .dh-nav-link.active {
  color: var(--dh-cyan);
}
.dh-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dh-nav-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dh-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dh-nav-icon-btn:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--dh-cyan);
  color: var(--dh-cyan);
}
.dh-badge-pill {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--dh-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dh-btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dh-border);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dh-btn-nav-login:hover {
  background: var(--dh-cyan);
  color: #090D16 !important;
}

/* ── Mobile Slide-Out Drawer ── */
.dh-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dh-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.dh-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #0B1120;
  border-right: 1px solid var(--dh-border);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dh-drawer-overlay.active .dh-drawer-panel {
  transform: translateX(0);
}
.dh-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dh-drawer-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
}
.dh-drawer-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--dh-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 20px;
}
.dh-user-avatar { font-size: 24px; }
.dh-user-name { font-size: 14px; font-weight: 700; color: #fff; }
.dh-user-link { font-size: 12px; color: var(--dh-cyan); text-decoration: none; font-weight: 600; }
.dh-drawer-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--dh-cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dh-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}
.dh-drawer-item:active {
  background: var(--dh-cyan);
  color: #090D16;
}
.dh-arrow { color: var(--dh-text-muted); font-size: 18px; font-weight: bold; }

/* ── Live Search Modal ── */
.dh-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 20px;
  transition: all 0.25s ease;
}
.dh-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.dh-search-dialog {
  width: 100%;
  max-width: 600px;
  background: #0F172A;
  border: 1px solid var(--dh-cyan);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(6, 182, 212, 0.2);
}
.dh-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--dh-border);
}
.dh-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}
.dh-search-clear {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}
.dh-search-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 12px;
}
.dh-search-empty {
  padding: 30px 20px;
  text-align: center;
  color: var(--dh-text-muted);
  font-size: 14px;
}
.dh-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.dh-search-item:hover, .dh-search-item:active {
  background: rgba(6, 182, 212, 0.1);
}
.dh-search-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}
.dh-search-cat { font-size: 10px; color: var(--dh-cyan); font-weight: 700; text-transform: uppercase; }
.dh-search-title { font-size: 13px; font-weight: 700; color: #fff; margin: 2px 0; }
.dh-search-price { font-size: 13px; font-weight: 900; color: var(--dh-emerald); }

/* ── Hero Section ── */
.dh-hero-section {
  position: relative;
  padding: 60px 0 40px;
  background: radial-gradient(circle at 50% 0%, rgba(30, 27, 75, 0.5), transparent 70%);
  overflow: hidden;
}
.dh-hero-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.dh-hero-glow-2 {
  position: absolute;
  top: 100px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.dh-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.dh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dh-cyan);
  margin-bottom: 16px;
}
.dh-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--dh-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--dh-cyan);
  animation: dhPulse 2s infinite;
}
@keyframes dhPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.dh-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.dh-text-gradient {
  background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dh-hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dh-text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.dh-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dh-btn-primary {
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
  border: none;
}
.dh-btn-primary:hover, .dh-btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.5);
}
.dh-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dh-border);
  color: var(--dh-text) !important;
  backdrop-filter: blur(10px);
}
.dh-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--dh-border);
}
.dh-stat-num { font-size: 20px; font-weight: 800; color: var(--dh-text); }
.dh-stat-label { font-size: 11px; color: var(--dh-text-muted); text-transform: uppercase; }
.dh-stat-divider { width: 1px; height: 30px; background: var(--dh-border); }

/* ── Hero 3D Card ── */
.dh-hero-visual { position: relative; }
.dh-hero-card {
  position: relative;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.15);
}
.dh-card-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--dh-amber);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
}
.dh-card-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}
.dh-hero-img { width: 100%; height: 100%; object-fit: cover; }
.dh-card-cat { font-size: 11px; color: var(--dh-cyan); font-weight: 700; text-transform: uppercase; }
.dh-card-title { font-size: 18px; font-weight: 800; margin: 4px 0 6px; color: #fff; }
.dh-card-specs { font-size: 12px; color: var(--dh-text-muted); margin-bottom: 16px; }
.dh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--dh-border);
}
.dh-price-curr { font-size: 14px; font-weight: 700; color: var(--dh-cyan); }
.dh-price-val { font-size: 20px; font-weight: 900; color: #fff; }
.dh-price-old { font-size: 12px; color: var(--dh-text-muted); text-decoration: line-through; margin-left: 6px; }
.dh-btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

/* ── Section Titles ── */
.dh-section { padding: 50px 0; }
.dh-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}
.dh-sub-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--dh-cyan);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.dh-sec-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  color: #fff;
}
.dh-link-more {
  color: var(--dh-cyan);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Category Cards (Swipeable Carousel on Mobile) ── */
.dh-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.dh-cat-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--dh-border);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dh-cat-card:hover, .dh-cat-card:active {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--dh-cyan);
  transform: translateY(-3px);
}
.dh-cat-icon { font-size: 28px; margin-bottom: 8px; }
.dh-cat-name { font-size: 13px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.dh-cat-count { font-size: 10px; color: var(--dh-text-muted); text-transform: uppercase; font-weight: 600; }

/* ── Flash Sale Section ── */
.dh-flash-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 27, 75, 0.85));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 24px;
  padding: 35px 25px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}
.dh-flash-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.4);
  color: var(--dh-pink);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50px;
  margin-bottom: 12px;
}
.dh-flash-title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 900;
  margin: 0 0 10px;
  color: #fff;
}
.dh-flash-desc { font-size: 13px; color: var(--dh-text-muted); line-height: 1.5; margin-bottom: 20px; }
.dh-countdown-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.dh-count-box {
  background: #090D16;
  border: 1px solid var(--dh-border);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 54px;
}
.dh-count-box span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: var(--dh-cyan);
}
.dh-count-box small { font-size: 9px; color: var(--dh-text-muted); font-weight: 700; }
.dh-count-sep { font-size: 16px; font-weight: 900; color: var(--dh-pink); }
.dh-stock-bar-wrap { max-width: 420px; margin-bottom: 20px; }
.dh-stock-meta { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.dh-stock-left { color: var(--dh-pink); }
.dh-stock-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.dh-stock-fill { height: 100%; background: linear-gradient(90deg, #EC4899, #F59E0B); border-radius: 10px; }
.dh-flash-pricing { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.dh-flash-price-now { font-size: 26px; font-weight: 900; color: #fff; }
.dh-flash-price-was { font-size: 16px; color: var(--dh-text-muted); text-decoration: line-through; }
.dh-flash-save-badge {
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--dh-emerald);
  font-size: 10px;
  font-weight: 800;
  border-radius: 6px;
}
.dh-flash-img-card { width: 100%; height: 280px; border-radius: 16px; overflow: hidden; background: #000; }
.dh-flash-img { width: 100%; height: 100%; object-fit: cover; }

/* ── Product Catalog &amp; Filter Tabs (Swipeable on Mobile) ── */
.dh-catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 25px;
}
.dh-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dh-filter-tabs::-webkit-scrollbar { display: none; }
.dh-tab-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--dh-border);
  color: var(--dh-text-muted);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.dh-tab-btn:hover, .dh-tab-btn.active {
  background: var(--dh-cyan);
  border-color: var(--dh-cyan);
  color: #090D16;
  font-weight: 800;
}

/* ── 2-Column Responsive Products Grid ── */
.dh-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dh-product-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--dh-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
}
.dh-product-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.dh-card-top {
  position: relative;
  width: 100%;
  height: 200px;
  background: #050811;
  overflow: hidden;
}
.dh-prod-thumb { width: 100%; height: 100%; object-fit: cover; }
.dh-badge-group {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.dh-badge {
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
}
.dh-badge-hot { background: #EC4899; color: #fff; }
.dh-badge-trending { background: #8B5CF6; color: #fff; }
.dh-badge-bestseller { background: #F59E0B; color: #000; }
.dh-badge-new { background: #10B981; color: #fff; }
.dh-badge-luxury, .dh-badge-flagship { background: #06B6D4; color: #000; }
.dh-badge-discount { background: #EF4444; color: #fff; }

.dh-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.dh-wish-btn.active { background: #EC4899; border-color: #EC4899; }

.dh-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dh-prod-cat {
  font-size: 10px;
  color: var(--dh-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.dh-prod-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dh-prod-title a { color: #fff; text-decoration: none; }
.dh-prod-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.dh-stars { color: #F59E0B; font-size: 11px; letter-spacing: 1px; }
.dh-rating-score { font-size: 11px; font-weight: 800; color: #fff; }
.dh-rating-count { font-size: 10px; color: var(--dh-text-muted); }

.dh-prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--dh-border);
}
.dh-price-wrap { display: flex; align-items: baseline; gap: 2px; }
.dh-curr { font-size: 12px; font-weight: 700; color: var(--dh-cyan); }
.dh-amount { font-size: 16px; font-weight: 900; color: #fff; }
.dh-old-amount { font-size: 11px; color: var(--dh-text-muted); text-decoration: line-through; margin-left: 4px; }

.dh-add-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--dh-cyan) !important;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.dh-add-cart-btn:hover, .dh-add-cart-btn:active {
  background: var(--dh-cyan);
  color: #090D16 !important;
}

/* ── Promotional Split Banners ── */
.dh-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dh-banner-card {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--dh-border);
}
.dh-banner-1 { background: linear-gradient(135deg, #0F172A, #1E1B4B); }
.dh-banner-2 { background: linear-gradient(135deg, #0F172A, #064E3B); }
.dh-banner-tag { font-size: 10px; font-weight: 800; color: var(--dh-cyan); letter-spacing: 1px; }
.dh-banner-heading { font-size: 20px; font-weight: 800; margin: 8px 0 10px; color: #fff; }
.dh-banner-text { font-size: 13px; color: var(--dh-text-muted); line-height: 1.5; margin-bottom: 20px; }

/* ── Trust Pillars ── */
.dh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--dh-border);
  border-radius: 20px;
  padding: 30px 20px;
}
.dh-trust-item { text-align: center; }
.dh-trust-icon { font-size: 30px; margin-bottom: 8px; }
.dh-trust-title { font-size: 14px; font-weight: 800; margin: 0 0 4px; color: #fff; }
.dh-trust-desc { font-size: 12px; color: var(--dh-text-muted); line-height: 1.4; margin: 0; }

/* ── Reviews Grid ── */
.dh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dh-review-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--dh-border);
  border-radius: 16px;
  padding: 22px;
}
.dh-review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 10px; }
.dh-review-text { font-size: 13px; line-height: 1.5; color: var(--dh-text-muted); margin-bottom: 16px; }
.dh-reviewer { display: flex; align-items: center; gap: 10px; }
.dh-reviewer-avatar { font-size: 24px; }
.dh-reviewer-name { font-size: 13px; font-weight: 700; margin: 0; color: #fff; }
.dh-reviewer-status { font-size: 10px; color: var(--dh-emerald); font-weight: 600; }

/* ── VIP Newsletter Box ── */
.dh-news-box {
  background: radial-gradient(circle at 50% 50%, #1E1B4B, #0F172A);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.dh-news-title { font-size: clamp(22px, 4vw, 32px); font-weight: 900; margin: 8px 0 10px; color: #fff; }
.dh-news-desc { font-size: 14px; color: var(--dh-text-muted); margin-bottom: 22px; }
.dh-news-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 12px; }
.dh-news-input {
  flex: 1;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--dh-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
}
.dh-news-privacy { font-size: 11px; color: var(--dh-text-muted); }

/* ── Footer ── */
.dh-footer {
  background: #050811;
  border-top: 1px solid var(--dh-border);
  padding: 50px 0 30px;
}
.dh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}
.dh-footer-logo { margin-bottom: 12px; display: inline-flex; }
.dh-footer-desc { font-size: 13px; color: var(--dh-text-muted); line-height: 1.5; margin-bottom: 16px; }
.dh-footer-contact { font-size: 12px; color: var(--dh-text); line-height: 1.8; }
.dh-footer-head { font-size: 14px; font-weight: 800; color: #fff; margin: 0 0 16px; }
.dh-footer-links { list-style: none; padding: 0; margin: 0; }
.dh-footer-links li { margin-bottom: 8px; }
.dh-footer-links a { color: var(--dh-text-muted); font-size: 12px; text-decoration: none; }
.dh-pay-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.dh-pay-pill {
  padding: 4px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dh-border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--dh-cyan);
}
.dh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--dh-border);
  font-size: 12px;
  color: var(--dh-text-muted);
}
.dh-footer-badge { color: var(--dh-cyan); font-weight: 600; }

/* ── STICKY APP-LIKE MOBILE BOTTOM BAR ── */
.dh-mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--dh-border);
  z-index: 9999;
  padding: 0 10px;
  padding-bottom: env(safe-area-inset-bottom);
}
.dh-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--dh-text-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.dh-bottom-item.active, .dh-bottom-item:active {
  color: var(--dh-cyan);
}
.dh-bottom-cart { position: relative; }
.dh-bottom-cart .dh-badge-pill {
  top: 2px;
  right: 18px;
  width: 16px;
  height: 16px;
  font-size: 9px;
}

/* ── Floating Desktop Cart &amp; Toast ── */
.dh-floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
  z-index: 9998;
  text-decoration: none;
}
.dh-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EC4899;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dh-bg);
}

.dh-toast {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--dh-cyan);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.dh-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@keyframes dhFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════ RESPONSIVE BREAKPOINTS ════════════════════════ */
@media (max-width: 1024px) {
  .dh-hero-grid, .dh-flash-banner, .dh-banners-grid, .dh-footer-grid { grid-template-columns: 1fr; }
  .dh-nav-menu { display: none; }
  .dh-mobile-menu-btn { display: flex; }
  .dh-cat-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .dh-cat-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }
  .dh-products-grid { grid-template-columns: repeat(3, 1fr); }
  .dh-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .dh-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .dh-mobile-bottom-bar { display: flex; }
  .dh-container { padding: 0 14px; }
  .dh-hero-section { padding: 35px 0 25px; }
  .dh-section { padding: 35px 0; }
  .dh-card-img-wrap { height: 180px; }
  .dh-flash-banner { padding: 24px 16px; border-radius: 18px; }
  .dh-flash-img-card { height: 200px; }
  .dh-news-form { flex-direction: column; }
  
  /* 2-Column Grid on Mobile */
  .dh-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dh-card-top { height: 150px; }
  .dh-card-body { padding: 10px; }
  .dh-prod-title { font-size: 12px; margin-bottom: 6px; }
  .dh-amount { font-size: 14px; }
  .dh-old-amount { display: none; }
  .dh-add-cart-btn { padding: 5px 8px; font-size: 10px; }
  .dh-add-cart-btn .btn-text { display: none; } /* Show icon only on small cards */
  .dh-add-cart-btn { border-radius: 50%; width: 28px; height: 28px; justify-content: center; padding: 0; }
  .dh-trust-grid { grid-template-columns: 1fr; padding: 20px 14px; }
  .dh-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}