:root {
  --ink: #1e293b;
  --ink-soft: #475569;
  --slate: #64748b;
  --mid: #94a3b8;
  --border: #e2eaf4;
  --surface: #f1f7fd;
  --white: #ffffff;
  --accent-color: var(--accent);
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-soft: #e0f2fe;
  --orange: #24a832;
  --orange-soft: #d1fae5;
  --green: #10b981;
  --green-soft: #d1fae5;
  --sky: #38bdf8;
  --sky-soft: #e0f5ff;
  --yellow: #f59e0b;
  --yellow-soft: #fef3c7;

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Global select element styling */
select {
  accent-color: var(--accent);
  color-scheme: light;
}

select option:hover,
select option:focus,
select option:active,
select option:checked {
  background-color: var(--accent) !important;
  background: var(--accent) !important;
  color: white !important;
}

/* Fix for some browsers to show orange instead of blue highlight */
select:focus > option:checked {
  background: var(--accent) linear-gradient(0deg, var(--accent) 0%, var(--accent) 100%) !important;
  color: white !important;
}

/* ── MOBILE NAV TOGGLE ── */
.search-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-icon-link {
  color: var(--ink);
  padding: 4px;
  display: flex;
  align-items: center;
}

.nav-icon-link svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── RESPONSIVE NAVBAR ── */
.desktop-only-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .nav-inner {
    height: 56px;
    padding: 0 12px;
    gap: 8px;
  }

  .nav-inner .nav-search {
    display: none !important;
  }

  .desktop-only-flex {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .nav-links a span {
    display: none !important;
  }

  .nav-link svg {
    width: 20px;
    height: 20px;
    color: var(--ink);
  }

  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
    top: -4px;
    right: -4px;
  }

  /* Mobile Search Bar Style (Expandable) */
  .mobile-search-expand {
    display: none;
    background: white;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .mobile-search-expand.active {
    display: block;
  }

  .mobile-search-expand .nav-search {
    display: flex;
    max-width: 100%;
    margin: 0;
    background: var(--surface);
    border-radius: 8px;
    padding: 4px;
  }

  .mobile-search-expand .search-input-wrapper {
    position: relative;
    flex: 1;
  }

  .mobile-search-expand .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .mobile-search-expand input {
    height: 36px;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 0 12px;
  }

  .mobile-search-expand input:focus {
    box-shadow: none;
  }

  .mobileSearchBtn {
    background: var(--accent);
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobileSearchBtn svg {
    width: 18px;
    height: 18px;
    stroke: white;
  }

  /* Mobile Menu Style (Expandable) */
  .mobile-menu-expand {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 24px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
  }

  .mobile-menu-expand.active {
    display: block;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-cat-dropdown {
    display: block !important;
  }

  .mobile-cat-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-cat-list {
    display: none;
    flex-direction: column;
    padding: 8px 16px 0;
    gap: 12px;
  }

  .mobile-cat-list.active {
    display: flex;
  }

  .mobile-cat-list a {
    font-size: 14px;
    color: var(--slate);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
  }

  .mobile-auth-btns {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .mobile-auth-btns a {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }

  .mobile-btn-login {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
  }

  .mobile-btn-signup {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
  }

  .mobile-btn-profile {
    background: var(--ink);
    color: var(--ink);
  }

  .mobile-btn-logout {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
  }
}

/* Hide old WhatsApp CTA buttons as we have a new floating icon */
.wa-cta,
.wa-float {
  display: none !important;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .whatsapp-fab {
    display: flex;
  }
}

/* Hide mobile-only containers on desktop */
@media (min-width: 993px) {

  .mobile-search-expand,
  .mobile-menu-expand,
  .mobile-cat-dropdown {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .nav-inner {
    padding: 10px 12px;
  }

  .nav-search .category-dropdown {
    display: none;
  }

  .nav-search input {
    border-left: 1.5px solid var(--border);
    border-radius: 8px 0 0 8px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ── ADDITIONAL GLOBAL RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 40px 24px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-right {
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .view-all {
    align-self: flex-start;
  }

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

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

  .wholesale-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .wholesale-tiers {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .nav-inner {
    padding: 10px;
  }

  .logo {
    font-size: 18px;
  }

  /* Hide laptop parts image in mobile view */
  .hero-right {
    display: none !important;
  }

  /* Center hero grid and content in mobile view */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-ctas {
    justify-content: center !important;
  }
}

/* Mobile centering for larger mobile devices */
@media (max-width: 768px) {
  /* Hide laptop parts image in mobile view */
  .hero-right {
    display: none !important;
  }

  /* Center hero grid and content in mobile view */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-ctas {
    justify-content: center !important;
  }
}

/* ── GLOBAL STYLES ── */
.topbar {
  background: #f8f9fa;
  color: #6c757d;
  font-size: 12.5px;
  font-family: var(--font-mono);
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e9ecef;
}

.topbar strong {
  color: #007bff;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-links {
  display: flex;
  gap: 20px;
}

.topbar-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-links a:hover {
  color: #333;
}

/* ── NAVBAR ── */
nav {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 55%, #10b981 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}

.nav-inner .nav-search {
  flex: 1;
  max-width: 580px;
  min-width: 0;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  overflow: visible;
  background: rgba(255,255,255,0.1);
  transition: border-color 0.2s, background 0.2s;
}

.nav-inner .nav-search:focus-within {
  border-color: #24a832;
  background: rgba(255,255,255,0.15);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: #24a832;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(36, 168, 50, 0.4);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.logo span {
  color: #38bdf8;
}

.nav-search {
  flex: 1;
  max-width: 580px;
  min-width: 0;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  overflow: visible;
  background: rgba(255,255,255,0.1);
  transition: border-color 0.2s, background 0.2s;
}

.nav-search:focus-within {
  border-color: #24a832;
  background: rgba(255,255,255,0.15);
}

/* ── CUSTOM CATEGORY DROPDOWN ── */
.cat-custom-dropdown {
  position: relative;
  min-width: 150px;
  flex-shrink: 0;
  z-index: 1000;
}

.cat-dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 12px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-right: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: #ffffff;
  user-select: none;
  white-space: nowrap;
  font-weight: 500;
}

.cat-dropdown-selected svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: transform 0.2s ease;
}

.cat-dropdown-selected.open svg {
  transform: rotate(180deg);
}

.cat-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 9999;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 0;
}

.cat-dropdown-list.open {
  display: block;
}

.cat-dropdown-list::-webkit-scrollbar {
  width: 4px;
}

.cat-dropdown-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.cat-dropdown-item {
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.cat-dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.cat-dropdown-item.selected {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}


.nav-search .search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

/* ── SEARCH SUGGESTIONS DROPDOWN ── */
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -134px; /* offset to align with full search bar edge */
  right: -44px; /* offset to align with full search bar edge */
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.search-suggestions::-webkit-scrollbar {
  width: 4px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.suggestion-header {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.suggestion-item {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
  border-bottom: 1px solid #f3f4f6;
}

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

.suggestion-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.term-item::before {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--mid);
  flex-shrink: 0;
}

.product-suggestion {
  justify-content: space-between;
}

.product-suggest-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-suggest-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.product-suggestion:hover .product-suggest-name {
  color: var(--accent);
}

.product-suggest-cat {
  font-size: 11.5px;
  color: var(--mid);
}

.product-suggest-price {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-search input {
  width: 100%;
  height: 40px;
  border: none;
  border-left: none;
  border-radius: 0;
  padding: 0 45px 0 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #ffffff;
  background: transparent;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-search input::placeholder {
  color: rgba(255,255,255,0.55);
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  max-height: 450px;
  overflow-y: auto;
  margin-top: 2px;
}

.suggestion-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fcfcfc;
  border-bottom: 1px solid var(--border);
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f8f8f8;
}

.suggestion-item:hover {
  background: var(--surface);
}

.suggestion-item.term-item {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.suggestion-item.term-item::before {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--mid);
}

.product-suggestion {
  justify-content: space-between;
  gap: 16px;
}

.product-suggest-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.product-suggest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-suggest-cat {
  font-size: 11px;
  color: var(--mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-suggest-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-search input:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-search input::placeholder {
  color: rgba(255,255,255,0.55);
}

.nav-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 44px;
  background: #24a832;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.nav-search button:hover {
  background: #1d8f28;
}

.nav-search button svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── ADDITIONAL GLOBAL RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 40px 24px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-right {
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .view-all {
    align-self: flex-start;
  }

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

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

  .wholesale-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .wholesale-tiers {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .nav-inner {
    padding: 10px;
  }

  .logo {
    font-size: 18px;
  }

  /* Hide laptop parts image in mobile view */
  .hero-right {
    display: none !important;
  }

  /* Center hero grid and content in mobile view */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-ctas {
    justify-content: center !important;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  background: var(--surface);
  color: var(--ink);
}

.nav-links a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.cart-badge {
  background: #0ea5e9;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
}

.btn-login {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 7px;
  border: 1px solid var(--accent);
}

.btn-login:hover {
  background: var(--accent-hover) !important;
  color: white !important;
}

/* ── CATEGORY BAR ── */
.catbar {
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 998;
}

@media (max-width: 992px) {
  .catbar {
    top: 56px;
  }
}

.catbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.catbar-inner::-webkit-scrollbar {
  display: none;
}

.catbar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  white-space: nowrap;
  margin-right: 16px;
  padding: 12px 0;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}

@media (max-width: 576px) {
  .catbar-label {
    display: none;
  }

  .catbar-inner {
    padding: 0 12px;
  }
}

.catbar-links {
  display: flex;
  gap: 2px;
}

.catbar-links a {
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.catbar-links a:hover {
  background: var(--border);
  color: var(--ink);
}

.catbar-links a.active {
  background: var(--accent);
  color: white;
}

/* ── HERO ── */
.hero {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
  gap: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, #f8f9fa 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 58px);
  font-weight: 700;
  color: #333;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(14, 165, 233, 0.45);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

/* Center the Explore More button */
.text-center.mt-30 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Specific rule for Explore More button */
.text-center .btn-primary {
  max-width: 150px;
  padding: 10px 20px !important;
}

/* Make Bulk/Wholesale button same styling as Shop Now button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #24a832 0%, #1e8e2a 100%);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(36, 168, 50, 0.35);
  margin-top: 10px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1e8e2a 0%, #187624 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(36, 168, 50, 0.45);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* hero right — brand cards */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 0;
  align-items: center;
  justify-content: center;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--ink);
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(14, 165, 233, 0.4);
}

.brand-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-pill {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}

.brand-logo-pill.dell {
  background: var(--accent);
  color: var(--ink);
}

.brand-logo-pill.hp {
  background: var(--ink);
  color: var(--ink);
}

.brand-logo-pill.lenovo {
  background: #e31d2c;
  color: var(--ink);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.brand-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.brand-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 64px 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.15;
}

.section-desc {
  font-size: 14.5px;
  color: var(--mid);
  margin-top: 6px;
}

.view-all {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.view-all:hover {
  gap: 9px;
}

/* ── CATEGORY SHOWCASE ── */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cat-card {
  flex: 0 0 140px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cat-card:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.cat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--slate);
  fill: none;
}

.cat-card:hover .cat-icon {
  border-color: var(--accent);
}

.cat-card:hover .cat-icon svg {
  stroke: var(--accent);
}

.cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #24a832;
  line-height: 1.3;
}

.cat-count {
  font-size: 11px;
  color: var(--mid);
  font-family: var(--font-mono);
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  justify-content: center;
}

/* ── BEST SELLERS HORIZONTAL SCROLL ── */
.best-sellers-wrapper {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.best-sellers-grid {
  display: flex !important;
  overflow-x: auto !important;
  gap: 20px !important;
  padding: 10px 0 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.best-sellers-grid::-webkit-scrollbar {
  display: none;
}

.best-sellers-grid .product-card {
  flex: 0 0 auto !important;
  width: 250px !important;
  min-width: 250px !important;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: var(--accent-hover);
}

.scroll-btn.left-btn {
  left: 0;
}

.scroll-btn.right-btn {
  right: 0;
}

@media (max-width: 768px) {
  .best-sellers-grid .product-card {
    width: 200px !important;
    min-width: 200px !important;
  }

  .scroll-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 576px) {
  .scroll-btn {
    display: none;
  }
}

.product-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Improved product image styling for clarity */
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  transition: transform 0.3s ease;
  filter: contrast(1.05) brightness(1.02);
}

.product-img img:hover {
  transform: scale(1.05);
}

/* Ensure high quality for retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .product-img img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
  }
}

/* Additional image quality improvements */
.product-img img {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
  .product-img img {
    filter: contrast(1.03) brightness(1.01) saturate(1.1);
  }
}

@media (max-width: 480px) {
  .product-img img:hover {
    transform: scale(1.02);
  }
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--border);
}

.product-img-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
}

.product-img-placeholder span {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--mid);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.badge-new {
  background: var(--green-soft);
  color: var(--green);
}

.badge-used {
  background: var(--yellow-soft);
  color: var(--yellow);
}

.badge-hot {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
}

.product-body {
  padding: 8px;
}

.product-brand {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 4px;
}

.product-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-cat {
  font-size: 12px;
  color: var(--mid);
  background: var(--surface);
  border-radius: 5px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}

.product-price {
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.product-price .currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-right: 1px;
}

.add-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.add-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
}

.add-btn svg {
  width: 15px;
  height: 15px;
  stroke: white;
  fill: none;
}

/* ── PROMO BANNERS ── */
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  cursor: pointer;
  transition: transform 0.2s;
}

.promo-card:hover {
  transform: translateY(-2px);
}

.promo-card.dark {
  background: var(--ink);
}

.promo-card.orange {
  background: var(--accent);
}

.promo-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.promo-card.dark .promo-bg-shape {
  background: white;
}

.promo-card.orange .promo-bg-shape {
  background: white;
}

.promo-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.2s, gap 0.2s;
}

.promo-link:hover {
  opacity: 1;
  gap: 11px;
}

/* ── WHOLESALE SECTION ── */
.wholesale {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.wholesale::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
}

.wholesale-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wholesale-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.wholesale-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.wholesale-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 28px;
}

.wholesale-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tier {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s;
}

.tier:last-child {
  border-bottom: none;
}

.tier:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tier.featured {
  background: rgba(14, 165, 233, 0.12);
  border-left: 3px solid var(--accent);
}

.tier-qty {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.tier-discount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

.tier-tag {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--surface);
  padding: 80px 24px;
  text-align: center;
}

.trust-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.trust-section .section-subtitle {
  font-size: 16px;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── WHY CHOOSE US SECTION ── */
.why-section {
  background: white;
  padding: 80px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-card i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── TESTIMONIALS SECTION ── */
.testimonials-section {
  background: var(--surface);
  padding: 80px 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content .quote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-content .author {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
}

/* ── NEWSLETTER SECTION ── */
#newsletter {
  background: #f8f8f8;
  color: #333333;
  padding: 15px 24px;
  text-align: center;
  position: relative;
  margin-top: 20px;
  border: 1px solid #e0e0e0;
  border-bottom: 2px solid #24a832;
}

#newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #24a832 0%, #38bdf8 50%, #24a832 100%);
}

#newsletter::after {
  display: none;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, #24a832 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4),
    0 0 0 4px rgba(255, 107, 53, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

#newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

#newsletter p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.5;
  color: #666666;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  background: white;
  color: #333333;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.newsletter-form input::placeholder {
  color: #999999;
}

.newsletter-form input:focus {
  border-color: #24a832;
  background: white;
}

.newsletter-form .btn-primary {
  padding: 10px 24px;
  background: #24a832;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.newsletter-form .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── RESPONSIVE FOR SECTIONS ── */
@media (max-width: 768px) {

  .trust-section,
  .why-section,
  .testimonials-section,
  #newsletter {
    padding: 60px 20px;
  }

  .trust-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Keep newsletter form inline on all devices */
  .newsletter-form {
    flex-direction: row;
    gap: 12px;
  }
}

@media (max-width: 480px) {

  .trust-card,
  .why-card,
  .testimonial-card {
    padding: 24px 20px;
  }

  .why-card i {
    font-size: 40px;
  }
}

/* ── TESTIMONIALS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}

.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.review-meta {
  font-size: 12px;
  color: var(--mid);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  height: 40px;
  border: 1.5px solid #e0e0e0;
  border-radius: 9px;
  padding: 0 16px;
  background: white;
  color: #333333;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: #999999;
}

.newsletter-form input:focus {
  border-color: #24a832;
}

.newsletter-form button {
  height: 40px;
  padding: 0 20px;
  background: #24a832;
  color: var(--ink);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}

.newsletter-form button:hover {
  background: #e55a2b;
}

/* ── UTILITY ── */
.section-bg {
  background: var(--surface);
}

.divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 0;
}

/* ── FLOATING CART ── */
.float-cart {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}

.float-cart:hover {
  transform: scale(1.1);
}

.float-cart svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}

.float-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #24a832;
  color: #24a832;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

/* ── FOOTER ── */
footer {
  background: #f8f8f8;
  color: #000000;
  padding: 64px 0 0;
  font-family: var(--font-body);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #24a832;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-info h4,
.social-links h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ── FLOATING CART ── */
.float-cart {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}

.float-cart:hover {
  transform: scale(1.1);
}

.float-cart svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}

.float-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .footer-col h4 {
    margin: 0;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-col h4::after {
    content: '+';
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s;
  }

  .footer-col.active h4::after {
    content: '-';
    transform: rotate(180deg);
  }

  .footer-links,
  .contact-info,
  .business-hours {
    display: none;
    padding-bottom: 20px;
  }

  .footer-col.active .footer-links,
  .footer-col.active .contact-info,
  .footer-col.active .business-hours {
    display: block;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

/* ══════════════════════════════
   PRODUCT CATALOG STYLES - NORMAL TEXT
══════════════════════════════ */

/* ── CATALOG HEADER ── */
.catalog-header {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.catalog-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.catalog-header::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
}

.catalog-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.catalog-eyebrow {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 10px;
}

.catalog-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.catalog-title span {
  color: var(--accent);
}

.catalog-desc {
  font-size: 15px;
  color: var(--slate);
  margin-top: 10px;
  max-width: 600px;
}

.catalog-header-stats {
  display: flex;
  gap: 32px;
}

.ch-stat-num {
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}

.ch-stat-lbl {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
}

/* ── QUICK FILTER CHIPS ── */
.quick-filters {
  background: white;
  border-bottom: 1.5px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.quick-filters-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 0;
}

.quick-filters-inner::-webkit-scrollbar {
  display: none;
}

.qf-label {
  font-size: 11px;
  color: var(--mid);
  white-space: nowrap;
  align-self: center;
  margin-right: 8px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}

.qf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--slate);
  background: white;
  transition: all 0.15s;
  flex-shrink: 0;
}

.qf-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.qf-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.qf-chip .qf-count {
  font-size: 10px;
  opacity: 0.7;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: white;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
}

.breadcrumb a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--ink);
  font-weight: 500;
}

.result-count {
  font-size: 12px;
  color: var(--mid);
}

/* ══════════════════════════════
   ABOUT US PAGE STYLES
══════════════════════════════ */

/* ── HERO SECTION ── */
.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--ink);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}

