/* ==========================================================================
   ELECTRONIX DOCTORS - MODERN E-COMMERCE DESIGN SYSTEM
   High-Tech Cyber Precision Meets Standard Professional E-Commerce UX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Tech Colors */
  --primary: #1e40af;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.35);
  
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);
  --accent-neon: #3b82f6;
  --accent-purple: #8b5cf6;
  
  /* Dark Tech Theme Colors */
  --dark-navy-950: #050b14;
  --dark-navy-900: #0a1124;
  --dark-navy-800: #0f1c3f;
  --dark-navy-700: #172554;
  --dark-surface: #111e38;
  --dark-border: #1e3056;

  /* Neutral UI Colors */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card-hover: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --star-color: #f59e0b;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-focus: #3b82f6;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.35);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Max Container Width */
  --container-max: 1320px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Scroll Lock when Mobile Navigation Drawer is Open */
html.mobile-nav-locked,
body.mobile-nav-locked {
  overflow: hidden !important;
  height: 100% !important;
  max-height: 100vh !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: auto !important;
  overscroll-behavior: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-primary {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.badge-tech {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.4);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT / UTILITY BAR
   ========================================================================== */
.top-bar {
  background: #090d16;
  color: #94a3b8;
  font-size: 0.76rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.top-bar-left, .top-bar-center, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar-item i {
  color: #38bdf8;
  font-size: 0.82rem;
}

.top-bar-highlight {
  color: #e2e8f0;
  font-weight: 500;
}

.top-bar-highlight span {
  color: #38bdf8;
  font-weight: 700;
}

.top-bar-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: #ffffff;
}

.top-bar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   2. MAIN HEADER
   ========================================================================== */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition-normal);
}

