/* =======================================================
 * SDH Tools Store - Luxury Cosmic Dark Theme
 * Developed by Siddique Tech Solution for Shahbaz Digital Hub
 * Matching 3D Chrome & Electric Blue SDH Logo
 * Complete Navbar & Footer Redesign
 * ======================================================= */

:root {
  /* Color Palette - Deep Luxury Sapphire & Electric Cyan */
  --sdh-bg-base: #040714;
  --sdh-bg-surface: #0a0f24;
  --sdh-bg-card: rgba(13, 20, 42, 0.88);
  --sdh-bg-card-hover: rgba(19, 32, 62, 0.96);
  --sdh-bg-glass: rgba(10, 16, 36, 0.88);
  --sdh-bg-topbar: rgba(6, 10, 24, 0.95);
  
  /* Borders & Glows */
  --sdh-border-subtle: rgba(56, 189, 248, 0.12);
  --sdh-border-medium: rgba(56, 189, 248, 0.25);
  --sdh-border-accent: rgba(0, 210, 255, 0.45);
  --sdh-border-gold: rgba(245, 158, 11, 0.4);
  --sdh-glow-cyan: 0 0 25px rgba(0, 210, 255, 0.25);
  --sdh-glow-blue: 0 0 35px rgba(0, 102, 255, 0.3);

  /* Brand Accents */
  --sdh-primary: #00d2ff;
  --sdh-primary-hover: #38bdf8;
  --sdh-secondary: #0066ff;
  --sdh-primary-gradient: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
  --sdh-accent-gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  --sdh-wa-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --sdh-gold: #f59e0b;
  --sdh-gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --sdh-emerald: #10b981;
  --sdh-danger: #ef4444;

  /* Typography Colors */
  --sdh-text-high: #ffffff;
  --sdh-text-med: #e2e8f0;
  --sdh-text-muted: #94a3b8;
  --sdh-text-dim: #64748b;

  /* Fonts */
  --sdh-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --sdh-font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Curves */
  --sdh-radius-xs: 6px;
  --sdh-radius-sm: 10px;
  --sdh-radius-md: 16px;
  --sdh-radius-lg: 24px;
  --sdh-radius-full: 9999px;

  /* Motion */
  --sdh-transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--sdh-font-main);
  background-color: var(--sdh-bg-base);
  color: var(--sdh-text-high);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--sdh-bg-base);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 102, 255, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 40%, rgba(0, 210, 255, 0.09), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124, 58, 237, 0.09), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Geometric Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.sdh-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a {
  color: var(--sdh-primary);
  text-decoration: none;
  transition: var(--sdh-transition);
}

a:hover {
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Pulsing Online Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--sdh-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px var(--sdh-emerald);
  animation: sdh-pulse 1.8s infinite ease-in-out;
}

@keyframes sdh-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* =======================================================
 * 🌟 REDESIGNED TOP UTILITY & ANNOUNCEMENT BAR
 * ======================================================= */
.sdh-topbar {
  background: var(--sdh-bg-topbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  font-size: 12px;
  color: var(--sdh-text-muted);
  padding: 8px 0;
  position: relative;
  z-index: 1002;
}

.sdh-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sdh-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sdh-status-pulse-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 10px;
  border-radius: var(--sdh-radius-full);
  font-weight: 800;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.4px;
}

.sdh-topbar-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--sdh-text-med);
  font-weight: 600;
  font-size: 11.5px;
}

.sdh-topbar-pill-tag i {
  color: var(--sdh-primary);
}

.sdh-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sdh-topbar-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 2px 10px;
  border-radius: var(--sdh-radius-full);
  font-weight: 700;
  font-size: 11.5px;
  transition: var(--sdh-transition);
}

.sdh-topbar-contact-btn:hover {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.sdh-topbar-contact-link {
  color: var(--sdh-text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--sdh-transition);
}

.sdh-topbar-contact-link:hover {
  color: var(--sdh-primary);
}

.sdh-topbar-sep {
  color: var(--sdh-text-dim);
  font-size: 10px;
}

.sdh-topbar-currency-badge {
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--sdh-border-medium);
  color: var(--sdh-primary);
  padding: 2px 9px;
  border-radius: var(--sdh-radius-full);
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* =======================================================
 * 🌟 REDESIGNED MAIN FLOATING GLASS COMMAND HEADER (PERFECT ALIGNMENT)
 * ======================================================= */
.sdh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--sdh-transition);
}

.sdh-header-wrapper {
  position: relative;
  background: rgba(8, 14, 32, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--sdh-border-medium);
  border-radius: 20px;
  box-shadow: 
    0 12px 40px -8px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 25px rgba(0, 210, 255, 0.12);
  margin: 0 auto;
  transition: var(--sdh-transition);
}

.sdh-header.scrolled .sdh-header-wrapper {
  background: rgba(5, 10, 24, 0.98);
  border-color: var(--sdh-border-accent);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), var(--sdh-glow-cyan);
}

.sdh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 22px;
  gap: 20px;
}

/* 3D Hologram Logo Identity - Perfect Vertical Alignment */
.sdh-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.sdh-logo-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00d2ff 0%, #0066ff 50%, #c084fc 100%);
  border: 1px solid rgba(0, 210, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--sdh-transition);
  flex-shrink: 0;
}

.sdh-brand-logo:hover .sdh-logo-ring {
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.65);
}

.sdh-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sdh-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.sdh-brand-title-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.sdh-brand-title {
  font-family: var(--sdh-font-heading);
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 210, 255, 0.25);
  margin: 0;
}

.sdh-official-badge {
  background: linear-gradient(135deg, #00d2ff, #0066ff);
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.8px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
}

.sdh-brand-subtitle {
  font-size: 10.5px;
  color: var(--sdh-primary);
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Central Capsule Navigation - Perfect Balance & Spacing */
.sdh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdh-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
  background: rgba(255, 255, 255, 0.035);
  padding: 4px 6px;
  border-radius: var(--sdh-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  flex-wrap: nowrap;
}

.sdh-nav-list li {
  white-space: nowrap;
  flex-shrink: 0;
  list-style: none;
}

.sdh-nav-link {
  color: var(--sdh-text-muted);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--sdh-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--sdh-transition);
  position: relative;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.sdh-nav-link span {
  white-space: nowrap;
  display: inline-block;
}

.sdh-nav-link i {
  font-size: 12.5px;
  color: var(--sdh-text-dim);
  transition: var(--sdh-transition);
}

.sdh-nav-link:hover {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.12);
}

.sdh-nav-link:hover i {
  color: var(--sdh-primary);
}

.sdh-nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.22), rgba(0, 102, 255, 0.32));
  border: 1px solid var(--sdh-border-medium);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.22);
}