.about-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.about-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.about-map-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.about-map-placeholder:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
}

.about-map-placeholder i {
  font-size: 48px;
  color: var(--accent);
}

.about-map-placeholder span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* ── JOURNEY SECTION ── */
.journey-section {
  background: var(--surface);
  padding: 80px 24px;
}

.journey-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even)>* {
  direction: ltr;
}

.timeline-year {
  background: var(--accent);
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--mid);
  line-height: 1.6;
}

/* ── MISSION SECTION ── */
.mission-section {
  background: white;
  padding: 80px 24px;
}

.mission-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.mission-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 32px;
}

.mission-points {
  margin-bottom: 40px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.point-item i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.point-item span {
  color: var(--slate);
  line-height: 1.5;
}

.mission-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-align: center;
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sidebar-icon i {
  font-size: 20px;
  color: var(--accent);
}

.sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── TESTIMONIAL SECTION ── */
.testimonial-section {
  background: var(--surface);
  padding: 80px 24px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  border: 1.5px solid var(--border);
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 20px;
  font-style: italic;
}

.author-name {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: var(--mid);
}

/* ── PRINCIPLES SECTION ── */
.principles-section {
  background: white;
  padding: 80px 24px;
}

.principles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.principle-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.principle-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.principle-icon i {
  font-size: 24px;
  color: var(--accent);
}

.principle-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── LOCATION SECTION ── */
.location-section {
  background: var(--surface);
  padding: 80px 24px;
}

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.location-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.location-content>p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--mid);
  line-height: 1.5;
}