.main-header.is-sticky {
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.header-main-row {
  display: contents;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-icon-wrap::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.logo-title span {
  color: #2563eb;
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Advanced Search Box */
.header-search {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  transition: all var(--transition-fast);
  padding: 3px 4px 3px 14px;
}

.search-form:focus-within {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.search-category-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid #e2e8f0;
  padding-right: 2px;
}

.search-category-select {
  padding: 8px 18px 8px 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e293b;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  white-space: nowrap;
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: content-box;
}

.search-category-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 6px;
  color: #64748b;
  font-size: 0.62rem;
  pointer-events: none;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.search-input {
  width: 100%;
  padding: 8px 0;
  font-size: 0.86rem;
  color: #0f172a;
  border: none;
  background: transparent;
  outline: none;
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-btn {
  background: #2563eb;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.search-btn:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

/* Search Dropdown Results */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 36px -4px rgba(15, 23, 42, 0.14), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
  padding: 0;
  display: none;
  z-index: 150;
  overflow: hidden;
  animation: fadeInDown 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.search-results-dropdown.active {
  display: block;
}

.search-results-header {
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}

.search-match-count {
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 7px;
  border-radius: 9999px;
}

.search-results-list {
  max-height: 340px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.15s ease;
  text-decoration: none;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f8fafc;
}

.search-result-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.search-brand-pill {
  font-size: 0.65rem;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.search-result-info h4 {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.search-spec-brief {
  font-size: 0.74rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-top: 1px;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-result-price {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #2563eb;
}

.search-item-arrow {
  color: #94a3b8;
  font-size: 0.72rem;
  transition: transform 0.15s, color 0.15s;
}

.search-result-item:hover .search-item-arrow {
  color: #2563eb;
  transform: translateX(2px);
}

.search-results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: #f8fafc;
  border-top: 1px solid #edf2f7;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: background 0.15s;
}

.search-results-footer:hover {
  background: #eff6ff;
}

.search-empty-state {
  padding: 32px 20px;
  text-align: center;
  color: #64748b;
}

.search-empty-state i {
  font-size: 1.6rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.search-empty-state h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.search-empty-state p {
  font-size: 0.78rem;
  margin: 0;
}

/* Header User Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #334155;
  text-decoration: none;
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px;
  transition: color var(--transition-fast);
}

.header-action-btn:hover {
  color: #2563eb;
}

.header-action-icon {
  font-size: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.action-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.35);
}

/* Mobile Drawer Hidden on Desktop */
.mobile-nav-drawer {
  display: none;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.05rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.mobile-nav-toggle:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

/* ==========================================================================
   3. NAVIGATION BAR (Clean, Pixel-Perfect, Matching Reference)
   ========================================================================== */
.nav-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  height: 54px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  height: 100%;
}

/* Category Button Dropdown */
.nav-category-dropdown {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.category-trigger-btn {
  background: #081127;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 18px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(8, 17, 39, 0.18);
  line-height: 1;
}

.category-trigger-btn:hover,
.nav-category-dropdown.is-open .category-trigger-btn,
.nav-category-dropdown:hover .category-trigger-btn {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
}

.category-trigger-btn .cat-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-trigger-btn .cat-btn-left i {
  font-size: 0.95rem;
  color: #ffffff;
}

.category-trigger-btn .cat-btn-chevron {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  transition: transform var(--transition-fast);
}

.nav-category-dropdown:hover .cat-btn-chevron,
.nav-category-dropdown.is-open .cat-btn-chevron {
  transform: rotate(180deg);
}

.category-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.16), 0 4px 10px -2px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 120;
  border-radius: var(--radius-sm);
  padding: 4px 0;
}

/* Invisible Hit-Bridge: Prevents dropdown from disappearing when cursor moves between button and menu */
.category-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-category-dropdown:hover .category-menu-dropdown,
.nav-category-dropdown.is-open .category-menu-dropdown,
.category-menu-dropdown.is-open {
  display: block;
  animation: fadeInDown 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.category-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.category-menu-item:last-child {
  border-bottom: none;
}

.category-menu-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

.category-menu-item i {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Main Menu Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  height: 100%;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
  line-height: 1;
  padding: 0 2px;
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 800;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

.nav-link i.fa-chevron-down {
  font-size: 0.62rem;
  color: #94a3b8;
  transition: transform var(--transition-fast);
}

.nav-link:hover i.fa-chevron-down {
  color: var(--primary);
  transform: translateY(1px);
}

.nav-link-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 9999px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Nav Right Value Pillars */
.nav-right-features {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

.nav-feature-pill i {
  color: var(--primary);
  font-size: 0.85rem;
}

.nav-feature-sep {
  width: 1px;
  height: 18px;
  background: #e2e8f0;
}

@media (max-width: 1100px) {
  .nav-right-features,
  .top-bar-center {
    display: none;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }

  .main-header {
    padding: 8px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 6px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-decoration: none !important;
  }

  .logo-icon-wrap {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 7px !important;
    flex-shrink: 0 !important;
  }

  .logo-icon-wrap i {
    font-size: 0.9rem !important;
  }

  .logo-text {
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .logo-title {
    font-size: 1.02rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .logo-subtitle {
    font-size: 0.52rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  /* Desktop Search Bar hidden on mobile header (lives inside menu drawer) */
  .header-search {
    display: none !important;
  }

  .header-actions {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Wishlist and Cart hidden on mobile header as requested */
  .header-action-btn {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 8px !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav-toggle:hover {
    border-color: #2563eb !important;
    color: #2563eb !important;
    background: #eff6ff !important;
  }

  /* Desktop Navigation Bar Hidden on Mobile */
  .desktop-nav-bar,
  .nav-bar {
    display: none !important;
  }

  /* ==========================================================================
     MOBILE FULL-SCREEN SLIDE-DOWN NAVIGATION MENU (Pixel-Perfect Single View)
     ========================================================================== */
  .mobile-nav-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease, visibility 0.38s !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45) !important;
  }

  .mobile-nav-drawer.is-mobile-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* 1. Header */
  .m-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 18px !important;
    background: #09101f !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  .m-drawer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    flex: 1 !important;
  }

  .m-logo-icon {
    width: 34px !important;
    height: 34px !important;
    background: linear-gradient(135deg, #1e293b, #2563eb) !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #38bdf8 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
    flex-shrink: 0 !important;
  }

  .m-logo-text {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
  }

  .m-brand-name {
    font-family: var(--font-heading) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.15 !important;
  }

  .m-brand-name strong {
    color: #38bdf8 !important;
  }

  .m-brand-tag {
    font-size: 0.55rem !important;
    color: #94a3b8 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    margin-top: 2px !important;
  }

  .m-drawer-close-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-left: 12px !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .m-drawer-close-btn:hover,
  .m-drawer-close-btn:active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: scale(1.06) rotate(90deg) !important;
  }

  /* 2. Search Bar */
  .m-drawer-search {
    padding: 10px 18px 8px !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  .m-search-form {
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 9999px !important;
    padding: 3px 4px 3px 14px !important;
    height: 40px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
  }

  .m-search-form:focus-within {
    background: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
  }

  .m-search-icon {
    color: #94a3b8 !important;
    font-size: 0.85rem !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
  }

  .m-search-form input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 0.84rem !important;
    width: 100% !important;
    color: #0f172a !important;
    min-width: 0 !important;
  }

  .m-search-form input::placeholder {
    color: #94a3b8 !important;
  }

  .m-search-form button {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #2563eb !important;
    color: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 0.76rem !important;
    flex-shrink: 0 !important;
    transition: background 0.15s ease !important;
  }

  .m-search-form button:hover {
    background: #1d4ed8 !important;
  }

  /* 3. Navigation Links List (Balanced Unified Cards) */
  .m-drawer-body {
    flex: 1 1 auto !important;
    padding: 6px 18px 10px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .m-nav-group-title {
    font-size: 0.64rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.9px !important;
    color: #94a3b8 !important;
    padding: 0 4px 6px !important;
  }

  .m-nav-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .m-nav-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 14px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: #0f172a !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    box-sizing: border-box !important;
    min-height: 44px !important;
  }

  .mobile-nav-drawer.is-mobile-open .m-nav-item {
    animation: mItemSlideDown 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(1) { animation-delay: 0.03s; }
  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(2) { animation-delay: 0.06s; }
  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(3) { animation-delay: 0.09s; }
  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(4) { animation-delay: 0.12s; }
  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(5) { animation-delay: 0.15s; }
  .mobile-nav-drawer.is-mobile-open .m-nav-item:nth-child(6) { animation-delay: 0.18s; }

  @keyframes mItemSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .m-nav-item:hover,
  .m-nav-item:active {
    background: #ffffff !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1) !important;
  }

  .m-nav-item.active {
    background: #eff6ff !important;
    border-color: #93c5fd !important;
    color: #2563eb !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12) !important;
  }

  .m-nav-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
    transition: all 0.15s ease !important;
  }

  .nav-icon-home { background: #eff6ff !important; color: #2563eb !important; }
  .nav-icon-shop { background: #f0f9ff !important; color: #0284c7 !important; }
  .nav-icon-deals { background: #fef2f2 !important; color: #ef4444 !important; }
  .nav-icon-showroom { background: #eef2ff !important; color: #4f46e5 !important; }
  .nav-icon-reviews { background: #fffbeb !important; color: #d97706 !important; }
  .nav-icon-contact { background: #ecfdf5 !important; color: #059669 !important; }

  .m-nav-item.active .m-nav-icon {
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.4) !important;
  }

  .m-nav-label {
    flex: 1 !important;
    min-width: 0 !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.3px !important;
  }

  .m-badge-hot {
    background: #ef4444 !important;
    color: #ffffff !important;
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: 9999px !important;
    text-transform: uppercase !important;
    margin-right: 4px !important;
    line-height: 1.1 !important;
  }

  .m-badge-rating {
    background: #fef3c7 !important;
    color: #b45309 !important;
    border: 1px solid #fde68a !important;
    font-size: 0.6rem !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
    margin-right: 4px !important;
    line-height: 1.1 !important;
  }

  .m-nav-arrow {
    color: #cbd5e1 !important;
    font-size: 0.72rem !important;
    transition: transform 0.15s ease !important;
  }

  .m-nav-item:hover .m-nav-arrow {
    transform: translateX(3px) !important;
    color: #2563eb !important;
  }

  /* 4. Footer Info Strip (Clean Dual Cards) */
  .m-drawer-footer {
    padding: 10px 18px 16px !important;
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  .m-footer-card {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 0.74rem !important;
    color: #64748b !important;
  }

  .m-footer-card-call {
    justify-content: space-between !important;
  }

  .m-footer-icon {
    color: #2563eb !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
  }

  .m-footer-details {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    flex: 1 !important;
  }

  .m-footer-details strong {
    color: #0f172a !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
  }

  .m-footer-details span {
    font-size: 0.68rem !important;
    color: #64748b !important;
    line-height: 1.2 !important;
    margin-top: 1px !important;
  }

  .m-footer-details a {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: #2563eb !important;
    text-decoration: none !important;
    margin-top: 1px !important;
  }

  .m-btn-call-action {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 6px 14px !important;
    background: #2563eb !important;
    color: #ffffff !important;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    transition: background 0.15s ease, transform 0.15s ease !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35) !important;
  }

  .m-btn-call-action:hover {
    background: #1d4ed8 !important;
    transform: translateY(-1px) !important;
  }

  .m-footer-details a {
    color: #2563eb !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 0.72rem !important;
    line-height: 1.1 !important;
    margin-top: 1px !important;
  }
}

/* ==========================================================================
   4. FULL-WIDTH HERO CAROUSEL (Real-World E-Commerce Dark Tech Vibe)
   ========================================================================== */
.hero-carousel-section {
  position: relative;
  width: 100%;
  background: #030712;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-slide-bg-1,
.hero-slide-bg-2,
.hero-slide-bg-3 {
  background-color: #030712;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide-bg-1 {
  background-image: 
    linear-gradient(90deg, #030712 0%, rgba(3, 7, 18, 0.95) 28%, rgba(3, 7, 18, 0.55) 48%, rgba(3, 7, 18, 0.1) 70%, transparent 85%),
    linear-gradient(180deg, #030712 0%, transparent 12%, transparent 88%, #030712 100%),
    url('../assets/images/banner/banner-1.png');
}

.hero-slide-bg-2 {
  background-image: 
    linear-gradient(90deg, #030712 0%, rgba(3, 7, 18, 0.95) 28%, rgba(3, 7, 18, 0.55) 48%, rgba(3, 7, 18, 0.1) 70%, transparent 85%),
    linear-gradient(180deg, #030712 0%, transparent 12%, transparent 88%, #030712 100%),
    url('../assets/images/banner/banner-2.png');
}

.hero-slide-bg-3 {
  background-image: 
    linear-gradient(90deg, #030712 0%, rgba(3, 7, 18, 0.95) 28%, rgba(3, 7, 18, 0.55) 48%, rgba(3, 7, 18, 0.1) 70%, transparent 85%),
    linear-gradient(180deg, #030712 0%, transparent 12%, transparent 88%, #030712 100%),
    url('../assets/images/banner/banner-3.png');
}

.hero-slide-container-single {
  display: block !important;
  width: 100%;
}

.hero-slide-container-single .hero-slide-content {
  max-width: 500px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-slide-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 60px;
}

/* Slide Left Content */
.hero-slide-content {
  color: #ffffff;
}

.hero-slide-badge {
  margin-bottom: 14px;
}

.hero-slide-badge .badge-tech {
  background: rgba(6, 182, 212, 0.14);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero-slide-title span {
  color: #ffffff;
  display: inline-block;
}

.hero-slide-desc {
  font-size: 0.96rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-hero-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transition: all var(--transition-fast);
}

.btn-hero-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.6);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Slide Right Media */
.hero-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-floating-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(6, 182, 212, 0.12) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-showcase-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.7));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Floating Navigation Buttons */
.hero-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-nav-prev {
  left: 24px;
}

.hero-nav-next {
  right: 24px;
}

.hero-carousel-nav:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
}

/* Pagination Dots */
.hero-carousel-pagination {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
}

.hero-page-dot {
  width: 8px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.hero-page-dot.is-active {
  width: 32px;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
}

/* ==========================================================================
   FLOATING TRUST BAR CARD (Strictly 4 Equal Partitions)
   ========================================================================== */
.trust-floating-section {
  position: relative;
  z-index: 25;
  margin-top: -30px;
  padding-bottom: 24px;
}

.trust-floating-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}

.trust-floating-card .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 18px;
  width: 100%;
  box-sizing: border-box;
  border-right: 1px solid #edf2f7;
  transition: background 0.2s ease;
}

.trust-floating-card .trust-item:last-child {
  border-right: none;
}

.trust-floating-card .trust-item:hover {
  background: #f8fafc;
}

.trust-floating-card .trust-icon-wrap {
  font-size: 2rem;
  color: #2563eb;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

.trust-floating-card .trust-item:hover .trust-icon-wrap {
  transform: scale(1.1);
}

.trust-floating-card .trust-text h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark-navy-950);
  line-height: 1.25;
  margin-bottom: 3px;
  white-space: nowrap;
}

.trust-floating-card .trust-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE STYLES FOR HERO CAROUSEL & FLOATING TRUST CARD (Pixel-Perfect)
   ========================================================================== */

/* 1. Medium Tablets & iPad Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-carousel-section,
  .hero-carousel-wrapper {
    min-height: 520px !important;
  }

  .hero-slide {
    display: flex !important;
    align-items: center !important;
  }

  .hero-slide-container {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    align-items: center !important;
    text-align: left !important;
    gap: 20px !important;
    padding-top: 45px !important;
    padding-bottom: 75px !important;
  }

  .hero-slide-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-slide-badge {
    margin-bottom: 12px !important;
  }

  .hero-slide-title {
    font-size: 2.3rem !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
    text-align: left !important;
  }

  .hero-slide-desc {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin: 0 0 22px 0 !important;
    text-align: left !important;
    max-width: 440px !important;
  }

  .hero-slide-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: auto !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 22px !important;
    font-size: 0.88rem !important;
    border-radius: 9999px !important;
  }

  .hero-slide-media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-showcase-img {
    max-height: 280px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .hero-carousel-nav {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  .hero-nav-prev { left: 14px !important; }
  .hero-nav-next { right: 14px !important; }

  .hero-carousel-pagination {
    bottom: 52px !important;
    z-index: 20 !important;
  }

  .trust-floating-section {
    margin-top: -26px !important;
    padding-bottom: 24px !important;
  }

  .trust-floating-card {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trust-floating-card .trust-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 20px !important;
    gap: 14px !important;
    border-right: none !important;
    border-bottom: 1px solid #edf2f7 !important;
  }

  .trust-floating-card .trust-item:nth-child(odd) {
    border-right: 1px solid #edf2f7 !important;
  }

  .trust-floating-card .trust-item:nth-child(3),
  .trust-floating-card .trust-item:nth-child(4) {
    border-bottom: none !important;
  }

  .trust-floating-card .trust-icon-wrap {
    font-size: 1.85rem !important;
  }

  .trust-floating-card .trust-text h4 {
    font-size: 0.9rem !important;
    white-space: nowrap !important;
  }

  .trust-floating-card .trust-text p {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }
}

/* 2. Tablet Portrait & Standard Mobile Screens (481px - 768px) */
@media (max-width: 768px) {
  .hero-carousel-section,
  .hero-carousel-wrapper {
    min-height: 420px !important;
    height: 420px !important;
  }

  .hero-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-slide-bg-1,
  .hero-slide-bg-2,
  .hero-slide-bg-3 {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .hero-slide-bg-1 {
    background-image: 
      linear-gradient(180deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0.78) 50%, rgba(3, 7, 18, 0.72) 100%),
      url('../assets/images/banner/banner-1.png') !important;
  }

  .hero-slide-bg-2 {
    background-image: 
      linear-gradient(180deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0.78) 50%, rgba(3, 7, 18, 0.72) 100%),
      url('../assets/images/banner/banner-2.png') !important;
  }

  .hero-slide-bg-3 {
    background-image: 
      linear-gradient(180deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0.78) 50%, rgba(3, 7, 18, 0.72) 100%),
      url('../assets/images/banner/banner-3.png') !important;
  }

  .hero-slide-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    padding: 0 20px !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-slide-container-single .hero-slide-content,
  .hero-slide-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }

  .hero-slide-badge {
    display: block !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .hero-slide-badge .badge-tech {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    letter-spacing: 0.8px !important;
    border-radius: 9999px !important;
  }

  .hero-slide-title {
    font-size: 1.8rem !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.4px !important;
    text-align: center !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9) !important;
  }

  .hero-slide-desc {
    display: block !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    max-width: 380px !important;
    margin: 0 auto 16px auto !important;
    color: #cbd5e1 !important;
    text-align: center !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8) !important;
  }

  .hero-slide-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .btn-hero-primary {
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
    border-radius: var(--radius-xs) !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5) !important;
  }

  .btn-hero-outline {
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
    border-radius: var(--radius-xs) !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .hero-carousel-nav {
    display: none !important;
  }

  .hero-carousel-pagination {
    bottom: 14px !important;
    z-index: 20 !important;
  }

  .hero-page-dot {
    height: 4px !important;
    width: 6px !important;
  }

  .hero-page-dot.is-active {
    width: 18px !important;
  }

  /* Trust Bar Mobile (Centered Column Layout - Strictly Contained) */
  .trust-floating-section {
    margin-top: -20px !important;
    padding-bottom: 20px !important;
    position: relative !important;
    z-index: 30 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .trust-floating-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.1) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    overflow: hidden !important;
  }

  .trust-floating-card .trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 4px !important;
    gap: 4px !important;
    border-right: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .trust-floating-card .trust-item:nth-child(odd) {
    border-right: 1px solid #f1f5f9 !important;
  }

  .trust-floating-card .trust-item:nth-child(3),
  .trust-floating-card .trust-item:nth-child(4) {
    border-bottom: none !important;
  }

  .trust-floating-card .trust-icon-wrap {
    font-size: 1.4rem !important;
    min-width: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .trust-floating-card .trust-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .trust-floating-card .trust-text h4 {
    font-family: var(--font-heading) !important;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
  }

  /* Hide Subtext on Mobile */
  .trust-floating-card .trust-text p {
    display: none !important;
  }
}

/* 3. Small Smartphones (< 480px) */
@media (max-width: 480px) {
  .hero-carousel-section,
  .hero-carousel-wrapper {
    min-height: 380px !important;
    height: 380px !important;
  }

  .hero-slide-container {
    padding: 0 16px !important;
  }

  .hero-slide-container-single .hero-slide-content,
  .hero-slide-content {
    max-width: 320px !important;
  }

  .hero-slide-badge {
    margin-bottom: 8px !important;
  }

  .hero-slide-badge .badge-tech {
    font-size: 0.65rem !important;
    padding: 3px 10px !important;
  }

  .hero-slide-title {
    font-size: 1.55rem !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  .hero-slide-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    max-width: 300px !important;
    margin: 0 auto 14px auto !important;
  }

  .hero-slide-actions {
    gap: 8px !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 8px 14px !important;
    font-size: 0.76rem !important;
  }

  .hero-carousel-pagination {
    bottom: 10px !important;
  }

  .trust-floating-section {
    margin-top: -16px !important;
  }

  .trust-floating-card {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 14px !important;
  }

  .trust-floating-card .trust-item {
    padding: 12px 3px !important;
    gap: 5px !important;
  }

  .trust-floating-card .trust-icon-wrap {
    font-size: 1.4rem !important;
  }

  .trust-floating-card .trust-text h4 {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    white-space: normal !important;
    word-break: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
  }

  .trust-floating-card .trust-text p {
    display: none !important;
  }
}

/* ==========================================================================
   5. SHOP BY CATEGORY SECTION (Modern Compact Round Bubble Carousel)
   ========================================================================== */
.categories-section {
  padding: 36px 0 45px;
  background: #ffffff;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-title-wrap {
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-navy-950);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  background: #ffffff;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Category Slider Wrapper & Edge Fades */
/* Category Slider Wrapper & Edge Fades */
.category-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 2px;
}

.category-fade-left,
.category-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.35s ease;
}

.category-fade-left {
  left: 0;
  background: linear-gradient(to right, #ffffff 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 0; /* Only shows when user scrolled right */
}

.category-fade-left.is-visible {
  opacity: 1;
}

.category-fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
}

.category-fade-right.is-hidden {
  opacity: 0;
}

/* Category Bubbles Flex Track */
.category-bubbles-track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 18px 16px 18px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.category-bubbles-track:active {
  cursor: grabbing;
}

.category-bubbles-track::-webkit-scrollbar {
  display: none;
}

.category-bubble-item {
  flex: 0 0 102px;
  width: 102px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-bubble-item:hover {
  transform: translateY(-4px);
}

/* Compact Round Bubble Disc */
.category-bubble-disc {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f1f5f9 70%, #e2e8f0 100%);
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 6px 16px -3px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.bubble-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #6366f1);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}

.category-bubble-item:hover .category-bubble-disc {
  border-color: transparent;
  box-shadow: 0 10px 24px -4px rgba(37, 99, 235, 0.28), 0 0 0 3px rgba(37, 99, 235, 0.18);
  transform: scale(1.04);
}

.category-bubble-item:hover .bubble-glow-ring {
  opacity: 1;
}

/* Completely Rounded Inner Image */
.bubble-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-bubble-item:hover .bubble-img {
  transform: scale(1.12);
}

/* Bubble Info Text */
.bubble-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.bubble-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--dark-navy-950);
  margin-bottom: 2px;
  line-height: 1.2;
  transition: color var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.category-bubble-item:hover .bubble-title {
  color: var(--primary);
}

.bubble-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive Styles for Shop By Category Section (Compact & Swipeable) */
@media (min-width: 769px) and (max-width: 1024px) {
  .categories-section {
    padding: 26px 0 34px;
  }

  .categories-section .section-controls {
    display: none !important;
  }

  .categories-section .section-title {
    font-size: 1.3rem;
  }

  .category-bubble-disc {
    width: 76px;
    height: 76px;
  }

  .category-bubble-item {
    flex: 0 0 86px;
    width: 86px;
  }

  .category-bubbles-track {
    gap: 16px;
    padding: 10px 4px 12px;
  }

  .bubble-title {
    font-size: 0.8rem;
  }

  .bubble-desc {
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .categories-section {
    padding: 20px 0 26px;
  }

  .categories-section .section-header {
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .categories-section .section-controls {
    display: none !important;
  }

  .categories-section .section-title {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
  }

  .category-fade-left,
  .category-fade-right {
    width: 25px;
  }

  .category-bubble-disc {
    width: 62px;
    height: 62px;
    border-width: 1.5px;
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  }

  .category-bubble-item {
    flex: 0 0 72px;
    width: 72px;
  }

  .category-bubbles-track {
    gap: 12px;
    padding: 8px 2px 10px;
  }

  .bubble-info {
    margin-top: 6px;
  }

  .bubble-title {
    font-size: 0.74rem;
    font-weight: 800;
  }

  .bubble-desc {
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 16px 0 22px;
  }

  .categories-section .section-title {
    font-size: 1.05rem;
  }

  .category-fade-left,
  .category-fade-right {
    width: 18px;
  }

  .category-bubble-disc {
    width: 54px;
    height: 54px;
    border-width: 1.5px;
  }

  .category-bubble-item {
    flex: 0 0 62px;
    width: 62px;
  }

  .category-bubbles-track {
    gap: 10px;
    padding: 6px 2px 8px;
  }

  .bubble-info {
    margin-top: 5px;
  }

  .bubble-title {
    font-size: 0.68rem;
    font-weight: 800;
  }

  .bubble-desc {
    font-size: 0.58rem;
  }
}

/* ==========================================================================
   6. FEATURED PROMO BENTO GRID (Enhanced Reference Layout)
   ========================================================================== */
.promo-bento-section {
  padding: 30px 0 55px;
  background: #ffffff;
}

.promo-bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

/* Base Promo Card */
.promo-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.06);
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -6px rgba(15, 23, 42, 0.12);
}

/* Card 1: Dark Obsidian */
.promo-card-dark {
  background: radial-gradient(circle at 85% 85%, rgba(37, 99, 235, 0.3) 0%, rgba(4, 7, 17, 0.98) 55%, #030712 100%);
  color: #ffffff;
  min-height: 410px;
}

.promo-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  width: fit-content;
}

.promo-badge-white {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.promo-card-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
}

.promo-card-sub {
  font-size: 0.88rem;
  opacity: 0.82;
  margin-bottom: 10px;
}

.promo-card-price {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.promo-card-price span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* Action Row (Countdown + Button) */
.promo-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

/* Mini Countdown */
.promo-mini-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.countdown-mini-label {
  color: #94a3b8;
  font-size: 0.7rem;
}

.countdown-mini-val {
  color: #38bdf8;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

/* Promo Buttons */
.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.25s ease;
  width: fit-content;
  z-index: 2;
  cursor: pointer;
}

.btn-promo-white {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-promo-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.btn-promo-dark-outline {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #0f172a;
}

.btn-promo-dark-outline:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Card Media Displays */
.promo-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-card:hover .promo-img {
  transform: scale(1.08) translateY(-4px);
}

.promo-img-laptop {
  max-height: 165px;
  border-radius: 16px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.7));
}

/* Card 2: Royal Indigo */
.promo-card-indigo {
  background: linear-gradient(145deg, #4f46e5 0%, #3730a3 100%);
  color: #ffffff;
  min-height: 410px;
}

.promo-img-headset {
  max-height: 165px;
  border-radius: 16px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.45));
}

/* Column 3: Stack of 2 Cards */
.promo-bento-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-card-sky {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: #0f172a;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  padding: 20px 22px;
}

.promo-card-sage {
  background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
  color: #0f172a;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  padding: 20px 22px;
}

.promo-card-title-sm {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #0f172a;
}

.promo-card-sub-sm {
  font-size: 0.78rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 12px;
}

.promo-card-media-blend {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.promo-card-media-blend img {
  max-height: 115px;
  width: auto;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   7. POPULAR LAPTOPS SECTION (Matching User Reference Image - 3 Rows)
   ========================================================================== */
.products-section {
  padding: 45px 0 65px;
  background: #ffffff;
  width: 100%;
}

.section-header-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.section-header-link:hover {
  gap: 10px;
  color: #1d4ed8;
}

/* 5-Column, 3-Row Product Grid (15 Cards on Desktop, 16 on Mobile/Tablet) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
  width: 100%;
}

/* Hide 16th card on desktop so it is strictly 3 full rows of 5 cards = 15 cards */
@media (min-width: 1201px) {
  .products-grid .product-card:nth-child(n+16) {
    display: none !important;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 16px 14px 16px;
  display: flex;
  flex-direction: column;
  height: 380px;
  min-height: 380px;
  max-height: 380px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
}

/* Product Image Frame - Uniform Size */
.product-img-wrap {
  width: 100%;
  height: 140px;
  min-height: 140px;
  max-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 12px;
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Accent Dash */
.card-accent-dash {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Product Info - Fixed Grid Height Layout */
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  min-height: 0;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  height: 2.7em;
  min-height: 2.7em;
  max-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-card:hover .product-title {
  color: var(--primary);
}

.product-specs {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  height: 1.4em;
  min-height: 1.4em;
  max-height: 1.4em;
  line-height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Pricing Row */
.product-pricing {
  height: 1.8em;
  min-height: 1.8em;
  max-height: 1.8em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #111827;
}

.old-price {
  font-size: 0.78rem;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Bottom Row (Rating & Cart Icon Button) - Pinned to baseline */
.product-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 4px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.75rem;
}

.rating-count {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  margin-left: 3px;
}

.ref-cart-btn {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ref-cart-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

/* Card In-Cart Active State */
.product-card.is-in-cart {
  border-color: #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.card-added-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #10b981;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
  z-index: 5;
  animation: badgePop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.2px;
}

@keyframes badgePop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Interactive Card Live Quantity Stepper (+ / -) */
.card-qty-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 9999px;
  height: 34px;
  padding: 2px 3px;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.38);
  animation: stepperPop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  box-sizing: border-box;
}

@keyframes stepperPop {
  0% { transform: scale(0.65); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.card-qty-stepper .stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  line-height: 1;
}

.card-qty-stepper .stepper-btn:hover {
  background: #ffffff;
  color: #059669;
  transform: scale(1.1);
}

.card-qty-stepper .stepper-btn:active {
  transform: scale(0.92);
}

.card-qty-stepper .stepper-val {
  min-width: 22px;
  padding: 0 4px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.ref-cart-btn.is-added {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35) !important;
}

.ref-cart-btn.is-added:hover {
  background: #059669 !important;
  border-color: #059669 !important;
}

.btn-list-cart-action.is-added {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
  padding: 6px 12px !important;
}

.list-stepper-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}

.list-stepper-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.15s ease;
}

.list-stepper-btn:hover {
  background: #ffffff;
  color: #059669;
}

.list-stepper-count {
  font-weight: 800;
  font-size: 0.82rem;
}

.btn-single-add-cart.is-added {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
}

/* Shop More Footer */
.products-action-footer {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-shop-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-shop-more i {
  transition: transform 0.25s ease;
}

.btn-shop-more:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3);
}

.btn-shop-more:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   MASTER RESPONSIVE SYSTEM (100% Mobile, Tablet & Desktop Fluidity)
   ========================================================================== */

/* 1. Large Laptops & Small Desktops (1200px - 1400px) */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .products-grid,
  .bestsellers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }
}

/* 2. Tablets & iPad Landscape (992px - 1199px) */
@media (max-width: 992px) {
  .products-grid,
  .bestsellers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .promo-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .promo-bento-stack {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .testimonials-carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .brand-partners-track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
    justify-content: flex-start;
    padding: 10px 0;
  }

  .brand-partners-track::-webkit-scrollbar {
    display: none;
  }

  .brand-logo-item {
    flex-shrink: 0;
  }
}

/* 3. Tablets Portrait & Large Phones (680px - 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .products-section {
    padding: 30px 0 45px !important;
  }

  .products-section .section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 16px !important;
    gap: 8px !important;
  }

  .products-section .section-title {
    font-size: 1.15rem !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    letter-spacing: -0.3px !important;
  }

  .products-section .section-header-link {
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    letter-spacing: 0.3px !important;
  }

  .products-section .section-header-link i {
    font-size: 0.7rem !important;
  }

  .products-grid,
  .bestsellers-grid,
  #shop-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
  }

  .product-card {
    height: auto !important;
    min-height: 295px !important;
    max-height: none !important;
    padding: 10px 10px 12px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .product-img-wrap {
    width: 100% !important;
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    margin-bottom: 8px !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    padding: 4px !important;
    box-sizing: border-box !important;
  }

  .product-img-wrap img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
  }

  .card-accent-dash {
    width: 18px !important;
    height: 2px !important;
    margin-bottom: 6px !important;
  }

  .product-title {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    height: 2.5em !important;
    min-height: 2.5em !important;
    max-height: 2.5em !important;
    margin-bottom: 3px !important;
  }

  .product-specs {
    font-size: 0.68rem !important;
    height: 1.3em !important;
    min-height: 1.3em !important;
    margin-bottom: 5px !important;
  }

  .product-pricing {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 6px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
  }

  .current-price {
    font-size: 0.94rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .old-price {
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }

  .product-bottom-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .rating-stars {
    font-size: 0.62rem !important;
    gap: 1px !important;
    flex-shrink: 0 !important;
  }

  .rating-stars .rating-count {
    display: none !important;
  }

  .card-qty-stepper {
    height: 30px !important;
    padding: 1px 2px !important;
    max-width: 68px !important;
    flex-shrink: 0 !important;
  }

  .card-qty-stepper .stepper-btn {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.62rem !important;
  }

  .card-qty-stepper .stepper-val {
    min-width: 14px !important;
    padding: 0 2px !important;
    font-size: 0.76rem !important;
  }

  .ref-cart-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  /* Hide Promo Bento Section on Mobile Screens */
  .promo-bento-section {
    display: none !important;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 175px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* 4. Small Smartphones & Compact Mobile Devices (< 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .products-section {
    padding: 22px 0 35px !important;
  }

  .products-section .section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
  }

  .products-section .section-title {
    font-size: 1.02rem !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    letter-spacing: -0.3px !important;
  }

  .products-section .section-header-link {
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    flex-shrink: 0 !important;
    letter-spacing: 0.2px !important;
  }

  .products-section .section-header-link i {
    font-size: 0.62rem !important;
  }

  .products-grid,
  .bestsellers-grid,
  #shop-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px !important;
  }

  .product-card {
    height: auto !important;
    min-height: 275px !important;
    max-height: none !important;
    padding: 8px 8px 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04) !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .product-img-wrap {
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    margin-bottom: 6px !important;
    border-radius: 8px !important;
    padding: 3px !important;
  }

  .product-img-wrap img {
    object-fit: contain !important;
  }

  .card-accent-dash {
    margin-bottom: 5px !important;
    width: 14px !important;
  }

  .product-title {
    font-size: 0.76rem !important;
    height: 2.5em !important;
    min-height: 2.5em !important;
    max-height: 2.5em !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
  }

  .product-specs {
    font-size: 0.62rem !important;
    height: 1.25em !important;
    min-height: 1.25em !important;
    margin-bottom: 4px !important;
  }

  .product-pricing {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 4px !important;
    gap: 3px !important;
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
  }

  .current-price {
    font-size: 0.88rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .old-price {
    font-size: 0.64rem !important;
    white-space: nowrap !important;
  }

  .product-bottom-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 3px !important;
    width: 100% !important;
  }

  .rating-stars {
    font-size: 0.56rem !important;
    gap: 1px !important;
    flex-shrink: 0 !important;
  }

  .rating-stars .rating-count {
    display: none !important;
  }

  .card-qty-stepper {
    height: 28px !important;
    padding: 1px 2px !important;
    max-width: 64px !important;
    flex-shrink: 0 !important;
  }

  .card-qty-stepper .stepper-btn {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.58rem !important;
  }

  .card-qty-stepper .stepper-val {
    min-width: 12px !important;
    padding: 0 1px !important;
    font-size: 0.72rem !important;
  }

  .ref-cart-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.72rem !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .ref-cart-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.7rem !important;
    border-radius: 6px !important;
  }

  .btn-shop-more {
    padding: 10px 20px;
    font-size: 0.78rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ==========================================================================
   7.5. ANNIVERSARY SLIM TECH SALE RIBBON (Brand Tech Themed)
   ========================================================================== */
.anniversary-banner-section {
  padding: 20px 0 45px;
  background: #ffffff;
  width: 100%;
}

.slim-tech-banner {
  background: radial-gradient(circle at 8% 50%, rgba(37, 99, 235, 0.32) 0%, transparent 40%),
              radial-gradient(circle at 92% 50%, rgba(14, 165, 233, 0.25) 0%, transparent 40%),
              linear-gradient(135deg, #020817 0%, #071536 50%, #020817 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  padding: 22px 36px;
  min-height: 145px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 20px;
  box-shadow: 0 22px 55px -10px rgba(2, 6, 23, 0.65), 0 0 35px rgba(14, 165, 233, 0.08);
}

.tech-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.glow-cyan-left {
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  background: rgba(37, 99, 235, 0.35);
}

.glow-cyan-right {
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  background: rgba(56, 189, 248, 0.3);
}

/* Background-Removed Cutout Columns */
.tech-cutout-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tech-aura-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 1;
}

.tech-cutout-img {
  max-width: 155px;
  max-height: 92px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  display: block;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.slim-tech-banner:hover .tech-cutout-img {
  transform: scale(1.03);
}

.tech-spec-pill {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: rgba(4, 14, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

/* Center Slim Content */
.tech-banner-center {
  text-align: center;
  color: #ffffff;
  z-index: 5;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-top-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 9999px;
  color: #38bdf8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tech-banner-title {
  font-family: var(--font-heading), 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  white-space: nowrap;
}

.cyan-gradient-text {
  color: #0ea5e9;
  font-weight: 900;
}

.tech-banner-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.1px;
}

.btn-tech-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 28px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.55), 0 0 12px rgba(37, 99, 235, 0.35);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-tech-banner-cta:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.7), 0 0 16px rgba(56, 189, 248, 0.5);
}

@media (max-width: 1200px) {
  .tech-banner-title {
    font-size: 1.25rem;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .slim-tech-banner {
    grid-template-columns: 150px 1fr 150px;
    padding: 18px 22px;
    gap: 12px;
  }
  .tech-banner-title {
    font-size: 1.15rem;
  }
  .tech-cutout-img {
    max-width: 125px;
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .anniversary-banner-section {
    padding: 12px 0 28px;
  }

  .slim-tech-banner {
    grid-template-columns: 1fr;
    padding: 18px 16px 20px;
    text-align: center;
    border-radius: 16px;
    min-height: auto;
    gap: 8px;
    box-shadow: 0 10px 25px -4px rgba(2, 6, 23, 0.45), 0 0 20px rgba(14, 165, 233, 0.06);
  }

  .tech-cutout-side {
    display: none !important;
  }

  .tech-banner-center {
    padding: 0;
  }

  .tech-top-tag {
    padding: 3px 12px;
    font-size: 0.62rem;
    margin-bottom: 6px;
    letter-spacing: 0.6px;
  }

  .tech-banner-title {
    font-size: 1.12rem;
    line-height: 1.25;
    white-space: normal;
    margin-bottom: 5px;
    letter-spacing: -0.2px;
  }

  .tech-banner-sub {
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: 320px;
    margin: 0 auto 12px;
    color: #94a3b8;
  }

  .btn-tech-banner-cta {
    padding: 8px 24px;
    font-size: 0.74rem;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
  }
}

@media (max-width: 480px) {
  .anniversary-banner-section {
    padding: 8px 0 22px;
  }

  .slim-tech-banner {
    padding: 16px 12px 18px;
    border-radius: 14px;
  }

  .tech-top-tag {
    padding: 2px 10px;
    font-size: 0.58rem;
    margin-bottom: 5px;
  }

  .tech-banner-title {
    font-size: 1.02rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .tech-banner-sub {
    font-size: 0.67rem;
    line-height: 1.4;
    max-width: 280px;
    margin-bottom: 10px;
  }

  .btn-tech-banner-cta {
    padding: 7px 18px;
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   8. WHY CHOOSE ELECTRONIX DOCTORS (TRUST PILLARS)
   ========================================================================== */
.why-us-section {
  padding: 55px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.why-us-header {
  text-align: center;
  margin-bottom: 36px;
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.why-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.06);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.why-card:hover .why-icon {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: scale(1.05);
}

.why-info h4 {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.25;
}

.why-info p {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
}

/* Responsive Styles for Why Choose Us Section */
@media (max-width: 1200px) {
  .why-us-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .why-us-section {
    padding: 40px 0 45px;
  }

  .why-us-header {
    margin-bottom: 24px;
  }

  .why-us-title {
    font-size: 1.3rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .why-us-section {
    padding: 30px 0 36px;
  }

  .why-us-header {
    margin-bottom: 18px;
    padding: 0 8px;
  }

  .why-us-title {
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: -0.2px;
  }

  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .why-card {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .why-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .why-info h4 {
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 2px;
  }

  .why-info p {
    font-size: 0.7rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .why-us-section {
    padding: 24px 0 30px;
  }

  .why-us-header {
    margin-bottom: 14px;
  }

  .why-us-title {
    font-size: 1.05rem;
  }

  .why-card {
    padding: 10px 12px;
    gap: 10px;
  }

  .why-icon {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
  }

  .why-info h4 {
    font-size: 0.78rem;
  }

  .why-info p {
    font-size: 0.67rem;
  }
}

/* ==========================================================================
   8.5. STORE SHOWROOM & CUSTOMER TRUST GALLERY (Modern Bento Style)
   ========================================================================== */
.store-gallery-section {
  padding: 55px 0;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.gallery-clean-header {
  text-align: center;
  margin-bottom: 26px;
}

.gallery-clean-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.gallery-clean-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Modern Stylish Bento Grid */
.gallery-bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 16px;
  margin-bottom: 28px;
}

.bento-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid #cbd5e1;
  box-shadow: 0 8px 25px -4px rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px -4px rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.4);
}

.bento-feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img {
  transform: scale(1.04);
}

/* Sleek Minimal Floating Badge */
.bento-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover .bento-badge {
  background: rgba(37, 99, 235, 0.9);
  border-color: rgba(56, 189, 248, 0.4);
}

.bento-badge i {
  color: #38bdf8;
  font-size: 0.75rem;
}

.bento-card:hover .bento-badge i {
  color: #ffffff;
}

/* Centered Action Buttons */
.gallery-clean-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-gallery-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  border: 1px solid var(--primary);
}

.btn-gallery-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.5);
}

.btn-gallery-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: #ffffff;
  color: var(--text-main);
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-gallery-secondary:hover {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

@media (max-width: 1024px) {
  .gallery-bento-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 170px 170px;
    gap: 12px;
    margin-bottom: 22px;
  }

  .bento-feature {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
  }

  .bento-card {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .store-gallery-section {
    padding: 32px 0 40px;
  }

  .gallery-clean-header {
    margin-bottom: 18px;
    padding: 0 10px;
  }

  .gallery-clean-title {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .gallery-clean-sub {
    font-size: 0.74rem;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
  }

  .gallery-bento-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    grid-auto-rows: auto !important;
    gap: 10px 8px !important;
    margin-bottom: 20px !important;
  }

  .gallery-bento-grid .bento-card {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 125px !important;
    border-radius: 12px !important;
  }

  .gallery-bento-grid .bento-card.bento-feature {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 185px !important;
    border-radius: 14px !important;
  }

  .bento-badge {
    bottom: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.62rem;
    gap: 4px;
    border-radius: 9999px;
  }

  .bento-badge i {
    font-size: 0.65rem;
  }

  .gallery-clean-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .btn-gallery-primary,
  .btn-gallery-secondary {
    flex: 1;
    max-width: 180px;
    padding: 9px 14px;
    font-size: 0.78rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .store-gallery-section {
    padding: 24px 0 32px;
  }

  .gallery-clean-title {
    font-size: 1.08rem;
  }

  .gallery-clean-sub {
    font-size: 0.68rem;
  }

  .gallery-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    grid-auto-rows: auto !important;
    gap: 8px 6px !important;
    margin-bottom: 16px !important;
  }

  .gallery-bento-grid .bento-card {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 110px !important;
    border-radius: 10px !important;
  }

  .gallery-bento-grid .bento-card.bento-feature {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 165px !important;
    border-radius: 12px !important;
  }

  .bento-badge {
    bottom: 6px;
    left: 6px;
    padding: 2px 6px;
    font-size: 0.58rem;
    gap: 3px;
  }

  .bento-badge i {
    font-size: 0.6rem;
  }

  .gallery-clean-actions {
    gap: 8px;
  }

  .btn-gallery-primary,
  .btn-gallery-secondary {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   8.8. CUSTOMER REVIEWS (Clean Modern Carousel)
   ========================================================================== */
.testimonials-section {
  padding: 45px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.testi-header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.76rem;
}

.testi-score {
  font-weight: 800;
  color: var(--text-main);
}

.testi-stars-row {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
  font-size: 0.72rem;
}

.testi-count {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.72rem;
}

.testi-nav-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-nav-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.testi-nav-arrow:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 16px;
}

.testimonials-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  height: 185px;
  min-height: 185px;
  max-height: 185px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -4px rgba(37, 99, 235, 0.12);
}

.testi-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.testi-stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
  font-size: 0.72rem;
}

.testi-date {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
}

.testi-text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #334155;
  margin: 0 0 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid #bfdbfe;
}

.testi-name {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.testi-verified {
  font-size: 0.68rem;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-verified i {
  font-size: 0.65rem;
}

/* Pagination Dots */
.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.is-active {
  width: 22px;
  background: var(--primary);
}

@media (max-width: 1024px) {
  .testi-nav-arrows {
    display: none !important;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    height: auto;
    min-height: 185px;
  }
}

@media (max-width: 768px) {
  .testi-nav-arrows {
    display: none !important;
  }

  .testimonials-section {
    padding: 30px 0 38px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 175px;
    padding: 16px 14px;
  }

  .testi-rating-badge {
    display: inline-flex;
    padding: 3px 10px;
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   9. AUTHORIZED TECH BRAND PARTNERS STRIP (Infinite Scrolling Marquee)
   ========================================================================== */
.brand-partners-section {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 22px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: brandMarquee 26s linear infinite;
  will-change: transform;
}

.brand-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 1.15rem;
  font-weight: 800;
  opacity: 0.75;
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-item:hover {
  opacity: 1;
  color: #0f172a;
  transform: translateY(-2px);
}

.brand-logo-text {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.samsung-font {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
}

.apple-font {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.intel-font {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.nvidia-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
}

.razer-font {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.dell-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.amd-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 1.15rem;
}

.lenovo-font {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
}

.asus-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
}

.msi-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.15rem;
}

.hp-font {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: -1px;
}

@media (max-width: 1024px) {
  .brand-partners-section {
    padding: 18px 0;
  }

  .brand-marquee-track {
    gap: 30px;
    animation: brandMarquee 20s linear infinite;
  }

  .brand-logo-item {
    font-size: 1rem;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .brand-partners-section {
    padding: 14px 0;
  }

  .brand-marquee-track {
    gap: 22px;
    animation: brandMarquee 16s linear infinite;
  }

  .brand-logo-item {
    font-size: 0.92rem;
    gap: 5px;
  }
}

/* ==========================================================================
   10. MAIN FOOTER
   ========================================================================== */
.main-footer {
  background: var(--dark-navy-950);
  color: var(--text-light);
  padding: 70px 0 0;
  margin-top: auto;
  width: 100%;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr 1.1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Brand */
.footer-logo-title {
  color: #ffffff;
}

.footer-bio {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 16px 0 20px;
}

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

.social-icon-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Footer Nav Columns */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item a {
  font-size: 0.8125rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--accent-cyan);
  padding-left: 3px;
}

/* Footer Contact Info */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
}

.footer-contact-item i {
  color: var(--accent-cyan);
  margin-top: 3px;
  font-size: 0.9rem;
}

/* Payment Badges */
.payment-methods-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xs);
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 20px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px 24px;
  }

  .footer-col:nth-child(5) {
    grid-column: span 2;
  }

  .footer-col:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .main-footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    padding-bottom: 36px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-bottom: 6px;
  }

  .footer-col:nth-child(5) {
    grid-column: span 2;
  }

  .footer-col:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 38px 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
    padding-bottom: 28px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
  }

  .footer-col:nth-child(5) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
  }

  .footer-col:nth-child(6) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
  }

  .footer-bottom {
    padding: 16px 0 20px;
  }

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 28px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 20px;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 16px;
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-col h4 {
    font-size: 0.84rem;
    margin-bottom: 12px;
  }

  .footer-links-list {
    gap: 8px;
  }

  .footer-link-item a {
    font-size: 0.78rem;
  }

  .footer-contact-item {
    font-size: 0.78rem;
    gap: 8px;
  }

  .pay-badge {
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .footer-bottom {
    padding: 14px 0 18px;
    font-size: 0.72rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-links {
    font-size: 0.72rem;
    gap: 8px 12px;
  }
}

/* ==========================================================================
   11. SLIDE-OUT CART DRAWER & BACKDROP
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 20, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  background: var(--dark-navy-950);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.btn-close-drawer {
  color: #ffffff;
  font-size: 1.25rem;
  padding: 4px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: var(--border-light);
  margin-bottom: 16px;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: var(--radius-xs);
  padding: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy-950);
  line-height: 1.2;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background: #f1f5f9;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--primary);
  color: #fff;
}

.cart-item-remove {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--danger);
}

.cart-drawer-footer {
  padding: 20px;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 700;
}

.cart-subtotal-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ==========================================================================
   12. QUICK VIEW MODAL
   ========================================================================== */
.quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 20, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--danger);
  color: #ffffff;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  padding: 36px;
}

.modal-img-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 20px;
}

.modal-img-showcase img {
  max-height: 300px;
  object-fit: contain;
}

.modal-info-col h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-navy-950);
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-specs-list {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-specs-list li {
  display: flex;
  justify-content: space-between;
}

.modal-specs-list span {
  font-weight: 600;
  color: var(--dark-navy-950);
}

/* ==========================================================================
   13. TOAST NOTIFICATIONS (Pinned Top-Right)
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
}

.toast {
  background: #090d16;
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-left: 4px solid #2563eb;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 400px;
  font-size: 0.84rem;
  font-weight: 500;
  pointer-events: auto;
  animation: toastInTop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

@keyframes toastInTop {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.toast i {
  color: #38bdf8;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .toast-container {
    top: 16px;
    right: 14px;
    left: 14px;
    align-items: flex-end;
  }

  .toast {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    font-size: 0.8rem;
    padding: 10px 14px;
  }
}

/* ==========================================================================
   13C. DESKTOP LIVE FLOATING CART BUBBLE (Circular Floating Action Button)
   ========================================================================== */
.desktop-cart-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark-navy-950, #090d16);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.25rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  animation: floatBubbleIn 0.35s ease;
}

@keyframes floatBubbleIn {
  0% { transform: translateY(20px) scale(0.8); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.desktop-cart-bubble:hover {
  background: var(--primary, #0f766e);
  border-color: var(--primary, #0f766e);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.4);
  color: #ffffff;
}

.desktop-cart-bubble:active {
  transform: translateY(-1px) scale(0.96);
}

.desktop-cart-bubble .bubble-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 21px;
  height: 21px;
  padding: 0 4px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #090d16;
  font-family: var(--font-heading);
  line-height: 1;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
  box-sizing: border-box;
}

/* Strictly Hide on Tablet & Mobile */
@media (max-width: 1024px) {
  .desktop-cart-bubble {
    display: none !important;
  }
}

/* ==========================================================================
   14. RESPONSIVE DESIGN & MEDIA QUERIES (100% RESPONSIVE)
   ========================================================================== */

/* Large Tablets & Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .nav-links {
    gap: 18px;
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .category-slider {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }

  .nav-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    padding: 24px;
  }

  .nav-bar.is-mobile-open {
    display: block;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-category-dropdown {
    width: 100%;
  }

  .category-trigger-btn {
    width: 100%;
  }

  .hero-slide-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .hero-slide-title {
    font-size: 2.5rem;
  }

  .hero-slide-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide-actions {
    justify-content: center;
  }

  .hero-carousel-nav {
    display: none; /* Swipe gestures used on touch */
  }

  .trust-floating-section {
    margin-top: -24px;
    padding-bottom: 10px;
  }

  .trust-floating-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 24px;
    gap: 20px;
  }

  .trust-floating-card .trust-item:nth-child(2)::after {
    display: none;
  }

  .promo-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .promo-bento-stack {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .modal-body-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }

  .search-category-select {
    display: none;
  }

  .hero-slide-title {
    font-size: 2.1rem;
  }

  .category-bubbles-track {
    gap: 16px;
    padding-bottom: 12px;
  }

  .category-bubble-item {
    flex: 0 0 94px;
    width: 94px;
  }

  .category-bubble-disc {
    width: 84px;
    height: 84px;
    padding: 3px;
  }

  .promo-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-bento-stack {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-actions {
    gap: 12px;
  }

  .header-action-label {
    display: none;
  }
}

/* ==========================================================================
   11. SLIDE-OUT SHOPPING CART DRAWER (Cyber-Tech & Modern)
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.3);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  background: #090d16;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.cart-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title-wrap i {
  color: #38bdf8;
  font-size: 1.1rem;
}

.cart-header-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
}

.btn-close-drawer {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-drawer:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.cart-shipping-notice {
  background: #eff6ff;
  border-bottom: 1px solid #dbeafe;
  padding: 8px 22px;
  font-size: 0.74rem;
  color: #1e40af;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-shipping-notice i {
  color: #2563eb;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
}

/* Custom Scrollbar for Drawer */
.cart-drawer-body::-webkit-scrollbar {
  width: 5px;
}

.cart-drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

/* Cart Item Card */
.cart-drawer-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.cart-drawer-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.cart-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 6px;
}

.cart-item-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 3px;
  gap: 2px;
}

.cart-item-qty-control .qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cart-item-qty-control .qty-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.cart-item-qty-control .qty-number {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  min-width: 22px;
  text-align: center;
  padding: 0 4px;
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff1f2;
  border: 1px solid #ffe4e6;
  color: #f43f5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #f43f5e;
  color: #ffffff;
  border-color: #f43f5e;
  transform: scale(1.05);
}

/* Empty Cart State */
.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.empty-cart-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.empty-cart-icon-wrap i {
  color: #2563eb !important;
  font-size: 1.95rem !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cart-empty-state h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.cart-empty-state p {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.45;
}

.btn-empty-shop {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 22px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto !important;
}

.btn-empty-shop:hover {
  background: #1d4ed8 !important;
  transform: translateY(-2px) !important;
}

.btn-empty-shop i {
  font-size: 0.95rem !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.btn-empty-shop span {
  color: #ffffff !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.empty-wishlist-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.12);
}

.empty-wishlist-icon-wrap i {
  color: #e11d48 !important;
  font-size: 1.95rem !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Wishlist Drawer Styles */
.wishlist-drawer .cart-header-title-wrap i {
  color: #ef4444 !important;
}

.wishlist-item-brand {
  font-size: 0.68rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.btn-wishlist-add-cart {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.15s ease;
}

.btn-wishlist-add-cart:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Cart Drawer Footer */
.cart-drawer-footer {
  padding: 18px 22px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.subtotal-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-subtotal-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

.cart-tax-notice {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.btn-cart-checkout {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  border: 1px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
  transition: all 0.25s ease;
}

.btn-cart-checkout:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.55);
}

/* ==========================================================================
   12. SHOP CATALOG & BREADCRUMB BAR (Clean & Minimal Modern)
   ========================================================================== */
.shop-breadcrumbs-bar {
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  padding: 22px 0 20px;
}

.shop-breadcrumbs-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-breadcrumbs {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.shop-breadcrumbs a:hover {
  color: #2563eb;
}

.shop-breadcrumbs .bc-sep {
  color: #cbd5e1;
}

.shop-breadcrumbs .bc-current {
  color: #0f172a;
  font-weight: 700;
}

.shop-page-title-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.shop-page-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.shop-item-counter {
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748b;
}

.shop-item-counter span {
  color: #2563eb;
  font-weight: 800;
}

/* Shop Main Grid Layout */
.shop-catalog-section {
  padding: 36px 0 60px;
  background: #f8fafc;
  flex: 1;
}

.shop-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar Filter Box */
.shop-sidebar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  position: sticky;
  top: 85px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
  margin-bottom: 18px;
}

.sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.btn-reset-filters {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.btn-reset-filters:hover {
  opacity: 0.8;
}

.filter-box {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.filter-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-search-wrap {
  position: relative;
}

.sidebar-search-input {
  width: 100%;
  padding: 8px 34px 8px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition-fast);
  background: #f8fafc;
}

.sidebar-search-input:focus {
  border-color: #2563eb;
  background: #ffffff;
}

.sidebar-search-wrap i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Radio & Checkbox Filters */
.sidebar-category-list, .sidebar-brand-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-radio-item, .sidebar-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  transition: color var(--transition-fast);
  line-height: 1.3;
}

.sidebar-radio-item:hover, .sidebar-checkbox-item:hover {
  color: #2563eb;
}

.sidebar-radio-item input, .sidebar-checkbox-item input {
  accent-color: #2563eb;
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  display: block;
}

.custom-radio, .custom-checkbox {
  display: none;
}

.radio-label, .checkbox-label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
  color: inherit;
}

.cat-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 700;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Price Range Slider */
.price-val-highlight {
  color: #2563eb;
  font-weight: 900;
}

.price-slider-input {
  width: 100%;
  accent-color: #2563eb;
  cursor: pointer;
  margin: 8px 0;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 700;
}

/* Sidebar Support Card */
.sidebar-doctor-card {
  background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.25);
  margin-top: 10px;
}

.doctor-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto 10px;
}

.sidebar-doctor-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.sidebar-doctor-card p {
  font-size: 0.74rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 12px;
}

.btn-sidebar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #2563eb;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transition: background 0.2s;
}

.btn-sidebar-call:hover {
  background: #1d4ed8;
}

/* Toolbar Controls */
.shop-toolbar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.toolbar-left {
  min-width: 0;
}

.catalog-result-count {
  font-size: 0.84rem;
  color: #475569;
  white-space: nowrap;
}

.active-filter-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.filter-tag {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filter-tag i {
  cursor: pointer;
  font-size: 0.7rem;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

.sort-select-wrap label {
  white-space: nowrap;
}

.shop-sort-select {
  padding: 6px 28px 6px 12px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e293b;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.shop-sort-select:focus,
.shop-sort-select:hover {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.shop-sort-select option {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e293b;
  background: #ffffff;
  padding: 8px 10px;
}

.layout-toggle-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.layout-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
}

.layout-btn:hover {
  border-color: #cbd5e1;
  color: #0f172a;
}

.layout-btn.is-active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Products Grid in Shop */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* List View Mode (Modern High-End E-Commerce Row) */
.shop-products-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card.list-card-modern {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  align-items: center;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  height: auto;
  min-height: 160px;
}

.product-card.list-card-modern:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 25px -4px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

/* Thumbnail */
.list-card-media {
  width: 170px;
  height: 130px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.list-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.product-card.list-card-modern:hover .list-card-media img {
  transform: scale(1.05);
}

/* Center Details */
.list-card-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.list-card-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-brand-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #eff6ff;
  padding: 2px 8px;
  border-radius: 4px;
}

.list-rating-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
}

.list-rating-wrap .rating-stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
  font-size: 0.72rem;
}

.list-rating-wrap .rating-val {
  font-weight: 700;
  color: #0f172a;
}

.list-rating-wrap .rating-count {
  color: #94a3b8;
  font-weight: 500;
}

.list-product-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  cursor: pointer;
  transition: color var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-product-title:hover {
  color: #2563eb;
}

.list-specs-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.list-spec-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.list-desc-text {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

/* Right Actions Panel */
.list-card-actions {
  border-left: 1px solid #f1f5f9;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.list-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.list-current-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1;
}

.list-old-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.list-stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.btn-list-cart-action {
  width: 100%;
  padding: 9px 16px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-list-cart-action:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.list-util-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: flex-end;
}

.btn-list-util {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-list-util:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.btn-list-util-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: transparent;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-list-util-icon:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

@media (max-width: 860px) {
  .shop-products-grid.list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .product-card.list-card-modern {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    gap: 14px !important;
    padding: 12px 14px !important;
    text-align: left !important;
    align-items: center !important;
    min-height: auto !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
  }

  .list-card-media {
    width: 110px !important;
    height: 100px !important;
    padding: 6px !important;
    border-radius: 8px !important;
  }

  .list-card-details {
    gap: 4px !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .list-card-top-row {
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .list-brand-badge {
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
  }

  .list-rating-wrap {
    font-size: 0.7rem !important;
  }

  .list-product-title {
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-align: left !important;
    margin: 1px 0 !important;
  }

  .list-specs-row {
    justify-content: flex-start !important;
    gap: 4px !important;
  }

  .list-spec-pill {
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
  }

  .list-desc-text {
    display: none !important;
  }

  .list-card-actions {
    grid-column: 1 / -1 !important;
    border-left: none !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-left: 0 !important;
    padding-top: 10px !important;
    margin-top: 6px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .list-price-block {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
  }

  .list-current-price {
    font-size: 1.15rem !important;
  }

  .list-old-price {
    font-size: 0.74rem !important;
  }

  .list-stock-pill {
    display: none !important;
  }

  .btn-list-cart-action {
    width: auto !important;
    padding: 7px 16px !important;
    font-size: 0.78rem !important;
    border-radius: 9999px !important;
  }

  .list-util-actions {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .product-card.list-card-modern {
    grid-template-columns: 90px 1fr !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  .list-card-media {
    width: 90px !important;
    height: 85px !important;
    padding: 4px !important;
  }

  .list-product-title {
    font-size: 0.82rem !important;
  }

  .list-current-price {
    font-size: 1.02rem !important;
  }

  .btn-list-cart-action {
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
  }
}

/* Shop Pagination */
.shop-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.shop-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: #2563eb;
  color: #2563eb;
}

.page-btn.is-active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Responsive Rules for Shop Page */
@media (max-width: 1100px) and (min-width: 769px) {
  .shop-layout-grid {
    display: grid !important;
    grid-template-columns: 235px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .shop-main-content {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .shop-sidebar {
    display: block !important;
    position: sticky !important;
    top: 85px !important;
    padding: 14px 12px !important;
    border-radius: 14px !important;
    min-width: 0 !important;
  }

  .shop-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hide Result Counter on Tablet & Smaller Screens */
  .toolbar-left,
  .catalog-result-count {
    display: none !important;
  }

  .toolbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .sort-select-wrap {
    font-size: 0.8rem !important;
    gap: 6px !important;
    display: flex !important;
    align-items: center !important;
  }

  .sort-select-wrap label {
    white-space: nowrap !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #475569 !important;
  }

  .shop-sort-select {
    padding: 5px 24px 5px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    height: 32px !important;
    background-position: right 8px center !important;
  }

  .layout-toggle-group {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
  }

  .layout-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.78rem !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .shop-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 12px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .product-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .filter-box {
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }

  .sidebar-header {
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }

  .sidebar-header h3 {
    font-size: 0.9rem !important;
  }

  .filter-label {
    font-size: 0.76rem !important;
    margin-bottom: 8px !important;
  }

  .sidebar-radio-item,
  .sidebar-checkbox-item {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 768px) {
  /* Hide Filter Catalog Sidebar on Mobile */
  .shop-sidebar {
    display: none !important;
  }

  .shop-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .shop-catalog-section {
    padding: 16px 0 45px !important;
  }

  .shop-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hide Result Counter on Mobile */
  .toolbar-left,
  .catalog-result-count {
    display: none !important;
  }

  .toolbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .sort-select-wrap {
    font-size: 0.76rem !important;
    gap: 5px !important;
  }

  .sort-select-wrap label {
    font-size: 0.76rem !important;
  }

  .shop-sort-select {
    padding: 4px 8px !important;
    font-size: 0.76rem !important;
    height: 30px !important;
  }

  .layout-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.74rem !important;
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
  }
}

@media (max-width: 480px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px !important;
  }

  .shop-catalog-section {
    padding: 12px 0 35px !important;
  }

  .shop-page-title {
    font-size: 1.35rem;
  }

  .shop-toolbar {
    padding: 8px 10px !important;
  }

  .toolbar-left,
  .catalog-result-count {
    display: none !important;
  }

  .toolbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 6px !important;
  }

  .sort-select-wrap label {
    display: none !important;
  }

  .shop-sort-select {
    padding: 3px 6px !important;
    font-size: 0.74rem !important;
    height: 28px !important;
  }

  .layout-btn {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.7rem !important;
  }
}

/* Quick Categories Filter Bar */
.shop-quick-categories-bar {
  padding: 12px 0 14px;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.quick-cat-chips-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-cat-chips-scroll::-webkit-scrollbar {
  display: none;
}

.quick-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-family: var(--font-heading);
}

.quick-cat-chip:hover {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.quick-cat-chip.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.quick-cat-chip.is-active i {
  color: #38bdf8;
}

.quick-cat-chip .chip-count {
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 9999px;
  transition: all 0.15s;
}

.quick-cat-chip.is-active .chip-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* DoctorCare Quality Standard Strip */
.shop-trust-strip-section {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shop-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-card-info h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-card-info p {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 1024px) {
  .shop-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shop-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. SINGLE PRODUCT PAGE STYLES (product.php)
   ========================================================================== */
.product-breadcrumbs-bar {
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  padding: 16px 0;
}

.single-product-section {
  padding: 36px 0 60px;
  background: #ffffff;
}

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* Left: Gallery Column */
.product-gallery-column {
  position: sticky;
  top: 90px;
}

.main-gallery-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.main-image-viewport {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-viewport img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-gallery-card:hover .main-image-viewport img {
  transform: scale(1.03);
}

.gallery-thumbnails-strip {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.gallery-thumb-item {
  width: 74px;
  height: 74px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.gallery-thumb-item.is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.gallery-thumb-item:hover:not(.is-active) {
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.gallery-thumb-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.product-media-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.media-trust-item {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: border-color 0.2s ease;
}

.media-trust-item:hover {
  border-color: #cbd5e1;
}

.trust-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.trust-text-box strong {
  display: block;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-text-box span {
  display: block;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Right: Info Column */
.product-info-column {
  display: flex;
  flex-direction: column;
}

.product-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.product-brand-chip {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-sku-tag {
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
}

.single-product-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  word-break: break-word;
}

.single-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.single-rating-row .rating-stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
}

.single-rating-row .rating-score {
  font-weight: 800;
  color: #0f172a;
}

.single-rating-row .rating-review-link {
  color: #64748b;
}

.single-price-box {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 18px;
}

.price-main-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.single-current-price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1;
}

.single-old-price {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.single-save-badge {
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 3px 9px;
  border-radius: 9999px;
}

.single-tax-note {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 6px;
}

.single-stock-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #475569;
  margin-bottom: 16px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.stock-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.stock-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

.single-product-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 18px;
}

.single-features-list {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 8px;
}

.single-features-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: #334155;
}

.single-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.single-features-list li i {
  color: #2563eb;
  margin-top: 3px;
  font-size: 0.76rem;
}

.product-variant-group {
  margin-bottom: 20px;
}

.variant-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #334155;
  display: block;
  margin-bottom: 8px;
}

.variant-options-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.variant-btn span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
}

.variant-btn small {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
}

.variant-btn.is-active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 1px #2563eb;
}

.single-purchase-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.qty-selector-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  height: 44px;
  padding: 4px;
  gap: 2px;
  user-select: none;
}

.qty-selector-wrap .qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.qty-selector-wrap .qty-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.qty-selector-wrap input {
  width: 38px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
  border: none;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-selector-wrap input::-webkit-outer-spin-button,
.qty-selector-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-single-add-cart {
  flex: 1;
  height: 44px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-single-add-cart:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-single-buy-now {
  height: 44px;
  padding: 0 20px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-single-buy-now:hover {
  background: #1e293b;
}

.single-secondary-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f7;
  margin-bottom: 18px;
  font-size: 0.78rem;
}

.btn-sec-action {
  color: #64748b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.15s;
}

.btn-sec-action:hover {
  color: #2563eb;
}

.single-doctor-callout {
  background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.single-doctor-callout .callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.single-doctor-callout strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
}

.single-doctor-callout p {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0;
}

.callout-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

/* Tabs Section */
.product-tabs-section {
  padding: 40px 0 50px;
  background: #f8fafc;
  border-top: 1px solid #edf2f7;
  width: 100%;
  overflow-x: hidden;
}

.tabs-container-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
  width: 100%;
  box-sizing: border-box;
}

.product-tabs-nav {
  display: flex;
  border-bottom: 1px solid #edf2f7;
  background: #f8fafc;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-nav-btn {
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: #64748b;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tab-nav-btn.is-active {
  color: #2563eb;
  background: #ffffff;
  border-bottom-color: #2563eb;
}

.tab-content-panel {
  display: none;
  padding: 28px 24px;
  width: 100%;
  box-sizing: border-box;
}

.tab-content-panel.is-active {
  display: block;
  animation: fadeIn 0.25s ease;
}

.tab-panel-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  word-break: break-word;
  line-height: 1.3;
}

.tab-panel-intro {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 18px;
  line-height: 1.5;
}

.specs-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.specs-table th {
  text-align: left;
  padding: 12px 18px;
  width: 200px;
  font-weight: 800;
  color: #334155;
  border-bottom: 1px solid #edf2f7;
  background: #f1f5f9;
}

.specs-table td {
  padding: 12px 18px;
  color: #475569;
  border-bottom: 1px solid #edf2f7;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-card {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cert-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.cert-info h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.cert-info p {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Reviews Tab */
.reviews-tab-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.reviews-score-summary {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.big-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.score-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.reviews-score-summary p {
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 12px;
}

.score-recommend-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.reviews-sample-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sample-review-item {
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.rev-header strong {
  font-size: 0.84rem;
  color: #0f172a;
}

.rev-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
}

.rev-date {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-left: auto;
}

.rev-stars {
  color: #f59e0b;
  font-size: 0.7rem;
  margin-bottom: 6px;
  display: flex;
  gap: 2px;
}

.sample-review-item p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.45;
}

/* Shipping Tab */
.shipping-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.policy-box {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 20px;
}

.policy-box h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-box h4 i {
  color: #2563eb;
}

.policy-box p {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.5;
}

/* Related Products */
.related-products-section {
  padding: 50px 0 70px;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive Rules for Single Product Page */
@media (max-width: 1024px) {
  .single-product-section {
    padding: 24px 0 45px;
  }

  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    min-width: 0;
  }

  .product-gallery-column {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .main-gallery-card {
    min-height: 320px;
    padding: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .main-image-viewport {
    height: 280px;
  }

  .certification-grid,
  .shipping-policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 12px;
  }

  .reviews-tab-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-breadcrumbs-bar {
    padding: 10px 0;
  }

  .shop-breadcrumbs {
    font-size: 0.72rem;
    gap: 5px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .single-product-section {
    padding: 16px 0 35px;
  }

  .single-product-layout {
    gap: 22px;
  }

  .main-gallery-card {
    min-height: auto;
    padding: 12px;
    border-radius: 12px;
  }

  .main-image-viewport {
    height: 230px;
  }

  .gallery-thumbnails-strip {
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-start;
  }

  .gallery-thumb-item {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    padding: 4px;
  }

  .product-media-trust-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 12px;
  }

  .media-trust-item {
    padding: 8px 4px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    border-radius: 8px;
  }

  .trust-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.76rem;
    margin: 0 auto;
  }

  .trust-text-box strong {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .trust-text-box span {
    font-size: 0.58rem;
  }

  .single-product-title {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .single-price-box {
    padding: 12px 14px;
    margin-bottom: 14px;
  }

  .single-current-price {
    font-size: 1.6rem;
  }

  .single-old-price {
    font-size: 0.95rem;
  }

  .single-save-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  .single-stock-status {
    font-size: 0.74rem;
    margin-bottom: 12px;
  }

  .single-product-desc {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .single-features-list {
    padding: 10px 14px;
    margin-bottom: 14px;
  }

  .single-purchase-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .qty-selector-wrap {
    height: 40px;
  }

  .qty-selector-wrap .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .btn-single-add-cart {
    height: 40px;
    font-size: 0.8rem;
  }

  .btn-single-buy-now {
    grid-column: 1 / -1;
    height: 40px;
    font-size: 0.82rem;
    width: 100%;
  }

  .single-secondary-actions {
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-size: 0.74rem;
  }

  .single-doctor-callout {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .single-doctor-callout .callout-btn {
    width: 100%;
    text-align: center;
    padding: 6px 12px;
    font-size: 0.74rem;
  }

  .product-tabs-section {
    padding: 20px 0 35px;
  }

  .tabs-container-card {
    border-radius: 12px;
  }

  .tab-nav-btn {
    padding: 10px 14px;
    font-size: 0.76rem;
    gap: 6px;
  }

  .tab-content-panel {
    padding: 16px 12px !important;
  }

  .tab-panel-title {
    font-size: 0.98rem !important;
    margin-bottom: 6px !important;
  }

  .tab-panel-intro {
    font-size: 0.76rem !important;
    margin-bottom: 14px !important;
  }

  .specs-table-wrap {
    border-radius: 8px !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .specs-table {
    width: 100% !important;
  }

  .specs-table th {
    width: 95px !important;
    min-width: 85px !important;
    max-width: 105px !important;
    padding: 10px 10px !important;
    font-size: 0.74rem !important;
    vertical-align: top !important;
    white-space: normal !important;
  }

  .specs-table td {
    padding: 10px 12px !important;
    font-size: 0.74rem !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
    width: auto !important;
  }

  .certification-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .cert-card {
    padding: 14px !important;
    border-radius: 12px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .cert-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
  }

  .cert-info {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .cert-info h4 {
    font-size: 0.84rem !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .cert-info p {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
    color: #64748b !important;
    margin: 0 !important;
  }

  .shipping-policy-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px !important;
  }
}

@media (max-width: 480px) {
  .main-image-viewport {
    height: 200px;
  }

  .single-product-title {
    font-size: 1.15rem;
  }

  .single-current-price {
    font-size: 1.45rem;
  }

  .media-trust-item {
    padding: 6px 2px;
  }

  .trust-text-box strong {
    font-size: 0.62rem;
  }

  .trust-text-box span {
    font-size: 0.54rem;
  }
}

/* ==========================================================================
   14. CONTACT US & SUPPORT PAGE STYLES (contact.php)
   ========================================================================== */
.contact-page-section {
  padding: 40px 0 50px;
  background: #f8fafc;
}

.contact-page-header {
  margin-bottom: 28px;
}

.contact-main-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.contact-main-sub {
  font-size: 0.92rem;
  color: #64748b;
}

/* Two Column Layout */
.contact-two-col-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Form Panel */
.contact-form-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.panel-subtitle {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.45;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.field-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 0.84rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: var(--font-body);
}

.field-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
  appearance: none;
}

.field-textarea {
  height: 95px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.45;
}

.form-bottom-action {
  margin-top: 4px;
}

.btn-primary-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary-send:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Right Column - Info Panel */
.support-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.support-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.live-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

.support-intro-text {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.support-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.support-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.detail-text p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.detail-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.detail-text a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

.support-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-support-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-support-call:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.btn-support-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #16a34a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-support-wa:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* Location Map Section */
.contact-map-section {
  padding: 0 0 50px;
  background: #f8fafc;
  width: 100%;
}

.map-card-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  width: 100%;
  box-sizing: border-box;
}

.map-card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
  flex-wrap: wrap;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-header-left i {
  font-size: 1.25rem;
  color: #2563eb;
  flex-shrink: 0;
}

.map-header-left h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}

.map-header-left span {
  font-size: 0.76rem;
  color: #64748b;
}

.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 6px 12px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.map-directions-link:hover {
  background: #dbeafe;
  transform: translateY(-1px);
}

.map-frame-wrap {
  height: 320px;
  width: 100%;
}

.map-iframe-clean {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Clean Section */
.contact-faq-clean-section {
  padding: 50px 0 70px;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.faq-clean-header {
  margin-bottom: 36px;
}

.faq-clean-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.faq-clean-sub {
  font-size: 0.88rem;
  color: #64748b;
}

.faq-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-clean-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 24px;
}

.faq-clean-card h4 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.faq-clean-card p {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-two-col-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-main-heading {
    font-size: 1.5rem !important;
  }
  .contact-main-sub {
    font-size: 0.82rem !important;
  }
  .form-grid-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .contact-form-panel {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }
  .support-info-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .support-card-header {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
  }
  .support-card-header .panel-title {
    font-size: 1.15rem !important;
  }
  .live-open-badge {
    font-size: 0.68rem !important;
    padding: 2px 8px !important;
  }
  .support-intro-text {
    font-size: 0.78rem !important;
    margin-bottom: 16px !important;
  }
  .support-details-list {
    gap: 14px !important;
    margin-bottom: 18px !important;
  }
  .support-detail-item {
    gap: 12px !important;
  }
  .detail-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.86rem !important;
    border-radius: 8px !important;
  }
  .detail-text strong {
    font-size: 0.8rem !important;
  }
  .detail-text p {
    font-size: 0.76rem !important;
  }
  .support-quick-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .btn-support-call,
  .btn-support-wa {
    padding: 9px 8px !important;
    font-size: 0.74rem !important;
    gap: 6px !important;
  }
  .btn-primary-send {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 16px !important;
  }
  .contact-map-section {
    padding: 0 0 30px !important;
  }
  .map-card-container {
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .map-card-header {
    padding: 12px 14px !important;
    gap: 8px !important;
  }
  .map-header-left {
    gap: 8px !important;
  }
  .map-header-left h3 {
    font-size: 0.88rem !important;
  }
  .map-header-left span {
    font-size: 0.7rem !important;
  }
  .map-directions-link {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }
  .map-frame-wrap {
    height: 230px !important;
  }
  .faq-clean-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   15. MOBILE & TABLET BOTTOM APP BAR (Cart, Wishlist, Shop, Support)
   ========================================================================== */
.mobile-bottom-appbar {
  display: none;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .mobile-bottom-appbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
  }

  .appbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: none;
    color: #64748b;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .appbar-item:active {
    transform: scale(0.94);
  }

  .appbar-item.is-active,
  .appbar-item:hover {
    color: #2563eb;
  }

  .appbar-icon {
    position: relative;
    font-size: 1.15rem;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .appbar-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
    border: 1.5px solid #ffffff;
  }

  .appbar-label {
    line-height: 1;
    letter-spacing: 0.2px;
  }
}

@media (max-width: 480px) {
  .mobile-bottom-appbar {
    height: 56px;
  }

  .appbar-icon {
    font-size: 1.05rem;
    height: 20px;
  }

  .appbar-label {
    font-size: 0.64rem;
  }
}

/* ==========================================================================
   15. CHECKOUT PAGE DESIGN SYSTEM & RESPONSIVE LAYOUT
   ========================================================================== */
.checkout-page-section {
  padding: 36px 0 80px;
  background-color: var(--bg-body);
  min-height: calc(100vh - 200px);
}

.checkout-header-bar {
  margin-bottom: 28px;
}

.checkout-progress-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.stepper-step.is-active {
  color: var(--primary);
  font-weight: 700;
}

.stepper-step.is-done {
  color: var(--success);
}

.stepper-num {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.stepper-step.is-active .stepper-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 12px var(--primary-glow);
}

.stepper-step.is-done .stepper-num {
  background: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

.stepper-line {
  width: 32px;
  height: 2px;
  background: var(--border-light);
}

.stepper-step.is-done + .stepper-line {
  background: var(--success);
}

/* Checkout Main Grid */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 32px;
  align-items: start;
}

.checkout-form-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.checkout-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-step-badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.checkout-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form Fields */
.checkout-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.chk-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chk-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chk-label-req {
  color: var(--danger);
  font-weight: 800;
}

.chk-label-opt {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.chk-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.chk-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition-fast);
}

.chk-input {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  outline: none;
}

.chk-input-with-icon {
  padding-left: 40px;
}

.chk-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.chk-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}

.chk-textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
  padding: 12px 14px;
}

/* Address Type Selector */
.address-type-group {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.addr-type-btn {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.addr-type-btn.is-active,
.addr-type-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Shipping Option Radio Card */
.shipping-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.shipping-option-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shipping-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

.shipping-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.shipping-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.shipping-badge {
  background: var(--success);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

/* Online Payment Alert Notice (NO COD) */
.payment-online-only-banner {
  background: linear-gradient(135deg, #0a1124 0%, #172554 100%);
  color: #ffffff;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.online-banner-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.online-banner-text h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.online-banner-text h4 .no-cod-tag {
  background: var(--danger);
  color: #ffffff;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  font-weight: 800;
}

.online-banner-text p {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Payment Method Tabs */
.payment-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.pay-tab-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  text-align: center;
}

.pay-tab-btn i {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.pay-tab-btn.is-active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.pay-tab-btn.is-active i {
  color: var(--primary);
}

.pay-tab-btn:hover:not(.is-active) {
  border-color: #cbd5e1;
  background: var(--bg-card-hover);
}

.pay-tab-content-panel {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  animation: fadeIn 0.2s ease-in-out;
}

.pay-tab-content-panel.is-active {
  display: block;
}

/* UPI Payment Panel */
.upi-apps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.upi-app-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.upi-app-chip:hover,
.upi-app-chip.is-selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.upi-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.upi-or-divider::before,
.upi-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.upi-qr-card {
  background: #ffffff;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.qr-code-box {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-code-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-details h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.qr-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.qr-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--warning);
  background: #fffbeb;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

/* Card Payment Panel */
.card-logos-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.card-logo-badge {
  padding: 4px 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* NetBanking Quick Bank Pills */
.bank-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.bank-pill-btn {
  padding: 10px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bank-pill-btn.is-active,
.bank-pill-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* Sticky Order Summary Column */
.checkout-summary-column {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.summary-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.summary-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.summary-count-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* Summary Items List */
.summary-items-scroll {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-light);
}

.summary-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.summary-item-info {
  flex: 1;
  min-width: 0;
}

.summary-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.summary-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.summary-item-price {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-main);
  white-space: nowrap;
}

/* Coupon Box */
.summary-coupon-form {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.summary-coupon-input {
  flex: 1;
  height: 40px;
  padding: 8px 12px;
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

.summary-coupon-input:focus {
  border-color: var(--primary);
  border-style: solid;
}

.summary-coupon-btn {
  padding: 0 16px;
  background: var(--dark-navy-900);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.summary-coupon-btn:hover {
  background: var(--primary);
}

.coupon-success-pill {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Calculation Rows */
.summary-calc-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
  font-size: 0.85rem;
}

.summary-calc-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.summary-calc-row.discount-row {
  color: var(--success);
  font-weight: 700;
}

.summary-calc-row.free-badge {
  color: var(--success);
  font-weight: 700;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-bottom: 20px;
}

.summary-total-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.summary-total-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

/* Submit Pay Button */
.btn-pay-now {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--primary-glow);
  transition: var(--transition-normal);
}

.btn-pay-now:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-pay-now:active {
  transform: translateY(0);
}

/* Security Trust Badges Grid */
.checkout-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.chk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chk-trust-item i {
  color: var(--success);
  font-size: 0.9rem;
}

/* Order Success Receipt Modal */
.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 17, 36, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.order-success-modal.is-active {
  display: flex;
}

.order-success-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  text-align: center;
  position: relative;
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: var(--success);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 6px;
}

.success-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.receipt-info-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
  margin-bottom: 24px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-row strong {
  color: var(--text-main);
}

.receipt-row.grand-total-row {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  border-top: 1.5px solid var(--border-light);
  padding-top: 10px;
  margin-top: 4px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-receipt-print {
  padding: 12px 20px;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.btn-receipt-home {
  padding: 12px 24px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Empty State on Checkout */
.checkout-empty-wrap {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.empty-checkout-icon {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

/* Responsive Media Queries for Checkout */
@media (max-width: 992px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary-column {
    position: static;
    order: -1; /* Shows summary on top for easy review on mobile/tablet */
  }

  .payment-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .form-grid-2col,
  .form-grid-3col {
    grid-template-columns: 1fr;
  }

  .bank-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-card {
    padding: 18px;
  }

  .summary-card {
    padding: 18px;
  }

  .stepper-line {
    display: none;
  }
}

/* Footer Utility Classes */
.footer-logo-icon {
  width: 38px;
  height: 38px;
}

.footer-heading-link {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   LEGAL PAGES DESIGN SYSTEM (Privacy Policy & Terms & Conditions)
   ========================================================================== */
.legal-page-section {
  padding: 35px 0 70px;
  background: #f8fafc;
  min-height: calc(100vh - 250px);
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 90px;
}

.legal-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.legal-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.legal-sidebar-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.legal-last-updated {
  font-size: 0.76rem;
  color: #64748b;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.legal-toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}

.legal-toc-link i {
  font-size: 0.65rem;
  color: #94a3b8;
  transition: transform 0.15s ease;
}

.legal-toc-link:hover {
  background: #eff6ff;
  color: #2563eb;
  padding-left: 12px;
}

.legal-toc-link:hover i {
  color: #2563eb;
  transform: translateX(2px);
}

.legal-sidebar-contact {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
}

.legal-sidebar-contact h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.legal-sidebar-contact p {
  font-size: 0.74rem;
  color: #64748b;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.legal-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.legal-contact-btn:hover {
  text-decoration: underline;
}

/* Legal Content Panel */
.legal-content-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-header-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.legal-main-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.legal-intro-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.legal-sections-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-section-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  scroll-margin-top: 100px;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-section-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.legal-section-body {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 12px 0;
}

.legal-section-body:last-child {
  margin-bottom: 0;
}

.legal-points-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.5;
}

.legal-points-list li i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.legal-compliance-footer {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.compliance-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.78rem;
  color: #64748b;
}

.compliance-details strong {
  color: #0f172a;
  font-size: 0.88rem;
}

.compliance-details address {
  font-style: normal;
}

.btn-legal-contact {
  background: #2563eb;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.btn-legal-contact:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-compliance-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

