:root {
  --primary: #0d2b5c;
  --secondary: #007bff;
  --accent: #f8991c;
  --green: #28a745;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #334155;
  background: #fff;
  line-height: 1.55;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.topbar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;
}
.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(18px, calc((100vw - 1180px) / 2));
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary);
  font-size: 22px;
}
.logo img { height: 60px; width: auto; }
.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
  overflow: visible;
}
.site-header nav a {
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-item.has-dropdown > a::after {
  content: "v";
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15,23,42,.12);
  border-radius: 6px;
  padding: 8px;
  display: none;
  z-index: 50;
}
.dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
}
.dropdown a:hover { background: #f1f5f9; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.cart-link {
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 8px 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 26px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(239,68,68,.25);
}
.cart-badge .bell {
  font-size: 12px;
  line-height: 1;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero {
  position: relative;
  min-height: 610px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 80px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.hero-stat-card:hover { background: rgba(255,255,255,.16); }
.hero-stat-icon {
  font-size: 32px;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: rgba(248,153,28,.25);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.hero-stat-info strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #ffd18a;
  line-height: 1;
}
.hero-stat-info span { font-size: 13px; color: rgba(255,255,255,.75); }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: .8s;
}
.slide.active { opacity: 1; }
.slide.active {
  animation: heroZoom 8s ease both;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13,43,92,0.65), rgba(13,43,92,0.85));
}
.hero-slide-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  background: rgba(8,26,56,.45);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.hero-slide-btn:hover {
  background: rgba(248,153,28,.92);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.hero-slide-btn:active {
  transform: translateY(-50%) scale(.96);
}
.hero-prev { left: max(18px, calc((100vw - 1180px) / 2)); }
.hero-next { right: max(18px, calc((100vw - 1180px) / 2)); }
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  padding: 0;
  transition: transform .16s ease, background .16s ease, width .16s ease;
}
.hero-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
  margin: 0 0 18px;
  text-align: left;
}
.hero p { font-size: 18px; color: #e5edf9; }
.hero-kicker {
  display: inline-block;
  font-weight: 800;
  color: #ffd18a;
  margin-bottom: 12px;
  background: rgba(248,153,28,.18);
  border: 1px solid rgba(248,153,28,.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero-copy { color: #e5edf9; font-size: 16px; }
.hero-actions { justify-content: flex-start; margin-top: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}
.btn.accent { background: var(--accent); }
.btn.ghost { background: #e5e7eb; color: #111827; }
.btn.whatsapp-order,
.btn.whatsapp-cta {
  background: #25d366 !important;
  color: #fff !important;
}
.alert {
  padding: 12px 15px;
  border-radius: 7px;
  margin: 0 0 18px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 700;
}
.search-box {
  margin: 22px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 720px;
}
.search-box input {
  border: 0;
  border-radius: 4px;
  padding: 13px;
}
.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badges span {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  padding: 8px 13px;
}
.section { padding: 66px 20px; }
.section.gray { background: #f4f7f6; }
.container { max-width: 1180px; margin: auto; }
.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}
.section-title h2,
.heading {
  color: var(--primary);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
  overflow: hidden;
}
.card-body { padding: 18px; }
.product-img {
  height: 210px;
  display: grid;
  place-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px;
}
.product-img img {
  max-height: 180px;
  object-fit: contain;
}
.price {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 900;
}
.badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12px;
}
.product-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.sub-badge {
  background: #0f9f5f;
}
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-filter-actions {
  margin-bottom: 20px;
}
.sub-menu-filter {
  border-color: #bbf7d0;
  color: #166534;
}
.package-actions {
  margin-top: 16px;
}
.detail-order-actions {
  margin-top: 18px;
}
.order-submit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.cart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.cart-toolbar strong,
.cart-toolbar small {
  display: block;
}
.cart-toolbar small {
  color: #64748b;
  margin-top: 2px;
}
.cart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.cart-card {
  padding: 0;
}
.cart-select-card {
  display: block;
  cursor: pointer;
}
.cart-select-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cart-card-content {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  min-height: 118px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.cart-card-content img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 6px;
}
.cart-card-content strong,
.cart-card-content small {
  display: block;
}
.cart-card-content small {
  color: #64748b;
}
.cart-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart-select-card input:checked + .cart-card-content {
  border-color: var(--secondary);
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(0,123,255,.12);
}
.cart-remove {
  padding: 0 14px 14px;
}
.cart-total {
  margin-top: 18px;
}
.slider { display: grid; gap: 10px; }
.slider-main {
  height: 360px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.slider-main img {
  max-height: 340px;
  object-fit: contain;
}
.thumbs { display: flex; gap: 8px; overflow: auto; }
.thumbs img {
  width: 82px;
  height: 58px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}
.thumbs img.active { border-color: var(--secondary); }
.pricing {
  border-top: 4px solid var(--secondary);
  padding: 22px;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  background: #f8fafc;
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}
.faq-a { display: none; padding: 14px; }
.faq-item.open .faq-a { display: block; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.full { grid-column: 1 / -1; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  min-height: 38px;
  padding: 8px;
}
textarea { min-height: 110px; }
.premium-footer {
  background: linear-gradient(135deg, #07111f 0%, #0d2b5c 54%, #0f3328 100%);
  color: #d7e2f0;
}
.footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, .7fr) minmax(160px, .8fr) minmax(190px, .9fr);
  gap: 30px;
}
.footer-logo-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.footer-logo-line img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.footer-description,
.footer-extra {
  color: #d7e2f0;
  margin-top: 16px;
}
.footer-title {
  display: block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  color: #e9f2ff;
  font-weight: 700;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links a:hover {
  color: #ffd18a;
}
.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.footer-contact-list a {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  background: rgba(255,255,255,.07);
}
.footer-contact-list span,
.footer-contact-list strong {
  display: block;
}
.footer-contact-list span {
  color: #a9bdd6;
  font-size: 12px;
}
.footer-contact-list strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
}
.social-links {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.product-card .actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}
.product-card .actions-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.product-card form {
  margin: 0;
}
.product-card .btn {
  position: relative;
  overflow: hidden;
  font-size: 13px;
  padding: 10px 11px;
  width: 100%;
  min-height: 40px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.product-card .btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}
.product-card .btn:active {
  transform: translateY(1px) scale(.98);
  box-shadow: 0 4px 10px rgba(15, 23, 42, .14);
}
.product-card .btn.details {
  background: linear-gradient(135deg, #0d2b5c, #174ea6) !important;
  color: #fff !important;
}
.product-card .btn.order {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  color: #fff !important;
}
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.16);
}
.payment-icons img {
  height: 34px;
  width: auto;
  max-width: 74px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 3px;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px;
  color: #b9c8da;
  font-size: 13px;
}
.about-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.about-grid { align-items: center; }
.rich-content p:first-child { margin-top: 0; }
.rich-content img { max-width: 100%; height: auto; }
/* =============================================
   MOBILE HAMBURGER MENU VARIABLES
   ============================================= */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-direction: column;
  gap: 5px;
  transition: background .16s;
  z-index: 101;
}
.hamburger-btn:hover { background: rgba(0,0,0,.06); }
.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-nav-overlay.active { display: block; animation: fadeInOverlay .22s ease; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

/* Mobile Nav Drawer (right side) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 200;
  box-shadow: -6px 0 32px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.mobile-nav-drawer-header .logo {
  font-size: 18px;
}
.mobile-nav-drawer-close {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  color: #64748b;
  transition: background .16s, color .16s;
}
.mobile-nav-drawer-close:hover { background: #fee2e2; color: #ef4444; border-color: #ef4444; }
.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links a,
.mobile-nav-links .mobile-nav-parent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: background .14s, color .14s;
  font-size: 15px;
}
.mobile-nav-links a:hover,
.mobile-nav-links .mobile-nav-parent:hover { background: #f0f7ff; color: var(--primary); }
.mobile-nav-links .mobile-nav-parent {
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.mobile-nav-links .mobile-nav-parent .arrow {
  font-size: 13px;
  transition: transform .2s ease;
  color: #94a3b8;
}
.mobile-nav-links .mobile-nav-parent.expanded .arrow { transform: rotate(180deg); }
.mobile-nav-links .mobile-sub-links {
  display: none;
  flex-direction: column;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.mobile-nav-links .mobile-sub-links.open { display: flex; }
.mobile-nav-links .mobile-sub-links a {
  padding: 10px 22px 10px 40px;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-nav-links .mobile-sub-links a:last-child { border-bottom: none; }
.mobile-nav-drawer-footer {
  padding: 16px 22px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-drawer-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  font-weight: 600;
}

/* =============================================
   TABLET & MOBILE RESPONSIVE (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn { display: flex; }
  
  .site-header {
    min-height: 66px;
    height: 66px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .site-header nav { display: none; }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid { grid-template-columns: 1fr; }
  
  .search-box { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .hero h1 { font-size: clamp(26px, 6vw, 42px); }
  .hero-slide-btn {
    top: 50%;
    bottom: auto;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero-dots { bottom: 16px; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-contact-list { grid-template-columns: 1fr; }
  .about-grid { display: flex; flex-direction: column; gap: 30px; }
  .about-grid > div:first-child { width: 100%; order: 2; }
  .about-grid > div:last-child { width: 100%; order: 1; }
  .about-image { border-radius: 12px; }
  /* Card adjustments for tablet */
  .product-img { height: 180px; }
  .section { padding: 40px 16px; }
  .container { padding: 0 4px; }
  /* Hero inner responsive */
  .hero { padding: 60px 16px; min-height: 520px; }
  .hero-inner { grid-template-columns: 1fr 280px; gap: 24px; }
  .hero-stat-card { padding: 14px 16px; }
  .hero-stat-info strong { font-size: 18px; }
}

/* =============================================
   TABLET ONLY (601px - 900px)
   ============================================= */
@media (min-width: 601px) and (max-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-bottom { grid-column: 1 / -1; }
}

/* =============================================
   SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .logo img { height: 38px; }
  .logo { font-size: 17px; }
  .topbar { font-size: 12px; padding: 6px 10px; }
  .hero {
    min-height: unset;
    padding: 60px 14px 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-copy, .hero p { font-size: 15px; }
  .hero-stat-card { padding: 12px 14px; }
  .hero-stat-info strong { font-size: 16px; }
  .section { padding: 32px 12px; }
  .cart-grid { grid-template-columns: 1fr; }
  .product-card .actions-row { grid-template-columns: 1fr; }
  .order-submit-actions { grid-template-columns: 1fr; }
  .pricing { padding: 16px; }
}

/* Desktop (> 900px) — hide mobile elements */
@media (min-width: 901px) {
  .hamburger-btn { display: none !important; }
  .mobile-nav-drawer { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
}

.about-preview .heading {
  margin-bottom: 20px;
  position: relative;
}
.about-preview .heading:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 10px;
}
.about-image {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body.dark-mode {
  background: var(--site-bg);
  color: var(--text-color);
}
body.dark-mode .site-header,
body.dark-mode .dropdown,
body.dark-mode .card,
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background: var(--card-bg);
  color: var(--text-color);
  border-color: #334155;
}
body.dark-mode .site-header nav a,
body.dark-mode .logo,
body.dark-mode .card h3,
body.dark-mode .faq-q {
  color: var(--heading-color);
}
body.dark-mode .section.gray,
body.dark-mode .faq-q {
  background: #111827;
}
body.theme-brandstore .hero .slide:after { background: rgba(15,23,42,.72); }
body.theme-agency .hero .slide:after { background: rgba(18,53,91,.68); }
body.theme-suab-reference .hero .slide:after { background: rgba(13,43,92,.65); }
body.theme-digital-pro .hero .slide:after { background: rgba(6,78,59,.7); }
body.theme-marketplace .hero .slide:after { background: rgba(49,46,129,.68); }