.location-map {
  display: flex;
  justify-content: center;
}

.map-container {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--ink);
  color: var(--ink);
  padding: 20px 24px;
  text-align: center;
  position: relative;
  margin-top: 120px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cta-section::after {
  display: none;
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #24a832 100%);
  border-radius: 50%;
  box-shadow: 0 4px 30px rgba(14, 165, 233, 0.5),
    0 0 0 6px rgba(255, 107, 53, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.cta-content p::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── COMMON SECTION STYLES ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

#featured {
  margin-top: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .timeline-item:nth-child(even) {
    direction: ltr;
  }

  .mission-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .about-ctas,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════
   CONTACT US PAGE STYLES
══════════════════════════════ */

/* ── HERO SECTION ── */
.contact-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--ink);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
}

.contact-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-hero-stats>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-hero-stats i {
  font-size: 24px;
  color: var(--accent);
}

.contact-hero-stats span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ── CMS CONTENT SECTION ── */
.cms-content-section {
  background: linear-gradient(135deg, var(--surface) 0%, white 100%);
  padding: 30px 24px;
  position: relative;
}

.cms-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #24a832 50%, var(--accent) 100%);
  border-radius: 2px;
}

.cms-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
}

.cms-content-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--surface);
}

.cms-content-header h1,
.cms-content-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.cms-content-header p {
  font-size: 18px;
  color: var(--mid);
  font-style: italic;
}

