* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f5f7;
  color: #222;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── TOP BAR ── */
.topbar {
  background: #1a237e;
  color: #fff;
  font-size: 12px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-right { display: flex; gap: 20px; }
.topbar-right a { color: rgba(255,255,255,0.75); font-size: 12px; transition: color 0.2s; }
.topbar-right a:hover { color: #f9a825; }

/* ── HEADER ── */
.header {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { min-width: 110px; }
.logo-text { display: block; font-size: 26px; font-weight: 700; color: #1a237e; }
.logo-sub { display: block; font-size: 9px; color: #f9a825; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }

.search-bar {
  flex: 1;
  display: flex;
  border: 2px solid #1a237e;
  border-radius: 8px;
  overflow: hidden;
}
.search-category {
  border: none;
  border-right: 1px solid #ddd;
  padding: 0 10px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  background: #f0f2ff;
  color: #333;
  outline: none;
  cursor: pointer;
  max-width: 140px;
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 11px 16px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}
.search-bar button {
  background: #1a237e;
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
  white-space: nowrap;
}
.search-bar button:hover { background: #f9a825; color: #1a237e; }

.header-right { display: flex; gap: 16px; align-items: center; }
.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.header-icon span { font-size: 20px; }
.header-icon small { font-size: 10px; color: #666; }
.cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 17px; height: 17px;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ── CATEGORY NAV ── */
.category-nav { background: #1a237e; }
.cat-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  color: rgba(255,255,255,0.8);
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.cat-nav-link:hover,
.cat-nav-link.active {
  color: #f9a825;
  border-bottom-color: #f9a825;
  background: rgba(255,255,255,0.05);
}
.cat-nav-link.highlight {
  background: #f9a825;
  color: #1a237e;
  font-weight: 700;
  border-radius: 0;
}
.cat-nav-link.highlight:hover { background: #ffca28; }

/* ── MAIN LAYOUT ── */
.main-content {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 18px 16px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.sidebar-title {
  background: #1a237e;
  color: #fff;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  position: sticky;
  top: 0;
}
.sidebar-cats { list-style: none; padding: 6px 0; }
.cat-parent { border-bottom: 1px solid #f5f5f5; }
.cat-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-main::after { content: '▸'; font-size: 10px; color: #aaa; transition: transform 0.3s; }
.cat-parent.open .cat-main::after { transform: rotate(90deg); }
.cat-main:hover { color: #1a237e; background: #f0f2ff; }
.cat-sub {
  list-style: none;
  display: none;
  background: #f8f9ff;
  padding: 4px 0;
}
.cat-parent.open .cat-sub { display: block; }
.cat-sub li a {
  display: block;
  padding: 7px 16px 7px 28px;
  font-size: 12px;
  color: #666;
  transition: all 0.2s;
}
.cat-sub li a:hover { color: #1a237e; background: #e8eaf6; padding-left: 32px; }

.filter-box {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
}
.filter-title { font-size: 12px; font-weight: 600; color: #333; margin-bottom: 8px; }
.filter-box label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  cursor: pointer;
}
.filter-box input[type="checkbox"] { accent-color: #1a237e; }

.sidebar-note {
  background: #fff8e1;
  border-left: 3px solid #f9a825;
  padding: 10px 14px;
  font-size: 11px;
  color: #666;
  line-height: 1.6;
}

/* ── HERO BANNER ── */
.hero-banner {
  background: linear-gradient(135deg, #1a237e 0%, #1565c0 100%);
  border-radius: 12px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.hero-tag {
  background: #f9a825;
  color: #1a237e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.hero-banner-text h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-banner-text p { opacity: 0.8; font-size: 13px; margin-bottom: 18px; }
.hero-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-primary {
  background: #f9a825;
  color: #1a237e;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,168,37,0.4); }

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-banner-img {
  font-size: 90px;
  opacity: 0.2;
  position: absolute;
  right: 30px;
  bottom: -10px;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  border-right: 1px solid #f0f0f0;
}
.stat-item:last-child { border-right: none; }
.stat-item strong { font-size: 20px; font-weight: 700; color: #1a237e; }
.stat-item span { font-size: 11px; color: #888; }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.how-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s;
}
.how-card:hover { transform: translateY(-4px); }
.how-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a237e;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-card span { font-size: 36px; display: block; margin-bottom: 10px; }
.how-card h4 { font-size: 14px; font-weight: 600; color: #1a237e; margin-bottom: 6px; }
.how-card p { font-size: 12px; color: #777; line-height: 1.6; }

/* ── SECTION HEADER ── */
.section { margin-bottom: 22px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8eaf6;
}
.section-head h2 { font-size: 17px; font-weight: 700; color: #1a237e; }
.section-head a { font-size: 12px; color: #1a237e; font-weight: 500; }
.section-head a:hover { color: #f9a825; }

/* ── CATEGORY CARDS ── */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.cat-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 2px solid transparent;
}
.cat-card:hover {
  background: #1a237e;
  border-color: #1a237e;
  transform: translateY(-3px);
}
.cat-card:hover p { color: #fff; }
.cat-card span { font-size: 28px; display: block; margin-bottom: 6px; }
.cat-card p { font-size: 11px; font-weight: 500; color: #444; }

/* ── FLASH SECTION ── */
.flash-section .section-head {
  background: #fff3e0;
  padding: 10px 14px;
  border-radius: 8px;
  border-bottom: none;
}
.timer { font-size: 13px; color: #e53935; font-weight: 600; }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 1;
}
.product-badge.new { background: #1a237e; }
.product-badge.sale { background: #f9a825; color: #1a237e; }

.product-img-box {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.product-body { padding: 10px 12px 12px; }
.product-cat {
  font-size: 10px;
  color: #f9a825;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-body h4 {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 7px;
  line-height: 1.4;
}
.product-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.moq-tag {
  background: #e8eaf6;
  color: #1a237e;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.origin-tag {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.product-price-row { margin-bottom: 4px; }
.price-contact {
  font-size: 13px;
  font-weight: 700;
  color: #1a237e;
}
.bulk-price {
  font-size: 10px;
  color: #43a047;
  margin-bottom: 10px;
  font-weight: 500;
}
.product-actions { display: flex; gap: 7px; }
.btn-order-sm {
  flex: 1;
  background: #1a237e;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}
.btn-order-sm:hover { background: #f9a825; color: #1a237e; }
.btn-wish {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
}
.btn-wish:hover { background: #fce4ec; border-color: #e91e63; }

/* ── PROMO STRIP ── */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.promo-item {
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #f0f0f0;
  color: #333;
  line-height: 2;
}
.promo-item:last-child { border-right: none; }
.promo-item small {
  font-weight: 400;
  color: #888;
  font-size: 11px;
  display: block;
  line-height: 1;
}

/* ── QUOTE SECTION ── */
.quote-section {
  background: linear-gradient(135deg, #1a237e, #283593);
  padding: 60px 20px;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quote-text h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.quote-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; }
.quote-contact { display: flex; flex-direction: column; gap: 10px; }
.quote-contact span { color: #f9a825; font-size: 14px; font-weight: 500; }

.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: #f9a825; }
.quote-form select option { background: #1a237e; }
.quote-form .btn-primary {
  font-size: 14px;
  padding: 14px;
  width: 100%;
  text-align: center;
}

/* ── FOOTER ── */
.footer { background: #0d1642; color: #fff; padding: 50px 20px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h3 { font-size: 24px; font-weight: 700; color: #f9a825; margin-bottom: 12px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: #f9a825; margin-bottom: 14px; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 2; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.3s; }
.footer-col ul a:hover { color: #f9a825; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-cards { grid-template-columns: repeat(4, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .promo-strip { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-banner { flex-direction: column; }
  .hero-banner-img { display: none; }
}

@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; }
  .search-bar { order: 3; width: 100%; }
  .cat-cards { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .promo-strip { grid-template-columns: 1fr 1fr; }
  .hero-banner-text h1 { font-size: 22px; }
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  width: fit-content;        /* ← ADD THIS */
  align-self: flex-start; 
}
.whatsapp-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: all 0.3s;
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.15);
  animation: none;
}

/* ✅ ADD THIS */
@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.account-wrapper { position: relative; }

.account-popup {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  z-index: 9998;
  overflow: hidden;
  animation: popupFade 0.2s ease;
}
.account-popup.show { display: block; }

@keyframes popupFade {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.popup-top { padding: 20px; }
.popup-top h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 14px;
  text-align: center;
}
.btn-signin-popup {
  display: block;
  width: 100%;
  background: #f9a825;
  color: #1a237e;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  transition: background 0.3s;
}
.btn-signin-popup:hover { background: #f0a000; }
.popup-divider {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.social-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}
.social-btn:hover { transform: scale(1.1); }
.social-btn.facebook { background: #1877f2; }
.social-btn.google   { background: #fff; color: #444; border: 2px solid #ddd; }
.social-btn.linkedin { background: #0a66c2; }
.popup-divider-line { height: 1px; background: #f0f0f0; }
.popup-links { padding: 6px 0; }
.popup-links a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #333;
  transition: background 0.2s;
}
.popup-links a:hover { background: #f8f9ff; color: #1a237e; }
a.cat-card {
  text-decoration: none;
  color: inherit;
}
/* ── SHOP SECTION CONTROLS ── */
.shop-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.shop-filter {
  padding: 8px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}
.shop-filter:focus { border-color: #1a237e; }

.shop-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* ── LOAD MORE ── */
.load-more-wrap {
  text-align: center;
  margin-top: 24px;
}
.btn-load-more {
  background: #fff;
  color: #1a237e;
  border: 2px solid #1a237e;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-load-more:hover {
  background: #1a237e;
  color: #fff;
}
.btn-load-more:disabled {
  border-color: #ccc;
  color: #aaa;
  cursor: not-allowed;
}

/* ── PRODUCT SOURCE (shared, remove from category.html inline style) ── */
.product-source {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 6px;
}
/* ── CART SIDEBAR ── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9997;
}
.cart-overlay.show { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a237e;
  color: #fff;
}
.cart-header h3 { font-size: 16px; font-weight: 700; }
.cart-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.3); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.cart-empty span { font-size: 50px; display: block; margin-bottom: 14px; }
.cart-empty p { font-size: 14px; }
.cart-empty a {
  display: inline-block;
  margin-top: 16px;
  background: #1a237e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-emoji {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 13px; font-weight: 600; color: #222; margin-bottom: 3px; }
.cart-item-info p  { font-size: 11px; color: #888; }
.cart-item-remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
  padding: 4px;
}
.cart-item-remove:hover { color: #e53935; }

.cart-footer {
  padding: 16px 20px;
  border-top: 2px solid #f0f0f0;
  background: #fafafa;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 12px;
}
.btn-send-cart {
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.3s;
}
.btn-send-cart:hover { background: #1ebe5d; }
.btn-clear-cart {
  width: 100%;
  background: #fff;
  color: #e53935;
  border: 2px solid #e53935;
  padding: 10px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-clear-cart:hover { background: #fce4ec; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1a237e;
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  transition: left 0.35s ease;
  overflow-y: auto;
  padding-top: 20px;
}
.mobile-menu.open { left: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}
.mobile-overlay.show { display: block; }
.mobile-menu a {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.mobile-menu a:hover {
  background: #f0f2ff;
  color: #1a237e;
  padding-left: 30px;
}
.mobile-menu-quote {
  background: #f9a825 !important;
  color: #1a237e !important;
  font-weight: 700 !important;
  text-align: center;
  margin: 16px;
  border-radius: 25px !important;
  border-bottom: none !important;
}
.mobile-menu-quote:hover {
  background: #f0a000 !important;
  padding-left: 24px !important;
}

/* ── SHOW HAMBURGER ON MOBILE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .header-right .header-icon small { display: none; }
  .topbar { display: none; }
}
/* ── DARK MODE ── */
body.dark {
  background: #121212;
  color: #e0e0e0;
}
body.dark .header        { background: #1e1e1e; box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
body.dark .product-card  { background: #1e1e1e; }
body.dark .sidebar       { background: #1e1e1e; }
body.dark .how-card      { background: #1e1e1e; }
body.dark .stats-strip   { background: #1e1e1e; }
body.dark .promo-strip   { background: #1e1e1e; }
body.dark .about-section { background: #1e1e1e; }
body.dark .cat-card      { background: #1e1e1e; }
body.dark .search-bar    { border-color: #444; }
body.dark .search-bar input { background: #2a2a2a; color: #e0e0e0; }
body.dark .product-body h4  { color: #e0e0e0; }
body.dark .cat-main         { color: #e0e0e0; }
body.dark .section-head h2  { color: #90caf9; }

/* ── ICON BOXES ── */
.icon-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}
.icon-box i {
  font-size: 42px;
  color: #1a237e;
  opacity: 0.7;
}
.cat-card .icon-box i {
  font-size: 28px;
}
.cat-nav-link i {
  font-size: 14px;
  margin-right: 4px;
}
.sidebar-icon {
  margin-right: 6px;
  width: 16px;
  text-align: center;
}
/* ── FONT AWESOME ICON BOX FOR PRODUCTS ── */
.icon-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  border-radius: inherit;
}

.icon-box i {
  font-size: 42px;
  color: #1a237e;
  opacity: 0.65;
}
/* ════════════════════════════════════════
   MOBILE IMPROVEMENTS — Add to bottom of style.css
   ════════════════════════════════════════ */

/* ── HIDE SIDEBAR ON MOBILE (takes too much space) ── */
@media (max-width: 768px) {
  .sidebar { display: none; }

  .main-content {
    grid-template-columns: 1fr;
    padding: 10px 12px;
    gap: 12px;
  }

  /* ── HEADER ── */
  .header { padding: 10px 0; }
  .header-inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 12px;
  }
  .logo { min-width: auto; }
  .logo-text { font-size: 20px; }
  .logo-sub  { font-size: 8px; letter-spacing: 2px; }

  /* Search bar — full width, below logo row */
  .search-bar {
    order: 3;
    width: 100%;
    flex: none;
  }
  /* Hide the category dropdown in search on mobile */
  .search-category { display: none; }
  .search-bar input { font-size: 13px; }

  /* Header icons — smaller */
  .header-right { gap: 6px; }
  .header-icon span { font-size: 18px; }
  .header-icon small { display: none; }

  /* ── HERO BANNER ── */
  .hero-banner {
    padding: 24px 18px;
    text-align: center;
    border-radius: 10px;
  }
  .hero-banner-text h1 {
    font-size: 22px;
    line-height: 1.3;
  }
  .hero-banner-text p { font-size: 12px; }
  .hero-banner-btns {
    justify-content: center;
    gap: 8px;
  }
  .btn-primary,
  .btn-ghost { padding: 9px 18px; font-size: 12px; }
  .hero-banner-img { display: none; }

  /* ── STATS STRIP ── */
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item strong { font-size: 18px; }
  .stat-item span   { font-size: 10px; }

  /* ── HOW IT WORKS ── */
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .how-card { padding: 20px 12px; }
  .how-card span { font-size: 28px; }
  .how-card h4   { font-size: 13px; }
  .how-card p    { font-size: 11px; }

  /* ── CATEGORY CARDS — horizontal scroll ── */
  .cat-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .cat-cards::-webkit-scrollbar { display: none; }
  .cat-card {
    min-width: 76px;
    flex-shrink: 0;
    padding: 14px 6px;
    border-radius: 10px;
  }
  .cat-card i  { font-size: 22px; }
  .cat-card p  { font-size: 10px; }

  /* ── PRODUCT GRID ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-img-box { height: 100px; }
  .product-body { padding: 8px 10px 10px; }
  .product-body h4 { font-size: 12px; }
  .product-cat     { font-size: 9px; }
  .moq-tag,
  .origin-tag      { font-size: 9px; padding: 2px 6px; }
  .bulk-price      { font-size: 9px; }
  .price-contact   { font-size: 12px; }
  .btn-order-sm    { padding: 8px 6px; font-size: 11px; }

  /* ── SECTION HEADERS ── */
  .section-head h2 { font-size: 15px; }
  .section-head a  { font-size: 11px; }

  /* ── PROMO STRIP ── */
  .promo-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .promo-item { padding: 12px 10px; font-size: 11px; }
  .promo-item small { font-size: 10px; }

  /* ── QUOTE SECTION ── */
  .quote-section { padding: 36px 16px; }
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .quote-text h2 { font-size: 20px; }
  .quote-text p  { font-size: 13px; }
  .quote-contact span { font-size: 13px; }

  /* ── FOOTER ── */
  .footer { padding: 36px 16px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col h3 { font-size: 20px; }
  .footer-col h4 { font-size: 13px; }
  .footer-col p,
  .footer-col ul a { font-size: 12px; }

  /* ── CART SIDEBAR — full width on mobile ── */
  .cart-sidebar { max-width: 100%; }

  /* ── SHOP CONTROLS ── */
  .shop-controls { gap: 6px; }
  .shop-filter   { font-size: 12px; padding: 7px 10px; }

  /* ── CATEGORY NAV ── */
  .cat-nav-link  { padding: 10px 12px; font-size: 12px; }

  /* ── FLOAT WHATSAPP — smaller on mobile ── */
  .float-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 16px;
  }

  /* ── MOBILE MENU — better styling ── */
  .mobile-menu a { font-size: 14px; padding: 13px 20px; }
}

/* ── VERY SMALL PHONES (under 380px) ── */
@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .product-img-box { height: 90px; font-size: 36px; }
  .hero-banner-text h1 { font-size: 19px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .how-grid    { grid-template-columns: 1fr 1fr; }
  .btn-load-more { font-size: 13px; padding: 10px 24px; }
  .cat-card { min-width: 68px; }
}

/* ── TABLET (768px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-content { grid-template-columns: 200px 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-cards     { grid-template-columns: repeat(5, 1fr); }
  .how-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-banner-text h1 { font-size: 26px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}
/* ════════════════════════════════
   WHATSAPP CHAT WIDGET
   ════════════════════════════════ */

/* Hide old float button — we replace it */
.float-whatsapp { display: none !important; }

/* ── WIDGET WRAPPER ── */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* ── FLOAT BUTTON ── */
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: waPulse 2.5s infinite;
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float-btn .wa-icon    { font-size: 28px; }
.wa-float-btn .wa-x-icon  {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  display: none;
  font-family: 'Poppins', sans-serif;
}

/* Pulse animation */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #222;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.wa-float-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #222;
  border-right: 0;
}

/* ── POPUP CARD ── */
.wa-popup {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  display: none;
  animation: waSlideUp 0.3s ease;
  transform-origin: bottom right;
}
.wa-popup.open { display: block; }

@keyframes waSlideUp {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.wa-popup-header {
  background: #25d366;
  padding: 16px 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-popup-avatar {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.wa-popup-info { flex: 1; }
.wa-popup-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.wa-popup-status {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  margin-top: 2px;
}
.wa-popup-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.wa-popup-close:hover { background: rgba(255,255,255,0.35); }

/* Body */
.wa-popup-body {
  padding: 16px;
  background: #e5ddd5;
  min-height: 140px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bdb5' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-message-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  max-width: 85%;
}
.wa-message-bubble .wa-time {
  font-size: 10px;
  color: #aaa;
  text-align: right;
  margin-top: 4px;
}

/* Quick reply buttons */
.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}
.wa-quick-replies button {
  background: #fff;
  border: 1.5px solid #25d366;
  color: #075e54;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  text-align: left;
}
.wa-quick-replies button:hover {
  background: #25d366;
  color: #fff;
  transform: translateX(-3px);
}

/* Footer */
.wa-popup-footer {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #f0f0f0;
  border-top: 1px solid #e0e0e0;
  align-items: center;
}
.wa-popup-footer input {
  flex: 1;
  border: none;
  background: #fff;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}
.wa-popup-footer button {
  background: #25d366;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-popup-footer button:hover { background: #1ebe5d; }

/* ── MOBILE ── */
@media (max-width: 480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-popup  { width: calc(100vw - 32px); }
  .wa-float-btn { width: 54px; height: 54px; }
  .wa-float-btn .wa-icon { font-size: 24px; }
}