.sdh-nav-link.active i {
  color: var(--sdh-primary);
}

.sdh-nav-hot-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  line-height: 1;
  animation: sdh-pulse 1.5s infinite;
}

/* Right Header Action Cluster - Uniform 40px Heights for Perfect Line */
.sdh-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Cart Pill Button */
.sdh-cart-pill-btn {
  height: 40px;
  background: rgba(13, 22, 48, 0.9);
  border: 1px solid var(--sdh-border-medium);
  color: #ffffff;
  padding: 0 16px;
  border-radius: var(--sdh-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: var(--sdh-transition);
}

.sdh-cart-pill-btn:hover {
  border-color: var(--sdh-primary);
  background: rgba(19, 32, 70, 0.95);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
  transform: translateY(-1px);
}

.sdh-cart-icon-wrap {
  position: relative;
  font-size: 14px;
  color: var(--sdh-primary);
  display: flex;
  align-items: center;
}

.sdh-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--sdh-primary-gradient);
  color: #000000;
  font-size: 9.5px;
  font-weight: 900;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--sdh-primary);
  line-height: 1;
}

.sdh-cart-label {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

/* Admin Control Hub */
.sdh-admin-ctrl-hub {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.035);
  padding: 3px;
  border-radius: var(--sdh-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sdh-admin-hub-btn {
  height: 32px;
  background: transparent;
  border: none;
  color: var(--sdh-text-muted);
  font-size: 11.5px;
  font-weight: 700;
  padding: 0 12px;
  border-radius: var(--sdh-radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--sdh-transition);
  white-space: nowrap;
}

.sdh-admin-hub-btn i {
  color: var(--sdh-gold);
  font-size: 12px;
}

.sdh-admin-hub-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  color: #ffffff;
}

/* WhatsApp Header Button */
.sdh-btn-wa-header {
  height: 40px;
  background: var(--sdh-wa-gradient);
  color: #ffffff;
  padding: 0 18px;
  border-radius: var(--sdh-radius-full);
  font-weight: 800;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  transition: var(--sdh-transition);
  white-space: nowrap;
  text-decoration: none;
}

.sdh-btn-wa-header:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.55);
}

/* =======================================================
 * 🌟 HERO & CATALOG CORE STYLES (PRESERVED)
 * ======================================================= */
.sdh-hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}

.sdh-hero-glow-1 {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.sdh-hero-glow-2 {
  position: absolute;
  top: 100px;
  right: 15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.sdh-hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.sdh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--sdh-border-medium);
  padding: 6px 16px;
  border-radius: var(--sdh-radius-full);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--sdh-primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sdh-hero-title {
  font-family: var(--sdh-font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.sdh-neon-gradient {
  background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(0, 210, 255, 0.35);
}

.sdh-hero-subtitle {
  font-size: 16px;
  color: var(--sdh-text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 580px;
}

/* Real-Time Live Luxury Search Bar (Desktop & Universal) */
.sdh-hero-search-wrapper,
.sdh-hero-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 620px;
  width: 100%;
  margin: 0 0 28px 0;
  background: rgba(10, 16, 36, 0.88);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--sdh-radius-full);
  padding: 6px 8px 6px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 210, 255, 0.15);
  transition: var(--sdh-transition);
}

.sdh-hero-search-wrapper:focus-within,
.sdh-hero-search-wrap:focus-within {
  border-color: var(--sdh-primary);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.25), 0 0 30px rgba(0, 210, 255, 0.35);
  background: rgba(14, 22, 50, 0.96);
}

.sdh-hero-search-wrapper .sdh-search-icon,
.sdh-hero-search-wrapper .sdh-hero-search-icon,
.sdh-hero-search-wrap .sdh-search-icon,
.sdh-hero-search-wrap .sdh-hero-search-icon {
  color: var(--sdh-primary);
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

.sdh-hero-search-wrapper input,
.sdh-hero-search-wrapper .sdh-hero-search-input,
.sdh-hero-search-wrap input,
.sdh-hero-search-wrap .sdh-hero-search-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-size: 14.5px;
  font-family: inherit;
  min-width: 0;
  padding: 8px 6px;
  box-shadow: none !important;
}

.sdh-hero-search-wrapper input::placeholder,
.sdh-hero-search-wrap input::placeholder {
  color: var(--sdh-text-muted);
  font-size: 13.5px;
}

.sdh-hero-search-btn {
  background: var(--sdh-primary-gradient);
  color: #040714;
  font-weight: 800;
  font-size: 13px;
  border: none;
  border-radius: var(--sdh-radius-full);
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--sdh-transition);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.sdh-hero-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 210, 255, 0.5);
  color: #ffffff;
}

/* Modal Responsive Grid Utilities */
.sdh-admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.sdh-checkout-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sdh-invoice-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  background: rgba(0, 210, 255, 0.04);
  border: 1px solid var(--sdh-border-medium);
  border-radius: 10px;
  padding: 14px;
}

.sdh-form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sdh-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.sdh-btn {
  padding: 14px 28px;
  border-radius: var(--sdh-radius-full);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: var(--sdh-transition);
  border: none;
  text-decoration: none;
}

.sdh-btn-cyan-glow {
  background: var(--sdh-primary-gradient);
  color: #000000;
  box-shadow: 0 4px 25px rgba(0, 210, 255, 0.4);
}

.sdh-btn-cyan-glow:hover {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.65);
}

.sdh-btn-wa {
  background: var(--sdh-wa-gradient);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(16, 185, 129, 0.35);
}

.sdh-btn-wa:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(16, 185, 129, 0.55);
}

/* 4 Trust Pillars from Logo */
.sdh-logo-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 580px;
}

.sdh-logo-trust-item {
  background: rgba(13, 20, 42, 0.6);
  border: 1px solid var(--sdh-border-subtle);
  padding: 10px 12px;
  border-radius: var(--sdh-radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--sdh-text-med);
  letter-spacing: 0.3px;
  transition: var(--sdh-transition);
}

.sdh-logo-trust-item i {
  color: var(--sdh-primary);
  font-size: 14px;
}

.sdh-logo-trust-item:hover {
  border-color: var(--sdh-primary);
  background: rgba(19, 30, 60, 0.8);
}

/* 3D Visual Showcase */
.sdh-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdh-hero-badge-card {
  position: relative;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(13, 22, 48, 0.8) 0%, rgba(5, 8, 20, 0.95) 100%);
  border: 1px solid var(--sdh-border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 102, 255, 0.25), 0 0 20px rgba(0, 210, 255, 0.15) inset;
}