.cms-content-body {
  display: grid;
  gap: 32px;
}

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content h5,
.cms-content h6 {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
  position: relative;
  padding-left: 16px;
}

.cms-content h1::before,
.cms-content h2::before,
.cms-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.cms-content h1:first-child,
.cms-content h2:first-child,
.cms-content h3:first-child {
  margin-top: 0;
}

.cms-content h1 {
  font-size: 32px;
}

.cms-content h2 {
  font-size: 28px;
}

.cms-content h3 {
  font-size: 24px;
}

.cms-content h4 {
  font-size: 20px;
}

.cms-content h5 {
  font-size: 18px;
}

.cms-content h6 {
  font-size: 16px;
}

.cms-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.cms-content ul,
.cms-content ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.cms-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.cms-content ul li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: var(--accent);
  font-weight: bold;
}

.cms-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  position: relative;
}

.cms-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.cms-content a:hover {
  color: var(--accent-hover);
}

.cms-content a:hover::after {
  width: 100%;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 32px auto;
  display: block;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  object-fit: cover;
}

.cms-content img[src*="uploads/cms"] {
  background: var(--surface);
  padding: 8px;
  border-radius: var(--radius-lg);
}

.cms-content img[src*="uploads/cms"]:not([src$=".svg"]) {
  max-height: 400px;
  width: auto;
}

.cms-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  margin: 32px 0;
  font-style: italic;
  color: var(--slate);
  background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}

.cms-content blockquote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.cms-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cms-content th,
.cms-content td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cms-content th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cms-content tr:nth-child(even) {
  background: var(--surface);
}

.cms-content tr:hover {
  background: rgba(14, 165, 233, 0.05);
}

.cms-content code {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
}

.cms-content pre {
  background: var(--ink);
  color: var(--ink);
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: 32px 0;
  border: 1.5px solid var(--border);
}

.cms-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.cms-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

/* CMS Grid Layout for Multiple Sections */
.cms-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.cms-content-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cms-content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* CMS FAQ Dropdown Styles */
.cms-content-faq {
  margin-top: 24px;
}

.cms-content-faq .faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-content-faq .faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.cms-content-faq .faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.2s;
  user-select: none;
}

.cms-content-faq .faq-question:hover {
  background: rgba(14, 165, 233, 0.05);
}

.cms-content-faq .faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.cms-content-faq .faq-question i {
  font-size: 14px;
  color: var(--mid);
  transition: transform 0.3s ease;
}

.cms-content-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.cms-content-faq .faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  display: none;
  background: white;
}

.cms-content-faq .faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.cms-content-faq .faq-answer p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MAIN CONTACT SECTION ── */
.contact-main {
  background: var(--surface);
  padding: 80px 24px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* ── CONTACT FORM ── */
.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 32px;
}

.form-actions .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
}

/* ── CONTACT INFO CARDS ── */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--accent);
}

.contact-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-time {
  font-size: 12px !important;
  color: var(--mid) !important;
}

.link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.link-text:hover {
  color: var(--accent-hover);
}

.link-text.whatsapp {
  color: #25d366;
}

.link-text.whatsapp:hover {
  color: #128c7e;
}

/* ── FAQ SECTION ── */
.contact-faq {
  background: white;
  padding: 80px 24px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background: rgba(14, 165, 233, 0.05);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.faq-question i {
  font-size: 14px;
  color: var(--mid);
  transition: transform 0.2s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA SECTION ── */
.contact-cta {
  background: var(--ink);
  color: var(--ink);
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #24a832 50%, var(--accent) 100%);
  border-radius: 0;
}

.contact-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, #24a832 50%, var(--accent) 100%);
  border-radius: 0;
}

.contact-cta .cta-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-cta .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form-section {
    padding: 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: white;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0;
}

.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb-inner a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--border);
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 500;
}

/* ══════════════ PRODUCT DETAIL GRID ══════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: start;
}

/* ─── LEFT: IMAGE GALLERY ─── */
.gallery {
  position: sticky;
  top: 88px;
}

.gallery-main {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
  cursor: zoom-in;
}

.gallery-main:hover .zoom-hint {
  opacity: 1;
}

.gallery-product-image {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.g-badge {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.g-badge.hot {
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.g-badge.stock {
  background: rgba(13, 158, 92, 0.1);
  color: var(--green);
  border: 1px solid rgba(13, 158, 92, 0.2);
}

.zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--ink);
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 80px;
  height: 64px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s;
  overflow: hidden;
  flex-shrink: 0;
}

.thumb.active {
  border-color: var(--accent);
}

.thumb:hover {
  border-color: var(--accent);
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* share + wishlist row */
.gallery-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--slate);
  background: white;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.action-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}

.action-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.action-btn.wa {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #16a34a;
}

.action-btn.wa:hover {
  background: #dcfce7;
}

.action-btn.wa svg {
  fill: #16a34a;
  stroke: none;
}

/* ─── RIGHT: PRODUCT INFO ─── */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* brand + badges row */
.info-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.brand-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.brand-pill.hp {
  background: var(--surface);
  color: var(--slate);
}

.brand-pill.dell {
  background: var(--accent-soft);
  color: var(--accent);
}

.brand-pill.lenovo {
  background: #fee2e2;
  color: #b91c1c;
}

.part-type-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
}

.verified-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: 6px;
}

.verified-pill svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
  fill: none;
}

/* title */
.product-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 14.5px;
  color: var(--mid);
  margin-bottom: 16px;
}

/* rating row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--border);
  flex-wrap: wrap;
}

.stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
}

.rating-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.rating-count {
  font-size: 13px;
  color: var(--mid);
  text-decoration: underline;
  cursor: pointer;
}

.rating-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.sold-count {
  font-size: 13px;
  color: var(--mid);
}

.sold-count strong {
  color: var(--ink);
}

/* price block */
.price-section {
  margin-bottom: 20px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--mid);
}

.price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  background: var(--surface);
  padding: 3px 9px;
  border-radius: 5px;
}

.price-note {
  font-size: 13px;
  color: var(--mid);
}

.price-note strong {
  color: var(--green);
}