.sdh-badge-hologram {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #00d2ff, #0066ff, #7c3aed);
  box-shadow: 0 0 45px rgba(0, 210, 255, 0.4);
  animation: sdh-spin 25s linear infinite;
}

@keyframes sdh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sdh-hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  animation: sdh-counter-spin 25s linear infinite;
}

@keyframes sdh-counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.sdh-floating-tool {
  position: absolute;
  background: rgba(10, 16, 36, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--sdh-border-medium);
  padding: 8px 14px;
  border-radius: var(--sdh-radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  animation: sdh-float 4s ease-in-out infinite alternate;
}

.sdh-floating-tool i {
  color: var(--sdh-primary);
}

.tool-chatgpt { top: 15px; left: 10px; animation-delay: 0s; }
.tool-midjourney { top: 30px; right: 0px; animation-delay: 1s; }
.tool-canva { bottom: 30px; left: 15px; animation-delay: 2s; }
.tool-runway { bottom: 20px; right: 10px; animation-delay: 1.5s; }

@keyframes sdh-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* =======================================================
 * CATALOG & CARDS STYLES (PRESERVED)
 * ======================================================= */
.sdh-category-bar-section {
  padding: 60px 0 40px;
}

.sdh-section-header {
  margin-bottom: 35px;
}

.text-center { text-align: center; }

.sdh-section-badge {
  display: inline-block;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--sdh-border-medium);
  color: var(--sdh-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--sdh-radius-full);
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.sdh-section-title {
  font-family: var(--sdh-font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.sdh-cyan-text {
  color: var(--sdh-primary);
}

.sdh-section-desc {
  color: var(--sdh-text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* Category Filter Pills */
.sdh-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.sdh-filter-pill {
  background: rgba(13, 20, 42, 0.7);
  border: 1px solid var(--sdh-border-subtle);
  color: var(--sdh-text-muted);
  padding: 9px 18px;
  border-radius: var(--sdh-radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--sdh-transition);
}

.sdh-filter-pill:hover, .sdh-filter-pill.active {
  background: var(--sdh-primary-gradient);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35);
}

/* Product Cards Grid */
.sdh-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.sdh-tool-card {
  background: var(--sdh-bg-card);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: var(--sdh-radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: var(--sdh-transition);
  position: relative;
  overflow: hidden;
}

.sdh-tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--sdh-border-accent);
  background: var(--sdh-bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--sdh-glow-cyan);
}

.sdh-tool-thumb-wrap {
  position: relative;
  width: 100%;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #02040a;
}

.sdh-tool-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sdh-tool-card:hover .sdh-tool-thumb {
  transform: scale(1.05);
}

.sdh-tool-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sdh-border-medium);
  color: var(--sdh-primary);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.sdh-tool-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ef4444;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

.sdh-tool-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sdh-tool-title {
  font-family: var(--sdh-font-heading);
  font-size: 17px;
  font-weight: 800;
  margin: 6px 0;
  line-height: 1.3;
}

.sdh-tool-title a {
  color: #ffffff;
}

.sdh-tool-title a:hover {
  color: var(--sdh-primary);
}

.sdh-tool-meta-period {
  font-size: 11.5px;
  color: var(--sdh-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sdh-tool-excerpt {
  font-size: 12.5px;
  color: var(--sdh-text-muted);
  line-height: 1.5;
  margin: 8px 0 12px;
  flex-grow: 1;
}

.sdh-tool-feature-list {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sdh-tool-feature-list li {
  font-size: 11.5px;
  color: var(--sdh-text-med);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sdh-tool-feature-list li i {
  color: #10b981;
  font-size: 11px;
}

.sdh-tool-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--sdh-border-subtle);
}

.sdh-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sdh-price-currency {
  font-size: 13px;
  color: var(--sdh-primary);
  font-weight: 700;
}

.sdh-price-val {
  font-family: var(--sdh-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

.sdh-regular-price {
  font-size: 12px;
  color: var(--sdh-text-dim);
  text-decoration: line-through;
}

/* Card Quantity Stepper Controls */
.sdh-card-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 20, 0.7);
  border: 1px solid var(--sdh-border-subtle);
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.sdh-card-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sdh-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sdh-card-qty-label i {
  color: var(--sdh-primary);
}

.sdh-card-qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #050814;
  border: 1px solid var(--sdh-border-medium);
  border-radius: 6px;
  padding: 2px 4px;
}

.sdh-stepper-btn {
  background: transparent;
  border: none;
  color: var(--sdh-text-med);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.2s;
}

.sdh-stepper-btn:hover {
  background: rgba(0, 210, 255, 0.2);
  color: var(--sdh-primary);
}

.sdh-card-qty-display {
  font-family: var(--sdh-font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  min-width: 22px;
  text-align: center;
}

.sdh-tool-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sdh-btn-add-cart {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--sdh-border-medium);
  color: var(--sdh-primary);
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--sdh-transition);
}

.sdh-btn-add-cart:hover {
  background: var(--sdh-primary);
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.sdh-btn-buy-now {
  background: var(--sdh-primary-gradient);
  border: none;
  color: #000000;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--sdh-transition);
}

.sdh-btn-buy-now:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
  transform: translateY(-1px);
}

/* =======================================================
 * WHY US & STEPS & REVIEWS SECTIONS (PRESERVED)
 * ======================================================= */
.sdh-why-us-section {
  padding: 70px 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 102, 255, 0.08), transparent 70%);
}

.sdh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.sdh-feature-card {
  background: var(--sdh-bg-card);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: var(--sdh-radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--sdh-transition);
}

.sdh-feature-card:hover {
  border-color: var(--sdh-border-accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.sdh-feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-lightning { background: rgba(0, 210, 255, 0.12); color: #00d2ff; }
.icon-bank { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.icon-shield { background: rgba(124, 58, 237, 0.12); color: #a78bfa; }
.icon-whatsapp { background: rgba(16, 185, 129, 0.12); color: #25d366; }

.sdh-feature-card h3 {
  font-family: var(--sdh-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.sdh-feature-card p {
  font-size: 13.5px;
  color: var(--sdh-text-muted);
  line-height: 1.6;
}

/* Steps Section */
.sdh-steps-section {
  padding: 60px 0;
}

.sdh-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.sdh-step-card {
  flex: 1;
  background: var(--sdh-bg-card);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: var(--sdh-radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.sdh-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sdh-primary-gradient);
  color: #000000;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.sdh-step-card h4 {
  font-family: var(--sdh-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.sdh-step-card p {
  font-size: 12.5px;
  color: var(--sdh-text-muted);
  line-height: 1.5;
}

.sdh-step-connector {
  width: 40px;
  height: 2px;
  background: var(--sdh-border-medium);
  flex-shrink: 0;
}

/* Reviews Section */
.sdh-reviews-section {
  padding: 70px 0;
}

.sdh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.sdh-review-card {
  background: var(--sdh-bg-card);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: var(--sdh-radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.sdh-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sdh-review-stars {
  color: var(--sdh-gold);
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.sdh-review-verified {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sdh-review-text {
  font-size: 13px;
  color: var(--sdh-text-med);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.sdh-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sdh-border-subtle);
}

.sdh-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2ff, #0066ff);
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdh-review-author-info h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
}

.sdh-review-tool {
  font-size: 11px;
  color: var(--sdh-primary);
  font-weight: 700;
}

.sdh-review-date {
  font-size: 11px;
  color: var(--sdh-text-dim);
  margin-left: auto;
}

/* FAQs */
.sdh-faq-section {
  padding: 60px 0;
}

.sdh-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdh-accordion-item {
  background: rgba(10, 16, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sdh-accordion-item:hover {
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 210, 255, 0.1);
}

.sdh-accordion-item.active {
  border-color: #00d2ff;
  background: rgba(10, 18, 44, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(0, 210, 255, 0.18);
}

.sdh-accordion-header {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 20px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  cursor: pointer !important;
  user-select: none !important;
  outline: none !important;
  font-family: var(--sdh-font-heading, 'Outfit', sans-serif) !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-align: left !important;
  transition: color 0.25s ease !important;
  box-sizing: border-box !important;
}

.sdh-accordion-header:hover {
  color: #38bdf8 !important;
}

.sdh-accordion-header span {
  flex-grow: 1;
  line-height: 1.45;
  color: inherit;
}

.sdh-accordion-header i,
.sdh-accordion-icon {
  font-size: 14px;
  color: #00d2ff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sdh-accordion-item.active .sdh-accordion-header {
  color: #38bdf8 !important;
}

.sdh-accordion-item.active .sdh-accordion-header i,
.sdh-accordion-item.active .sdh-accordion-icon {
  transform: rotate(180deg);
  color: #38bdf8;
}

.sdh-accordion-content,
.sdh-accordion-body {
  display: none;
  padding: 0 24px 22px 24px;
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.sdh-accordion-content p,
.sdh-accordion-body p {
  margin: 0;
  color: #94a3b8;
}

.sdh-accordion-item.active .sdh-accordion-content,
.sdh-accordion-item.active .sdh-accordion-body {
  display: block;
}

/* =======================================================
 * 🌟 REDESIGNED VIP PRE-FOOTER CONVERSION SHOWCASE BANNER
 * ======================================================= */
.sdh-pre-footer-cta {
  padding: 40px 0 20px;
  position: relative;
  z-index: 2;
}

.sdh-pre-footer-card {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 18, 42, 0.95) 0%, rgba(5, 10, 26, 0.98) 100%);
  border: 1px solid var(--sdh-border-accent);
  border-radius: 24px;
  padding: 44px 40px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px -10px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(0, 210, 255, 0.18);
}

.sdh-pre-footer-ambient-1 {
  position: absolute;
  top: -80px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.sdh-pre-footer-ambient-2 {
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.sdh-pre-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sdh-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 4px 12px;
  border-radius: var(--sdh-radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.sdh-cta-title {
  font-family: var(--sdh-font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.sdh-cta-subtitle {
  font-size: 14px;
  color: var(--sdh-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 560px;
}

.sdh-cta-features-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sdh-cta-feat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sdh-text-med);
}

.sdh-cta-feat i {
  color: var(--sdh-primary);
}

.sdh-pre-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}

.sdh-pre-footer-actions .sdh-btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* =======================================================
 * 🌟 REDESIGNED LUXURY MASTER FOOTER
 * ======================================================= */
.sdh-footer {
  background: #03050e;
  border-top: 1px solid rgba(56, 189, 248, 0.18);
  padding: 60px 0 25px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.sdh-footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 36px;
  margin-bottom: 45px;
}

/* Col 1: Mega Brand Profile */
.sdh-footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.sdh-footer-logo-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00d2ff, #0066ff);
  border: 1px solid var(--sdh-border-accent);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sdh-footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sdh-footer-brand-text {
  display: flex;
  flex-direction: column;
}

.sdh-footer-title {
  font-family: var(--sdh-font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.sdh-footer-subtitle {
  font-size: 11px;
  color: var(--sdh-primary);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sdh-footer-slogan-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid var(--sdh-border-medium);
  padding: 7px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--sdh-primary);
  letter-spacing: 0.8px;
}

.sdh-footer-desc {
  font-size: 13px;
  color: var(--sdh-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.sdh-footer-contact-cluster {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.sdh-footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sdh-text-med);
  font-size: 12.5px;
  font-weight: 600;
  transition: var(--sdh-transition);
}

.sdh-footer-contact-pill i {
  color: #10b981;
  font-size: 14px;
}

.sdh-footer-contact-pill:hover {
  color: var(--sdh-primary);
}

.sdh-footer-social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sdh-footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 22, 48, 0.9);
  border: 1px solid var(--sdh-border-subtle);
  color: var(--sdh-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--sdh-transition);
}

.sdh-footer-social-icon:hover {
  background: var(--sdh-primary);
  color: #000000;
  border-color: var(--sdh-primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  transform: translateY(-2px);
}

/* Col Headings & Links */
.sdh-footer-heading {
  font-family: var(--sdh-font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdh-footer-heading i {
  color: var(--sdh-primary);
  font-size: 14px;
}

.sdh-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sdh-footer-links a {
  color: var(--sdh-text-muted);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--sdh-transition);
}

.sdh-footer-links a i {
  font-size: 10px;
  color: var(--sdh-primary);
  opacity: 0.6;
  transition: var(--sdh-transition);
}

.sdh-footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.sdh-footer-links a:hover i {
  opacity: 1;
}

/* Pakistani Banking Grid */
.sdh-footer-subtext {
  font-size: 12.5px;
  color: var(--sdh-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sdh-bank-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 16px;
}

.sdh-bank-chip {
  background: rgba(13, 22, 48, 0.75);
  border: 1px solid var(--sdh-border-subtle);
  color: var(--sdh-text-med);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--sdh-transition);
}

.sdh-bank-chip i {
  color: #10b981;
  font-size: 9px;
}

.sdh-bank-chip:hover {
  border-color: var(--sdh-primary);
  color: #ffffff;
}

.sdh-footer-merchant-note {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sdh-merchant-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sdh-merchant-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sdh-merchant-text strong {
  font-size: 11.5px;
  color: #ffffff;
}

.sdh-merchant-text span {
  font-size: 10.5px;
  color: #94a3b8;
}

/* Security & Trust Strip */
.sdh-footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--sdh-border-subtle);
  border-bottom: 1px solid var(--sdh-border-subtle);
  margin-bottom: 24px;
}

.sdh-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sdh-trust-badge-item i {
  font-size: 22px;
  color: var(--sdh-primary);
  flex-shrink: 0;
}

.sdh-trust-badge-item strong {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

.sdh-trust-badge-item span {
  font-size: 11px;
  color: var(--sdh-text-muted);
}

/* Bottom Bar */
.sdh-footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--sdh-text-dim);
}

.sdh-footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sdh-text-muted);
  font-size: 12px;
}

.sdh-footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #94a3b8;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sdh-footer-developer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #94a3b8;
}

.sdh-footer-developer span {
  color: #94a3b8 !important;
  font-weight: 500;
}

.sdh-dev-link {
  color: #00d2ff;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  transition: var(--sdh-transition);
}

.sdh-dev-link strong {
  background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  display: inline-block;
  transition: all 0.25s ease;
}

.sdh-dev-link:hover strong {
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.9));
}

/* =======================================================
 * SLIDEOUT CART DRAWER & CHECKOUT MODALS (PRESERVED)
 * ======================================================= */
.sdh-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 10500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sdh-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sdh-cart-drawer {
  position: fixed;
  top: 0; right: -460px;
  width: 440px;
  max-width: 95vw;
  height: 100vh;
  background: #080d1f;
  border-left: 1px solid var(--sdh-border-medium);
  z-index: 10600;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sdh-cart-drawer.open {
  right: 0;
}

.sdh-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--sdh-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sdh-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sdh-font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.sdh-drawer-title i {
  color: var(--sdh-primary);
}

.sdh-drawer-count-badge {
  background: rgba(0, 210, 255, 0.15);
  color: var(--sdh-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--sdh-radius-full);
}

.sdh-drawer-close {
  background: transparent;
  border: none;
  color: var(--sdh-text-dim);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.sdh-drawer-close:hover {
  color: #ffffff;
}

.sdh-drawer-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdh-drawer-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--sdh-text-dim);
}

.sdh-drawer-empty i {
  font-size: 40px;
  margin-bottom: 14px;
  color: rgba(56, 189, 248, 0.25);
}

.sdh-drawer-empty h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.sdh-drawer-item {
  background: rgba(13, 20, 42, 0.85);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.sdh-drawer-item-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}

.sdh-drawer-item-info {
  flex-grow: 1;
}

.sdh-drawer-item-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 3px;
}

.sdh-drawer-item-period {
  font-size: 11px;
  color: var(--sdh-primary);
  margin-bottom: 6px;
}

.sdh-drawer-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sdh-drawer-item-price {
  font-family: var(--sdh-font-heading);
  font-size: 14.5px;
  font-weight: 900;
  color: #ffffff;
}

.sdh-drawer-item-del {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 12px;
  margin-left: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sdh-drawer-item-del:hover {
  opacity: 1;
}

.sdh-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--sdh-border-subtle);
  background: rgba(5, 8, 20, 0.8);
}

.sdh-coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.sdh-coupon-input {
  flex-grow: 1;
  padding: 8px 12px;
  background: #090e1f;
  border: 1px solid var(--sdh-border-medium);
  border-radius: 6px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.sdh-btn-apply-coupon {
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid var(--sdh-border-accent);
  color: var(--sdh-primary);
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.sdh-drawer-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sdh-drawer-total-label {
  font-size: 14px;
  color: var(--sdh-text-muted);
  font-weight: 700;
}

.sdh-drawer-total-val {
  font-family: var(--sdh-font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--sdh-primary);
}

.sdh-btn-drawer-checkout {
  width: 100%;
  background: var(--sdh-primary-gradient);
  border: none;
  color: #000000;
  padding: 13px;
  border-radius: var(--sdh-radius-full);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4);
  transition: var(--sdh-transition);
  margin-bottom: 10px;
}

.sdh-btn-drawer-checkout:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 25px rgba(0, 210, 255, 0.6);
}

.sdh-btn-drawer-wa {
  width: 100%;
  background: var(--sdh-wa-gradient);
  border: none;
  color: #ffffff;
  padding: 11px;
  border-radius: var(--sdh-radius-full);
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--sdh-transition);
}

.sdh-btn-drawer-wa:hover {
  filter: brightness(1.1);
  color: #ffffff;
}

/* Modals */
.sdh-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 10700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.sdh-modal-container {
  background: #090e21;
  border: 1px solid var(--sdh-border-medium);
  border-radius: var(--sdh-radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--sdh-glow-cyan);
}

.sdh-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--sdh-text-dim);
  font-size: 20px;
  cursor: pointer;
}

.sdh-modal-close:hover {
  color: #ffffff;
}

.sdh-page-header {
  text-align: center;
  margin-bottom: 24px;
}

.sdh-page-title {
  font-family: var(--sdh-font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.sdh-page-subtitle {
  font-size: 13px;
  color: var(--sdh-text-muted);
}

.sdh-checkout-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sdh-summary-card {
  background: rgba(13, 20, 42, 0.8);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: 12px;
  padding: 16px;
}

.sdh-checkout-card {
  background: rgba(13, 20, 42, 0.8);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.sdh-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sdh-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sdh-primary-gradient);
  color: #000;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdh-card-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.sdh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sdh-form-group {
  margin-bottom: 14px;
}

.sdh-field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sdh-text-med);
  margin-bottom: 6px;
}

.sdh-field-label .req {
  color: #ef4444;
}

.sdh-input-field, .sdh-select-field, .sdh-input, .sdh-select, .sdh-textarea {
  width: 100%;
  padding: 11px 14px;
  background: #050814;
  border: 1px solid var(--sdh-border-medium);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}

.sdh-input-field:focus, .sdh-select-field:focus, .sdh-input:focus, .sdh-textarea:focus {
  border-color: var(--sdh-primary);
}

.sdh-input-group {
  display: flex;
  gap: 8px;
}

.sdh-btn-fetch {
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid var(--sdh-border-accent);
  color: var(--sdh-primary);
  font-weight: 800;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.sdh-recipient-box {
  background: #050814;
  border: 1px solid var(--sdh-border-accent);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.sdh-rec-header {
  font-size: 12px;
  font-weight: 800;
  color: var(--sdh-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sdh-recipient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sdh-rec-item {
  display: flex;
  flex-direction: column;
}

.sdh-rec-label {
  font-size: 11px;
  color: var(--sdh-text-dim);
}

.sdh-rec-val {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}

.sdh-rec-full {
  grid-column: 1 / -1;
}

.sdh-btn-copy {
  background: transparent;
  border: none;
  color: var(--sdh-primary);
  cursor: pointer;
  margin-left: 6px;
}

.sdh-payment-instructions {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--sdh-text-muted);
}

.sdh-btn-place-order {
  width: 100%;
  background: var(--sdh-primary-gradient);
  border: none;
  color: #000000;
  padding: 14px;
  border-radius: var(--sdh-radius-full);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4);
}

/* Floating WhatsApp Button */
.sdh-wa-widget-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.sdh-wa-fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  border: none;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  transition: var(--sdh-transition);
}

.sdh-wa-fab:hover {
  transform: scale(1.08);
  background: #059669;
}

.sdh-fab-tooltip {
  position: absolute;
  right: 66px;
  background: #090e1f;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--sdh-border-medium);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.sdh-wa-fab:hover .sdh-fab-tooltip {
  opacity: 1;
}

/* Toast */
.sdh-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #090e1f;
  border: 1px solid var(--sdh-primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--sdh-radius-full);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), var(--sdh-glow-cyan);
  font-size: 13.5px;
  font-weight: 700;
  z-index: 11000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sdh-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* (Old responsive block removed to avoid conflicts) */

/* =======================================================
 * 🌟 ADMIN DASHBOARD, CRUDS & ORDER STATUS TRACKER STYLES
 * ======================================================= */

/* Nav Track Order Button */
.sdh-nav-track-btn {
  height: 40px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--sdh-border-accent);
  color: var(--sdh-primary);
  padding: 0 16px;
  border-radius: var(--sdh-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12.5px;
  transition: var(--sdh-transition);
  white-space: nowrap;
}

.sdh-nav-track-btn:hover {
  background: var(--sdh-primary);
  color: #000000;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.4);
}

/* Status Badges */
.sdh-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--sdh-radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.sdh-status-badge.approved {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.sdh-status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  animation: sdh-pulse 1.8s infinite;
}

.sdh-status-badge.rejected {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Order Tracker Styles */
.sdh-tracker-box {
  background: rgba(10, 16, 36, 0.95);
  border: 1px solid var(--sdh-border-medium);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.sdh-tracker-status-banner {
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.sdh-tracker-status-banner.approved {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.3) 100%);
  border: 1px solid #10b981;
}

.sdh-tracker-status-banner.pending {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.25) 100%);
  border: 1px solid #f59e0b;
}

.sdh-tracker-status-banner.rejected {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(185, 28, 28, 0.25) 100%);
  border: 1px solid #ef4444;
}

.sdh-tracker-title-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.sdh-tracker-title-col p {
  font-size: 13px;
  color: var(--sdh-text-muted);
  margin: 0;
}

.sdh-tracker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
  background: rgba(5, 8, 20, 0.7);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--sdh-border-subtle);
}

.sdh-tracker-item {
  display: flex;
  flex-direction: column;
}

.sdh-tracker-item span:first-child {
  font-size: 11.5px;
  color: var(--sdh-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sdh-tracker-item span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Admin Dashboard Modal (Expanded Full Command Center) */
.sdh-admin-modal-container {
  max-width: 1100px;
  width: 95%;
  background: #080d21;
  border: 1px solid var(--sdh-border-accent);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 210, 255, 0.2);
  padding: 28px 32px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}

.sdh-admin-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sdh-border-subtle);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 14px;
}

.sdh-admin-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sdh-admin-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2ff, #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.sdh-admin-info h3 {
  font-family: var(--sdh-font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.sdh-admin-info span {
  font-size: 12px;
  color: var(--sdh-primary);
  font-weight: 700;
}

.sdh-admin-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sdh-btn-admin-logout {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 7px 16px;
  border-radius: var(--sdh-radius-full);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--sdh-transition);
}

.sdh-btn-admin-logout:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* Admin Tabs */
.sdh-admin-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--sdh-border-subtle);
  padding-bottom: 14px;
  margin-bottom: 24px;
  overflow-x: auto;
}