/* wholesale tiers inline */
.wholesale-mini {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.wholesale-mini-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.wholesale-tiers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wt-item {
  text-align: center;
  padding: 8px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wt-item:last-child {
  border-right: none;
}

.wt-item.featured {
  background: rgba(14, 165, 233, 0.12);
  border-radius: 6px;
}

.wt-qty {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.wt-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.wt-save {
  font-size: 10px;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.wt-item.featured .wt-price {
  color: #fca5a5;
}

/* sku + stock */
.meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

.meta-label {
  color: var(--mid);
}

.meta-val {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.stock-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: stockpulse 2s infinite;
}

@keyframes stockpulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 158, 92, 0.4)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(13, 158, 92, 0)
  }
}

.stock-dot.low {
  background: var(--yellow);
  animation: none;
}

.stock-text {
  font-weight: 600;
  font-size: 13px;
}

.stock-text.in {
  color: var(--green);
}

.stock-text.low {
  color: var(--yellow);
}

/* variant selector */
.variant-section {
  margin-bottom: 20px;
}

.variant-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.variant-label span {
  font-weight: 400;
  color: var(--mid);
  font-family: var(--font-body);
}

.variant-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-chip {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  color: var(--slate);
  background: white;
  transition: all 0.15s;
}

.variant-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.variant-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.variant-chip.out {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* quantity + CTA */
.purchase-section {
  margin-bottom: 20px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: var(--font-body);
}

.qty-btn:hover {
  background: var(--border);
}

.qty-val {
  width: 48px;
  height: 36px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  outline: none;
  color: var(--ink);
}

.qty-note {
  font-size: 12px;
  color: var(--mid);
}

.qty-note strong {
  color: var(--accent);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(14, 165, 233, 0.4);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  background: linear-gradient(135deg, #24a832 0%, #1e8e2a 100%);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1e8e2a 0%, #187624 100%);
  color: white;
  border-color: #1e8e2a;
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  background: #25d366;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-wa:hover {
  background: #1faa53;
}

.btn-wa svg {
  width: 17px;
  height: 17px;
  fill: white;
}

/* delivery info */
.delivery-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.delivery-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.delivery-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
}

.delivery-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}

.delivery-sub {
  font-size: 12px;
  color: var(--mid);
  margin-top: 1px;
  line-height: 1.5;
}

.delivery-sub strong {
  color: var(--ink);
}

/* trust mini badges */
.trust-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--slate);
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 11px;
}

.trust-mini-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  fill: none;
  flex-shrink: 0;
}

/* ══════════════ BOTTOM SECTIONS ══════════════ */
.bottom-sections {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* tabs */
.tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--border);
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.tab-btn:hover {
  color: var(--ink);
  background: var(--surface);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: white;
}

.tab-content {
  background: white;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 28px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* specs table */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.spec-row {
  display: contents;
}

.spec-key {
  padding: 11px 16px;
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.spec-val {
  padding: 11px 16px;
  background: white;
  font-size: 13.5px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}

.spec-key:first-child,
.spec-val:nth-child(2) {
  border-top: 1px solid var(--border);
}

.spec-key {
  border-right: 1px solid var(--border);
}

/* compat table */
.compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.compat-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid var(--border);
}

.compat-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  vertical-align: middle;
}

.compat-table tr:hover td {
  background: var(--surface);
}

.compat-table .gen-pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 600;
}

.compat-table .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.compat-table .status-pill.yes {
  color: var(--green);
}

.compat-table .status-pill.yes::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* description prose */
.prose {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.8;
}

.prose h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 20px 0 8px;
}

.prose h4:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prose li {
  color: var(--slate);
}

.prose li::marker {
  color: var(--accent);
}

.prose .callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--ink);
}

/* reviews tab */
.review-summary {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--border);
  align-items: center;
}

.rev-big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
}

.rev-stars-big {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.rev-count {
  font-size: 13px;
  color: var(--mid);
}

.rev-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rev-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-bar-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid);
  width: 40px;
  text-align: right;
}

.rev-bar-track {
  flex: 1;
  height: 7px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.rev-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 4px;
}

.rev-bar-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  width: 24px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.review-meta {
  font-size: 12px;
  color: var(--mid);
}

.review-stars-small {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

.review-order-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.review-order-id svg {
  width: 10px;
  height: 10px;
  stroke: var(--green);
  fill: none;
}

.review-text {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 8px;
}

.review-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
}

/* ── RELATED PRODUCTS ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 6px;
}

.section-sub {
  font-size: 13.5px;
  color: var(--mid);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.related-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.related-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.related-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-body {
  padding: 12px 14px;
}

.related-brand {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.related-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.related-cat {
  font-size: 11.5px;
  color: var(--mid);
  margin-bottom: 10px;
}

.related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 9px;
}

.related-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}

.related-price .cur {
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
}

.related-add {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.related-add:hover {
  background: var(--accent-hover);
}

.related-add svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
}

/* ── STICKY BUY BAR (mobile) ── */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1.5px solid var(--border);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.sticky-price .cur {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

.sticky-btn {
  height: 44px;
  padding: 0 24px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.sticky-btn:hover {
  background: var(--accent-hover);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--ink);
  border-radius: 28px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  animation: wabounce 3s ease-in-out infinite;
}

@keyframes wabounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.wa-float:hover {
  animation: none;
  transform: scale(1.05);
}

.wa-float-icon {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-float-icon svg {
  width: 15px;
  height: 15px;
  fill: #25d366;
}

/* ── ADD TO CART ANIMATION ── */
@keyframes cartpop {
  0% {
    transform: scale(1)
  }

  30% {
    transform: scale(0.92)
  }

  60% {
    transform: scale(1.06)
  }

  100% {
    transform: scale(1)
  }
}

.cart-pop {
  animation: cartpop 0.4s ease;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fadeup {
  animation: fadeup 0.35s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    position: static;
  }

  .sticky-buy-bar {
    display: flex;
  }

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

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

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 16px 16px 80px;
  }

  .tabs-bar .tab-btn {
    font-size: 12.5px;
    padding: 12px 10px;
  }

  .topbar-links {
    display: none;
  }

  .nav-search {
    max-width: 200px;
  }

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

  .review-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── PAGE LAYOUT ── */
.page-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.sidebar-card:hover {
  box-shadow: var(--shadow);
}

.sidebar-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.selected-count {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-left: 4px;
}

.sidebar-clear {
  font-size: 12px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.15s;
}

.sidebar-clear:hover {
  opacity: 0.7;
}

.sidebar-body {
  padding: 16px 20px;
}

/* Sidebar Search */
.sidebar-search {
  position: relative;
  margin-bottom: 16px;
}

.sidebar-search input {
  width: 100%;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 36px 0 14px;
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-search input:focus {
  border-color: var(--accent);
  background: white;
}

.sidebar-search input::placeholder {
  color: var(--mid);
}

.sidebar-search svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--mid);
  fill: none;
}

/* Category List */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cat-list::-webkit-scrollbar {
  width: 4px;
}

.cat-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.12s;
  gap: 10px;
}

.cat-item:hover {
  background: var(--surface);
  transform: translateX(2px);
}

.cat-item.active {
  background: var(--accent-soft);
}

.cat-item input[type="checkbox"] {
  display: none;
}

.cat-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cat-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.cat-item.active .cat-check {
  background: var(--accent);
  border-color: var(--accent);
}

.cat-item.active .cat-check::after {
  content: '✓';
  font-size: 11px;
  color: var(--ink);
  font-weight: 700;
}

.cat-name-text {
  font-size: 14px;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-item.active .cat-name-text {
  color: var(--accent);
  font-weight: 600;
}

.cat-count-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.cat-item.active .cat-count-pill {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
}

/* Brand List */
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.12s;
}

.brand-item:hover {
  background: var(--surface);
  transform: translateX(2px);
}

.brand-item.active {
  background: var(--accent-soft);
}

.brand-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.brand-item.active .brand-check {
  background: var(--accent);
  border-color: var(--accent);
}

.brand-item.active .brand-check::after {
  content: '✓';
  font-size: 11px;
  color: var(--ink);
  font-weight: 700;
}

.brand-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.brand-pill.dell {
  background: var(--accent-soft);
  color: var(--accent);
}

.brand-pill.hp {
  background: var(--surface);
  color: var(--slate);
}

.brand-pill.lenovo {
  background: #fee2e2;
  color: #b91c1c;
}

.brand-pill.other {
  background: var(--surface);
  color: var(--mid);
}

.brand-name-text {
  font-size: 14px;
  color: var(--slate);
}

.brand-item.active .brand-name-text {
  color: var(--accent);
  font-weight: 600;
}

/* Price Range */
.price-range {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.price-input-wrap {
  position: relative;
}

.price-input-wrap span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--mid);
  font-family: var(--font-mono);
}

.price-input-wrap input {
  width: 100%;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 12px 0 24px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.price-input-wrap input:focus {
  border-color: var(--accent);
}

.price-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 60%, var(--border) 60%);
  outline: none;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s;
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Stock Filter */
.stock-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stock-opt {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  color: var(--slate);
  transition: all 0.15s;
  background: white;
  text-align: center;
}

.stock-opt:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.stock-opt.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

/* ── ACTIVE FILTER CHIPS ── */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--accent);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-chip:hover {
  background: rgba(14, 165, 233, 0.15);
  transform: translateY(-1px);
}

.filter-chip svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.clear-all-btn {
  color: var(--mid);
  font-size: 12px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  transition: all 0.15s;
  font-family: var(--font-display);
  font-weight: 600;
}

.clear-all-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── MAIN CONTENT ── */
.main-content {
  min-width: 0;
}

/* ── BULK ORDER NUDGE ── */
.bulk-nudge {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  flex-wrap: wrap;
}

.bulk-nudge-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bulk-nudge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bulk-nudge-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
}

.bulk-nudge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.bulk-nudge-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.bulk-nudge-btn {
  height: 40px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.bulk-nudge-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ── TOOLBAR ── */
.toolbar {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mid);
  white-space: nowrap;
}

.result-label strong {
  color: var(--ink);
}

.sort-select {
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 36px 0 14px;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  background: white 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='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.sort-select:focus {
  border-color: var(--accent);
}

.per-page-select {
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 32px 0 12px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--ink);
  background: white 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='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.view-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.view-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.view-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}

.view-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--mid);
  fill: none;
}

.view-btn.active svg {
  stroke: white;
}

.toolbar-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.product-grid.list-view {
  grid-template-columns: 1fr;
}

/* Product Card */
.product-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card.list-view-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  transform: none !important;
  border-radius: var(--radius);
}

.product-card.list-view-card:hover {
  transform: none;
}

/* Card Image */
.product-img {
  width: 100%;
  aspect-ratio: 4/4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card.list-view-card .product-img {
  width: 140px;
  height: 100%;
  aspect-ratio: unset;
  border-radius: var(--radius) 0 0 var(--radius);
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-img-placeholder svg {
  width: 42px;
  height: 42px;
  stroke: var(--border);
  fill: none;
}

.product-img-placeholder span {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--mid);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.badge-new {
  background: var(--green-soft);
  color: var(--green);
}

.badge-used {
  background: var(--yellow-soft);
  color: var(--yellow);
}

.badge-hot {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
}

.badge-low {
  background: #fef2f2;
  color: #dc2626;
}

.badge-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.badge-in {
  background: var(--green-soft);
  color: var(--green);
}

.badge-out {
  background: #fef2f2;
  color: #dc2626;
}

.badge-low {
  background: var(--yellow-soft);
  color: var(--yellow);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  opacity: 0;
  z-index: 2;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

.wishlist-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.wishlist-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--mid);
  fill: none;
}

.wishlist-btn:hover svg {
  stroke: var(--accent);
}

.wishlist-btn.active svg {
  stroke: var(--accent);
  fill: var(--accent);
}

/* Card Body */
.product-body {
  padding: 10px;
}

.product-card.list-view-card .product-body {
  padding: 20px 24px;
}

.product-brand {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 4px;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}

.product-card.list-view-card .product-name {
  font-size: 17px;
}

.product-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mid);
  background: var(--surface);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.compat-label {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-dot.in {
  background: var(--green);
}

.stock-dot.low {
  background: var(--yellow);
}

.stock-dot.out {
  background: #dc2626;
}

.stock-text {
  font-size: 12px;
  font-family: var(--font-mono);
}

.stock-text.in {
  color: var(--green);
}

.stock-text.low {
  color: var(--yellow);
}

.stock-text.out {
  color: #dc2626;
}

/* Card Footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.product-card.list-view-card .product-footer {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding: 20px 24px;
  min-width: 140px;
  border-left: 1px solid var(--border);
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price {
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}

.product-price .cur {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
}

.price-wholesale {
  font-size: 11px;
  color: var(--green);
  font-family: var(--font-mono);
}

.add-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.add-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
}

.add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.add-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

.add-btn-full {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
}

.add-btn-full:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.add-btn-full svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

/* Qty Stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: var(--border);
}

.qty-val {
  width: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 32px;
  outline: none;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 100px 24px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--mid);
  fill: none;
}

.empty-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}

.empty-desc {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 30px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.page-info {
  font-size: 13px;
  color: var(--mid);
  font-family: var(--font-mono);
}

.page-nums {
  display: flex;
  gap: 6px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.page-btn.prev-next {
  width: auto;
  padding: 0 16px;
  gap: 6px;
  font-size: 13px;
}

.page-btn.prev-next svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.page-btn.prev-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ── MOBILE FILTER BUTTON ── */
.mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 997;
  background: var(--ink);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  align-items: center;
  gap: 10px;
}