.sdh-admin-tab-btn {
  background: rgba(13, 22, 48, 0.8);
  border: 1px solid var(--sdh-border-subtle);
  color: var(--sdh-text-muted);
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--sdh-transition);
  white-space: nowrap;
}

.sdh-admin-tab-btn i {
  font-size: 14px;
}

.sdh-admin-tab-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #ffffff;
  border-color: var(--sdh-border-medium);
}

.sdh-admin-tab-btn.active {
  background: var(--sdh-primary-gradient);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.35);
  font-weight: 900;
}

.sdh-admin-tab-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 1px 7px;
  border-radius: var(--sdh-radius-full);
}

/* Stat Cards */
.sdh-admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.sdh-admin-stat-card {
  background: rgba(13, 20, 42, 0.85);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--sdh-transition);
}

.sdh-admin-stat-card:hover {
  border-color: var(--sdh-border-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sdh-stat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-rev { background: rgba(0, 210, 255, 0.15); color: #00d2ff; }
.icon-ord { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.icon-pend { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.icon-prod { background: rgba(16, 185, 129, 0.15); color: #34d399; }

.sdh-stat-details {
  display: flex;
  flex-direction: column;
}

.sdh-stat-label {
  font-size: 12px;
  color: var(--sdh-text-muted);
  font-weight: 600;
}

.sdh-stat-val {
  font-family: var(--sdh-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 2px;
}

/* Admin Tables */
.sdh-admin-table-wrap {
  overflow-x: auto;
  background: rgba(5, 8, 20, 0.85);
  border: 1px solid var(--sdh-border-subtle);
  border-radius: 12px;
  margin-bottom: 20px;
}

.sdh-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.sdh-admin-table th {
  background: rgba(13, 22, 48, 0.95);
  color: var(--sdh-text-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 1px solid var(--sdh-border-subtle);
}

.sdh-admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--sdh-text-med);
  vertical-align: middle;
}

.sdh-admin-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
}

.sdh-table-tool-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}

.sdh-btn-action-sm {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--sdh-transition);
}

.sdh-btn-approve {
  background: #10b981;
  color: #000000;
}

.sdh-btn-approve:hover {
  background: #059669;
  color: #ffffff;
}

.sdh-btn-reject {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}

.sdh-btn-reject:hover {
  background: #ef4444;
  color: #ffffff;
}

.sdh-btn-edit {
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid var(--sdh-border-accent);
  color: var(--sdh-primary);
}

.sdh-btn-edit:hover {
  background: var(--sdh-primary);
  color: #000000;
}

.sdh-btn-delete {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.sdh-btn-delete:hover {
  background: #ef4444;
  color: #ffffff;
}

.sdh-btn-slip {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c084fc;
}

.sdh-btn-slip:hover {
  background: #7c3aed;
  color: #ffffff;
}

/* Search and Filter Row in Dashboard */
.sdh-dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.sdh-filter-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sdh-filter-btn {
  background: rgba(13, 20, 42, 0.8);
  border: 1px solid var(--sdh-border-subtle);
  color: var(--sdh-text-muted);
  padding: 6px 14px;
  border-radius: var(--sdh-radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--sdh-transition);
}

.sdh-filter-btn.active {
  background: rgba(0, 210, 255, 0.2);
  border-color: var(--sdh-primary);
  color: #ffffff;
}

.sdh-toolbar-search {
  position: relative;
  min-width: 250px;
}

.sdh-toolbar-search input {
  width: 100%;
  padding: 8px 14px 8px 34px;
  background: #050814;
  border: 1px solid var(--sdh-border-medium);
  border-radius: 8px;
  color: #ffffff;
  font-size: 12.5px;
}

.sdh-toolbar-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sdh-text-dim);
  font-size: 12px;
}


/* =======================================================
 * 📱 COMPREHENSIVE RESPONSIVE DESIGN FOR ALL DEVICES
 * Master Responsive Layout for Desktop, Tablet & All Mobiles (down to 320px)
 * Designed by Siddique Tech Solution for SDH Tools Store
 * ======================================================= */

/* --- Desktop Defaults for Mobile-Only Elements --- */
.sdh-mobile-menu-btn {
  display: none !important;
}

.sdh-mobile-drawer-actions {
  display: none !important;
}

@keyframes sdh-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* -------------------------------------------------------
 * 💻 SMALL DESKTOPS & TABLETS LANDSCAPE (max-width: 1024px)
 * ------------------------------------------------------- */
@media (max-width: 1024px) {
  .sdh-container {
    padding: 0 16px;
  }
  .sdh-header-inner {
    padding: 0 14px;
    gap: 12px;
  }
  .sdh-nav-list {
    gap: 4px;
    padding: 3px 5px;
  }
  .sdh-nav-link {
    padding: 6px 10px;
    font-size: 12px;
    gap: 5px;
  }
  .sdh-nav-track-btn,
  .sdh-admin-hub-btn,
  .sdh-btn-wa-header {
    padding: 0 10px;
    font-size: 12px;
  }
  .sdh-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }
}

/* -------------------------------------------------------
 * 📱 TABLETS & PHABLETS (max-width: 992px)
 * Header transforms to clean capsule with Cart + Hamburger
 * All secondary actions move inside mobile drawer
 * ------------------------------------------------------- */
@media (max-width: 992px) {
  /* Show Hamburger Button */
  .sdh-mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--sdh-border-medium);
    color: var(--sdh-primary);
    border-radius: var(--sdh-radius-full);
    font-size: 16px;
    cursor: pointer;
    transition: var(--sdh-transition);
    flex-shrink: 0;
  }

  .sdh-mobile-menu-btn:hover {
    background: rgba(0, 210, 255, 0.2);
    color: #ffffff;
    border-color: var(--sdh-primary);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.35);
  }

  /* In Header Bar: Hide Cluttered Action Buttons, Keep Cart Pill & Hamburger */
  .sdh-header-actions .sdh-nav-track-btn,
  .sdh-header-actions .sdh-admin-hub-btn,
  .sdh-header-actions .sdh-btn-wa-header {
    display: none !important;
  }

  .sdh-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .sdh-cart-pill-btn {
    display: inline-flex !important;
    height: 40px !important;
    padding: 0 12px !important;
  }

  .sdh-cart-label {
    display: none !important;
  }

  .sdh-header-inner {
    height: 62px;
    padding: 0 12px;
    justify-content: space-between;
  }

  /* Slide-Down Modern Glass Navigation Menu */
  .sdh-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(6, 12, 28, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 210, 255, 0.18);
    z-index: 1005;
    flex-direction: column;
  }

  .sdh-nav.mobile-active {
    display: flex !important;
    animation: sdh-slide-down 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sdh-nav-list {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .sdh-nav-list li {
    width: 100% !important;
    list-style: none !important;
  }

  .sdh-nav-link {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    padding: 11px 16px !important;
    border-radius: 12px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    gap: 12px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
  }

  .sdh-nav-link:hover,
  .sdh-nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.18), rgba(0, 102, 255, 0.25)) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
  }

  .sdh-nav-link i {
    width: 22px !important;
    text-align: center !important;
    color: var(--sdh-primary) !important;
    font-size: 15px !important;
  }

  /* Mobile Drawer Action Cards Section */
  .sdh-mobile-drawer-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
  }

  .sdh-mobile-action-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    background: rgba(13, 22, 48, 0.75) !important;
    border: 1px solid rgba(0, 210, 255, 0.22) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    text-align: left !important;
    width: 100% !important;
    transition: var(--sdh-transition) !important;
  }

  .sdh-mobile-action-card:hover {
    background: rgba(0, 210, 255, 0.15) !important;
    border-color: var(--sdh-primary) !important;
    transform: translateY(-1px);
  }

  .sdh-mobile-action-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(0, 210, 255, 0.15) !important;
    color: var(--sdh-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
  }

  .sdh-mobile-action-icon.admin {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #fbbf24 !important;
  }

  .sdh-mobile-action-info {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }

  .sdh-mobile-action-title {
    color: #ffffff !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
  }

  .sdh-mobile-action-desc {
    color: var(--sdh-text-dim) !important;
    font-size: 11px !important;
  }

  .sdh-mobile-action-arrow {
    color: var(--sdh-text-dim) !important;
    font-size: 12px !important;
  }

  .sdh-mobile-wa-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35) !important;
  }

  .sdh-mobile-wa-cta i {
    font-size: 18px !important;
  }

  /* Hero adjustments for tablet */
  .sdh-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sdh-hero-title {
    font-size: 38px;
  }
  .sdh-hero-actions,
  .sdh-hero-search-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .sdh-logo-trust-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  /* Pre-Footer Banner */
  .sdh-pre-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .sdh-cta-features-strip {
    justify-content: center;
  }
  .sdh-pre-footer-actions {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  /* Footer 2 Columns on Tablet */
  .sdh-footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

/* -------------------------------------------------------
 * 📱 STANDARD MOBILE PHONES (max-width: 768px)
 * Clean, modern single-line topbar & flawless mobile UI
 * ------------------------------------------------------- */
@media (max-width: 768px) {
  /* Topbar: ONE Clean, Compact Row Without Stacking Clutter */
  .sdh-topbar {
    padding: 6px 0 !important;
  }

  .sdh-topbar-inner {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    text-align: center !important;
  }

  .sdh-topbar-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }

  .sdh-topbar-right {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .sdh-status-pulse-badge {
    padding: 3px 8px !important;
    font-size: 10.5px !important;
    white-space: nowrap !important;
  }

  .sdh-topbar-pill-tag {
    padding: 3px 9px !important;
    font-size: 11.5px !important;
    white-space: nowrap !important;
  }

  .sdh-topbar-contact-btn {
    padding: 3px 9px !important;
    font-size: 11.5px !important;
    white-space: nowrap !important;
  }

  /* Hide Clutter Elements on Mobile Topbar */
  .hide-mobile,
  .sdh-topbar-pill-tag.hide-mobile,
  .sdh-topbar-currency-badge,
  .sdh-topbar-sep.hide-mobile,
  .sdh-topbar-contact-link.hide-mobile {
    display: none !important;
  }

  /* Header adjustments */
  .sdh-header {
    padding: 8px 0;
  }

  .sdh-header-inner {
    height: 58px;
    padding: 0 10px;
  }

  .sdh-logo-ring {
    width: 38px;
    height: 38px;
  }

  .sdh-brand-title {
    font-size: 15px;
  }

  .sdh-brand-subtitle {
    font-size: 9.5px;
  }

  /* Hero Section Mobile */
  .sdh-hero {
    padding: 26px 0 18px;
  }

  .sdh-hero-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.22;
  }

  .sdh-hero-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Search Bar Mobile */
  .sdh-hero-search-wrap {
    padding: 4px;
  }

  .sdh-hero-search-wrap input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .sdh-hero-search-btn {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Horizontal Swipeable Category Pills */
  .sdh-filter-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 6px 12px;
    margin-bottom: 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .sdh-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .sdh-filter-pill {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Product Catalog: 1 Clean Full-Width Column on Mobile */
  .sdh-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .sdh-tool-thumb-wrap {
    height: 175px;
  }

  .sdh-tool-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Features & Reviews Grid */
  .sdh-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #preview-reviews-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sdh-steps-row {
    flex-direction: column;
    gap: 20px;
  }

  /* FAQ Accordion Mobile */
  .sdh-accordion-header {
    padding: 15px 16px !important;
    font-size: 14px !important;
  }

  .sdh-accordion-content,
  .sdh-accordion-body {
    padding: 0 16px 16px 16px !important;
    font-size: 13.5px !important;
  }

  /* Pre-Footer Actions */
  .sdh-pre-footer-actions {
    flex-direction: column;
    gap: 10px;
  }

  .sdh-pre-footer-actions .sdh-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer 1 Column on Mobile */
  .sdh-footer-main-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sdh-footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .sdh-footer-status-pill,
  .sdh-footer-developer {
    justify-content: center;
  }

  .sdh-bank-chips-grid {
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 6px;
  }

  /* Slideout Cart Drawer - Full Width on Mobile */
  .sdh-cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 14px;
  }

  /* Modals Full Responsiveness */
  .sdh-modal-container,
  .sdh-admin-modal-container {
    width: 95% !important;
    max-width: 95% !important;
    padding: 18px 14px !important;
    max-height: 92vh;
    border-radius: 16px;
    margin: 10px auto;
  }

  .sdh-checkout-modal-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .sdh-admin-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .sdh-invoice-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    padding: 10px !important;
  }

  .sdh-form-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .sdh-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .sdh-admin-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sdh-admin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .sdh-admin-tabs::-webkit-scrollbar {
    display: none;
  }

  .sdh-admin-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 12px;
  }

  .sdh-admin-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sdh-admin-stat-card {
    padding: 12px;
  }

  .sdh-stat-val {
    font-size: 18px;
  }

  .sdh-admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .sdh-admin-table {
    min-width: 660px;
  }

  .sdh-tracker-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sdh-tracker-status-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sdh-inv-header {
    flex-direction: column;
    gap: 12px;
  }

  .sdh-inv-meta {
    text-align: left;
  }

  .sdh-inv-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Floating Widgets on Mobile */
  .sdh-wa-widget-wrap {
    bottom: 16px;
    right: 14px;
  }

  .sdh-wa-fab {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .sdh-ai-widget-wrap {
    bottom: 72px;
    right: 14px;
  }

  .sdh-ai-fab {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .sdh-ai-box {
    width: calc(100vw - 24px) !important;
    right: 12px !important;
    bottom: 78px !important;
    max-height: calc(100vh - 110px) !important;
  }
}

/* -------------------------------------------------------
 * 📱 COMPACT SCREENS & SMALL PHONES (max-width: 520px)
 * ------------------------------------------------------- */
@media (max-width: 520px) {
  /* On phones under 520px, keep topbar ultra minimal: Live + Instant Delivery */
  .sdh-topbar-right {
    display: none !important;
  }

  .sdh-topbar-inner {
    justify-content: center !important;
  }

  .sdh-status-pulse-badge {
    font-size: 10px !important;
    padding: 2px 7px !important;
  }

  .sdh-topbar-pill-tag {
    font-size: 10.5px !important;
    padding: 2px 7px !important;
  }

  .sdh-brand-subtitle {
    display: none !important;
  }

  .sdh-official-badge {
    display: none !important;
  }

  .sdh-brand-title {
    font-size: 14.5px !important;
  }

  .sdh-header-actions {
    gap: 6px !important;
  }

  .sdh-cart-pill-btn {
    padding: 0 10px !important;
    height: 38px !important;
  }

  .sdh-mobile-menu-btn {
    width: 38px !important;
    height: 38px !important;
  }

  .sdh-hero-title {
    font-size: 22px;
  }

  .sdh-hero-search-btn span {
    display: none;
  }

  .sdh-hero-search-btn {
    padding: 8px 12px;
  }

  .sdh-hero-search-btn i {
    margin: 0;
  }

  .sdh-admin-stats-grid,
  .sdh-invoice-details-grid {
    grid-template-columns: 1fr !important;
  }

  .sdh-tool-actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .sdh-btn-add-cart,
  .sdh-btn-buy-now {
    font-size: 11px;
    padding: 8px 4px;
  }
}

/* -------------------------------------------------------
 * 📱 ULTRA-COMPACT SCREENS (max-width: 360px)
 * ------------------------------------------------------- */
@media (max-width: 360px) {
  .sdh-brand-title {
    font-size: 13px !important;
  }
  .sdh-logo-ring {
    width: 34px !important;
    height: 34px !important;
  }
  .sdh-cart-pill-btn,
  .sdh-mobile-menu-btn {
    width: 35px !important;
    height: 35px !important;
  }
}