.mobile-filter-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

/* ── WHATSAPP CTA ── */
.wa-cta {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--ink);
  border-radius: 30px;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  animation: wabounce 3s ease-in-out infinite;
}

@keyframes wabounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.wa-cta:hover {
  animation: none;
  transform: scale(1.05);
}

.wa-icon {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--surface) !important;
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--slate);
  font-weight: 500;
}

/* ── SIDEBAR WHOLESALE CARD ── */
.sidebar-wholesale-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.sidebar-wholesale-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.sidebar-wholesale-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.sidebar-wholesale-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.sidebar-wholesale-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-wholesale-btn:hover {
  background: #1faa53;
  transform: translateY(-1px);
}

/* ── CATALOG RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: none;
  }

  .sidebar.open {
    display: flex;
  }

  /* Make brands section sticky in mobile view */
  .sidebar.open .sidebar-card:nth-child(2) {
    position: sticky;
    top: 60px;
    z-index: 10;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .mobile-filter-btn {
    display: flex;
  }

  .catalog-header-stats {
    display: none;
  }

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

  .bulk-nudge {
    flex-direction: column;
    text-align: center;
  }

  .bulk-nudge-left {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .topbar-links {
    display: none;
  }

  .nav-search {
    max-width: 300px;
  }

  .catalog-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .catalog-header {
    padding: 32px 0;
  }

  .page-layout {
    padding: 20px 16px;
  }

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

  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .toolbar-left {
    justify-content: space-between;
  }

  .stock-options {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* CSS compatibility fixes applied - all appearance and line-clamp properties now have standard equivalents */


/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  background-color: #0284c7; /* Defensive background */
  contain: content; /* Improve scroll performance and prevent overflow issues */
}

.hs-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}

.hs-slide {
  flex: 0 0 100%; /* More robust than min-width */
  width: 100%;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

/* decorative grid pattern */
.hs-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 1;
}

.hs-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 48px;
}

/* all direct children except .hs-visual go in col 1 */
.hs-badge,
.hs-content h1,
.hs-content p,
.hs-ctas,
.hs-stats {
  grid-column: 1;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  margin-bottom: 20px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hs-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: hsPulse 2s infinite;
}

@keyframes hsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.hs-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hs-content h1 span {
  color: #fde68a;
}

.hs-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hs-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0284c7;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  color: #0284c7;
}

.hs-btn-primary svg {
  width: 16px;
  height: 16px;
}

.hs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.hs-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.hs-stats {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hs-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hs-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hs-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* image side */
.hs-visual {
  grid-column: 2;
  grid-row: 1 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: rgba(255, 255, 255, 0.05); /* Very subtle fallback */
  border-radius: 20px;
}

.hs-visual img {
  width: 100%;
  max-width: 520px;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
}

/* ── ARROWS ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}

.hs-arrow:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%) scale(1.08);
}

.hs-arrow svg {
  width: 22px;
  height: 22px;
}

.hs-prev { left: 20px; }
.hs-next { right: 20px; }

/* ── DOTS ── */
.hs-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
  padding: 0;
}

.hs-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 5px;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hs-slide {
    min-height: 420px;
    padding: 48px 0 70px;
  }

  .hs-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hs-visual {
    display: none;
  }

  .hs-content h1 {
    font-size: clamp(28px, 7vw, 44px);
  }
}

@media (max-width: 576px) {
  .hs-slide {
    min-height: 380px;
    padding: 40px 0 64px;
  }

  .hs-content {
    padding: 0 16px;
  }

  .hs-content h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hs-content p {
    font-size: 14px;
  }

  .hs-btn-primary,
  .hs-btn-secondary {
    font-size: 14px;
    padding: 10px 18px;
  }

  .hs-stats {
    gap: 16px;
  }

  .hs-num {
    font-size: 18px;
  }

  .hs-arrow {
    width: 38px;
    height: 38px;
  }

  .hs-prev { left: 10px; }
  .hs-next { right: 10px; }
}

/* Auth page green overrides */
.auth-form .btn-secondary,
.auth-form #verifyBtn {
  background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.auth-form .btn-secondary:hover,
.auth-form #verifyBtn:hover {
  background: linear-gradient(135deg, #0f9f6e 0%, #166534 100%);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.45);
}

.auth-links a,
.switch-text a {
  color: var(--green) !important;
}

.auth-links a:hover,
.switch-text a:hover {
  color: #15803d !important;
}
