/* ═══════════════════════════════════════════════════════════
   DEQEEN STORE — Production Stylesheet v2
   Refined · RTL · Fully Responsive
   Breakpoints:
   • xs  < 400px
   • sm  < 640px
   • md  640px – 1024px
   • lg  > 1024px
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Brand */
  --brand:        #FF4D00;
  --brand-mid:    #FF6B2B;
  --brand-light:  #FF8C55;
  --brand-tint:   #FFF3EE;
  --brand-tint2:  #FFE8DC;
  --brand-glow:   rgba(255,77,0,0.22);
  --brand-glow2:  rgba(255,77,0,0.08);

  /* Neutrals */
  --ink:          #111318;
  --ink-2:        #2C3040;
  --ink-3:        #4B5568;
  --muted:        #8A94A8;
  --border:       #E4E8EF;
  --border-2:     #EFF2F7;
  --surface:      #FFFFFF;
  --surface-2:    #F7F9FC;
  --surface-3:    #EFF2F7;
  --bg:           #F4F6FB;

  /* WhatsApp */
  --wa:           #22C55E;
  --wa-dark:      #16A34A;
  --wa-glow:      rgba(34,197,94,0.25);

  /* Elevations */
  --sh-xs:   0 1px 3px rgba(15,20,40,0.06);
  --sh-sm:   0 2px 8px rgba(15,20,40,0.07), 0 1px 2px rgba(15,20,40,0.04);
  --sh-md:   0 6px 24px rgba(15,20,40,0.10), 0 2px 6px rgba(15,20,40,0.05);
  --sh-lg:   0 16px 48px rgba(15,20,40,0.13), 0 4px 12px rgba(15,20,40,0.06);
  --sh-xl:   0 28px 72px rgba(15,20,40,0.16);
  --sh-brand: 0 8px 28px rgba(255,77,0,0.30);
  --sh-wa:    0 6px 22px rgba(34,197,94,0.30);

  /* Radii */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  26px;
  --r-2xl: 34px;
  --r-full: 9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 0.68, 0, 1.15);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:cubic-bezier(0.4,  0,    0.2, 1);
  --t-fast:  0.14s;
  --t-base:  0.22s;
  --t-slow:  0.38s;

  /* Layout */
  --nav-h:    66px;
  --max-w:    1440px;
  --gutter:   clamp(16px, 4%, 40px);
}

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--brand-tint2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ─────────────────────────────────────────
   SCROLLBAR HIDDEN UTILITY
───────────────────────────────────────── */
.no-scrollbar { scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.no-scrollbar::-webkit-scrollbar { display: none; }


/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #FF4D00 0%, #FF7A35 50%, #FF4D00 100%);
  background-size: 200% 100%;
  animation: shiftGrad 6s linear infinite;
  color: white;
  text-align: center;
  padding: 9px 16px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}
.topbar span { opacity: .82; margin: 0 8px; }
@keyframes shiftGrad {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15,20,40,0.04), var(--sh-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #FF5A10, #FF3D00);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: white;
  box-shadow: var(--sh-brand);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 60%;
  background: rgba(255,255,255,0.14);
  transform: rotate(-12deg);
}
.logo-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.logo-name em { color: var(--brand); font-style: normal; }

/* Search */
.search-bar {
  flex: 1;
  max-width: 440px;
  min-width: 0;
  position: relative;
}
.search-bar input {
  width: 100%; height: 40px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 0 42px 0 18px;
  font-size: .86rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.search-bar input:focus {
  background: var(--surface);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow2);
}
.search-bar input::placeholder { color: var(--muted); }
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  display: flex;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: .83rem; font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-base), box-shadow var(--t-base);
  border: none;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: .005em;
}
.nav-btn-ghost {
  background: transparent;
  color: var(--ink-3);
  border: 1.5px solid transparent;
}
.nav-btn-ghost:hover {
  background: var(--surface-3);
  color: var(--ink);
  border-color: var(--border);
}
.nav-btn-wa {
  background: var(--wa);
  color: white;
  box-shadow: var(--sh-wa);
}
.nav-btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(34,197,94,0.38);
}
.nav-btn-wa:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  cursor: pointer;
  padding: 7px;
  border: none;
  background: none;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--surface-3); }
.hamburger span {
  width: 21px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .28s var(--ease-smooth);
  display: block;
}

/* Mobile search strip */
.mobile-search {
  display: none;
  padding: 10px var(--gutter);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mobile-search input {
  width: 100%; height: 40px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 0 18px;
  font-size: .88rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.mobile-search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow2);
}


/* ═══════════════════════════════════════════════════════════
   DRAWER
═══════════════════════════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,14,28,0.5);
  z-index: 800;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed;
  right: -300px; top: 0; bottom: 0;
  width: 280px;
  background: var(--surface);
  z-index: 900;
  transition: right var(--t-slow) var(--ease-smooth);
  overflow-y: auto;
  padding: 24px 18px 32px;
  box-shadow: var(--sh-xl);
  border-left: 1px solid var(--border);
}
.drawer.open { right: 0; }

.drawer-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.drawer-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 18px;
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer-close:hover { background: var(--surface-3); color: var(--ink); }

.drawer-nav a {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: var(--ink-2);
  font-size: .92rem; font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast), padding-right var(--t-base);
  margin-bottom: 3px;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--brand-tint);
  color: var(--brand);
  padding-right: 18px;
}
.drawer-nav a .icon { font-size: 19px; width: 24px; text-align: center; flex-shrink: 0; }

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.drawer-wa {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 14px;
  border-radius: var(--r-lg);
  font-size: .93rem; font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  box-shadow: var(--sh-wa);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.drawer-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════════════
   BOTTOM NAV
═══════════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--border);
  z-index: 600;
  padding: 6px 8px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(15,20,40,0.08);
}
.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bnav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 6px 10px;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-base);
  border: none;
  background: none;
  min-width: 54px;
  flex: 1;
}
.bnav-item:active { transform: scale(.92); }
.bnav-item .bicon { font-size: 20px; line-height: 1; }
.bnav-item .blabel { font-size: .58rem; font-weight: 600; color: var(--muted); letter-spacing: .01em; }
.bnav-item.active .blabel { color: var(--brand); }
.bnav-item.active { background: var(--brand-tint); }


/* ═══════════════════════════════════════════════════════════
   LAYOUT WRAPPER
═══════════════════════════════════════════════════════════ */
.main-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 70vh;
}
main.main-content { padding-bottom: 80px; }


/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════ */
.hero {
  margin: 16px 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  box-shadow: var(--sh-lg);
}
.hero-slides {
  display: flex;
  transition: transform .55s var(--ease-smooth);
  width: 100%;
}
.hero-slide {
  min-width: 100%;
  padding: 48px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,77,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hs1 { background: linear-gradient(135deg, #12151C 0%, #1E1008 100%); }
.hs2 { background: linear-gradient(135deg, #0A1628, #0F2744, #0A3358); }
.hs3 { background: linear-gradient(135deg, #0D1117, #1A1035, #0D2340); }

.hero-text { flex: 1; position: relative; z-index: 2; min-width: 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: .73rem; font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 15px;
  letter-spacing: .03em;
}
.hero-title {
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.22;
  margin-bottom: 11px;
  letter-spacing: -.03em;
}
.hero-title strong { color: var(--brand); }
.hero-subtitle {
  color: rgba(255,255,255,0.58);
  font-size: clamp(.8rem, 1.6vw, .97rem);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-btn-main {
  background: linear-gradient(135deg, #FF5A10, #FF3D00);
  color: white;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: .86rem; font-weight: 700;
  text-decoration: none;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--sh-brand);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .01em;
}
.hero-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,77,0,0.45); }
.hero-btn-main:active { transform: translateY(0); }

.hero-btn-sec {
  background: rgba(255,255,255,0.09);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: .86rem; font-weight: 600;
  text-decoration: none;
  transition: background var(--t-base), border-color var(--t-base);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-btn-sec:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }

.hero-emoji {
  font-size: clamp(4rem, 9vw, 6.5rem);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  animation: float 3.6s ease-in-out infinite;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}
.hero-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.hero-dot {
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all .3s var(--ease-smooth);
  border: none; padding: 0;
  width: 5px;
}
.hero-dot.active {
  background: var(--brand);
  width: 22px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-10px) rotate(-2deg); }
  70%       { transform: translateY(-5px) rotate(1deg); }
}


/* ═══════════════════════════════════════════════════════════
   QUICK CATEGORIES STRIP
═══════════════════════════════════════════════════════════ */
.quick-cats {
  margin: 22px 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  extend: no-scrollbar;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.quick-cats::-webkit-scrollbar { display: none; }

.qcat {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out);
}
.qcat:hover { transform: translateY(-3px); }
.qcat-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--sh-xs);
}
.qcat:hover .qcat-icon,
.qcat.active .qcat-icon {
  border-color: var(--brand);
  background: var(--brand-tint);
  box-shadow: 0 8px 20px var(--brand-glow);
}
.qcat-label {
  font-size: .66rem; font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: .01em;
}
.qcat.active .qcat-label { color: var(--brand); }


/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════ */
.sec-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin: 32px 0 18px;
  gap: 8px;
}
.sec-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.sec-title span { color: var(--brand); }
.sec-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--brand); font-weight: 600;
  text-decoration: none;
  transition: gap var(--t-base);
  flex-shrink: 0;
}
.sec-link:hover { gap: 9px; }


/* ═══════════════════════════════════════════════════════════
   PROMO STRIP
═══════════════════════════════════════════════════════════ */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.promo-card {
  border-radius: var(--r-xl);
  padding: 20px 18px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.promo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-base);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.promo-card:hover::after { background: rgba(255,255,255,0.05); }
.pc1 { background: linear-gradient(135deg, #FF4D00 0%, #FF8C42 100%); }
.pc2 { background: linear-gradient(135deg, #111827 0%, #1E293B 100%); border: 1px solid rgba(255,255,255,0.07); }
.pc3 { background: linear-gradient(135deg, #059669 0%, #10B981 100%); }
.promo-icon { font-size: 28px; flex-shrink: 0; position: relative; z-index: 1; }
.promo-info { position: relative; z-index: 1; }
.promo-info strong {
  display: block;
  font-size: .86rem; font-weight: 700;
  color: white; margin-bottom: 3px;
  letter-spacing: -.01em;
}
.promo-info span { font-size: .72rem; color: rgba(255,255,255,0.70); }


/* ═══════════════════════════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════════════════════════ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.trust-badge {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 12px;
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.trust-badge:hover {
  border-color: var(--brand-tint2);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.trust-badge .t-icon { font-size: 22px; margin-bottom: 7px; display: block; }
.trust-badge .t-title { font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.trust-badge .t-text  { font-size: .69rem; color: var(--muted); line-height: 1.4; }


/* ═══════════════════════════════════════════════════════════
   PRODUCT GRID & CARDS
═══════════════════════════════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.prod-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
  position: relative;
}
.prod-card:hover {
  border-color: rgba(255,77,0,0.22);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}
.prod-card:active { transform: scale(.98); transition-duration: .08s; }

/* Badge */
.prod-badge {
  position: absolute; top: 11px; right: 11px;
  font-size: .64rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-full);
  z-index: 2;
  letter-spacing: .03em;
}
.badge-sale { background: #FF3356; color: white; }
.badge-new  { background: #059669; color: white; }
.badge-hot  { background: var(--brand); color: white; }

/* Image area */
.prod-img-link { display: block; text-decoration: none; }
.prod-img-area {
  height: 162px;
  background: linear-gradient(145deg, #F6F8FF, #EEF1FF);
  display: flex; align-items: center; justify-content: center;
  font-size: 68px;
  position: relative; overflow: hidden;
}
.prod-img-area::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,20,40,0.03) 100%);
  pointer-events: none;
}
.prod-emoji {
  transition: transform .42s var(--ease-spring);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
  line-height: 1;
  user-select: none;
}
.prod-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .38s var(--ease-smooth);
}
.prod-card:hover .prod-emoji    { transform: scale(1.12) rotate(-4deg); }
.prod-card:hover .prod-real-img { transform: scale(1.04); }

/* Body */
.prod-body { padding: 14px 14px 15px; }
.prod-cat-tag {
  font-size: .64rem; font-weight: 700;
  color: var(--brand);
  margin-bottom: 5px; display: block;
  text-transform: uppercase; letter-spacing: .05em;
}
.prod-name-link { text-decoration: none; }
.prod-name {
  font-size: .87rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px; line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.01em;
}
.prod-desc {
  font-size: .74rem; color: var(--muted);
  line-height: 1.55; margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-stars {
  display: flex; align-items: center;
  gap: 3px; margin-bottom: 10px;
  font-size: .7rem; color: #F59E0B;
}
.stars-count { color: var(--muted); margin-right: 2px; }

/* Footer */
.prod-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-top: 1px solid var(--border-2);
  padding-top: 11px;
}
.prod-price { font-size: 1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.old {
  font-size: .69rem; color: var(--muted);
  text-decoration: line-through;
  display: block; font-weight: 400;
}

.wa-order-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--wa); color: white;
  border: none;
  padding: 8px 13px;
  border-radius: var(--r-full);
  font-size: .74rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background var(--t-fast), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--sh-wa);
  flex-shrink: 0;
}
.wa-order-btn:hover { background: var(--wa-dark); transform: scale(1.05); box-shadow: 0 6px 20px rgba(34,197,94,0.38); }
.wa-order-btn:active { transform: scale(.95); }


/* ═══════════════════════════════════════════════════════════
   FILTER CHIPS
═══════════════════════════════════════════════════════════ */
.filter-chips {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: .81rem; font-weight: 600;
  background: var(--surface); color: var(--ink-3);
  cursor: pointer; font-family: inherit;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  text-decoration: none;
  display: inline-block;
}
.chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.chip.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 4px 16px var(--brand-glow);
}


/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews-scroll {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: 258px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
}
.review-card:hover {
  border-color: var(--brand-tint2);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.r-stars  { color: #F59E0B; font-size: .84rem; margin-bottom: 11px; letter-spacing: .05em; }
.r-text   { font-size: .81rem; color: var(--ink-3); line-height: 1.65; margin-bottom: 16px; }
.r-author { display: flex; align-items: center; gap: 10px; }
.r-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #FF8C42);
  color: white; font-size: .88rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--brand-glow);
}
.r-name     { font-size: .81rem; font-weight: 700; color: var(--ink); }
.r-location { font-size: .69rem;  color: var(--muted); margin-top: 1px; }


/* ═══════════════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════════════ */
.page-header {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 24px 26px 22px;
  margin: 16px 0;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-xs);
}
.page-header h1 {
  font-size: 1.28rem; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
  letter-spacing: -.03em;
}
.page-header p  { font-size: .83rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════
   CATEGORY CARDS
═══════════════════════════════════════════════════════════ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 12px;
}
.cat-big-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer; text-decoration: none;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
  display: block;
  position: relative; overflow: hidden;
}
.cat-big-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-smooth);
  transform-origin: right;
}
.cat-big-card:hover {
  border-color: rgba(255,77,0,0.22);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}
.cat-big-card:hover::after { transform: scaleX(1); }
.cat-big-icon {
  font-size: 40px; margin-bottom: 12px;
  display: block;
  transition: transform .38s var(--ease-spring);
}
.cat-big-card:hover .cat-big-icon { transform: scale(1.18) rotate(-3deg); }
.cat-big-name  { font-size: .87rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em; }
.cat-big-count { font-size: .71rem; color: var(--muted); }
.cat-big-tag {
  display: inline-block; margin-top: 11px;
  font-size: .65rem; font-weight: 700;
  padding: 4px 11px; border-radius: var(--r-full);
  background: var(--brand-tint); color: var(--brand);
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL
═══════════════════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 22px 0;
  align-items: start;
}
.product-img-main {
  border-radius: var(--r-2xl);
  background: linear-gradient(145deg, #F6F8FF, #EEF1FF);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
  height: 340px;
  position: relative; overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-md);
}
.product-img-main img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 22px;
}
.product-info-col { padding: 4px 0; }
.product-info-col .cat-tag {
  font-size: .72rem; font-weight: 700;
  color: var(--brand); margin-bottom: 9px; display: block;
  text-transform: uppercase; letter-spacing: .06em;
}
.product-info-col h1 {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: 13px; line-height: 1.28;
  letter-spacing: -.03em;
}
.product-info-col .desc {
  font-size: .87rem; color: var(--muted);
  line-height: 1.72; margin-bottom: 22px;
}
.price-section {
  background: var(--brand-tint);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-tint2);
}
.price-main { font-size: 1.85rem; font-weight: 800; color: var(--brand); letter-spacing: -.04em; }
.price-old  { font-size: .86rem; color: var(--muted); text-decoration: line-through; margin-right: 10px; }

.wa-big-btn {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 15px 28px;
  border-radius: var(--r-full);
  font-size: .97rem; font-weight: 700;
  text-decoration: none;
  box-shadow: var(--sh-wa);
  transition: background var(--t-base), transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  width: 100%; margin-bottom: 12px;
  border: none; cursor: pointer;
  font-family: inherit;
  letter-spacing: .01em;
}
.wa-big-btn:hover {
  transform: translateY(-3px);
  background: var(--wa-dark);
  box-shadow: 0 14px 36px rgba(34,197,94,0.42);
}
.wa-big-btn:active { transform: translateY(0); }


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-hero {
  background: linear-gradient(135deg, var(--brand) 0%, #FF8C42 100%);
  border-radius: var(--r-2xl);
  padding: 44px 28px;
  text-align: center;
  color: white;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-brand);
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero h1 {
  font-size: clamp(1.4rem,4vw,1.8rem);
  font-weight: 700; margin-bottom: 9px;
  letter-spacing: -.03em;
}
.contact-hero p { opacity: .85; font-size: .92rem; margin-bottom: 24px; line-height: 1.55; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(182px, 1fr));
  gap: 12px; margin: 20px 0;
}
.contact-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 18px;
  text-align: center; text-decoration: none;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
  display: block; color: var(--ink);
}
.contact-card:hover {
  border-color: var(--brand-tint2);
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}
.cc-icon  { font-size: 28px; margin-bottom: 11px; display: block; }
.cc-title { font-size: .87rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cc-sub   { font-size: .76rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section { margin-top: 26px; }
.faq-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: -.02em; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 8px; overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
}
.faq-item:hover { border-color: var(--brand-tint2); box-shadow: var(--sh-xs); }
.faq-item.open  { border-color: var(--brand-tint2); box-shadow: var(--sh-sm); }
.faq-q {
  padding: 16px 20px;
  font-size: .87rem; font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '';
  width: 18px; height: 18px;
  background: var(--brand-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--brand);
  flex-shrink: 0;
  transition: transform .28s var(--ease-smooth), background .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23FF4D00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: .82rem; color: var(--muted); line-height: 1.72;
  transition: all .32s var(--ease-smooth);
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 20px 18px; }


/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 90px; left: 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  text-decoration: none; z-index: 700;
  box-shadow: var(--sh-wa);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  animation: waPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 34px rgba(34,197,94,0.55); animation: none; }
.wa-tip {
  position: absolute; left: 62px;
  background: var(--ink); color: white;
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: .73rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s;
  transform: translateX(-4px);
  box-shadow: var(--sh-sm);
}
.wa-tip::before {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
  border-right: none;
}
.float-wa:hover .wa-tip { opacity: 1; transform: translateX(0); }

@keyframes waPulse {
  0%,100% { box-shadow: var(--sh-wa); }
  50%      { box-shadow: 0 6px 40px rgba(34,197,94,0.55); }
}


/* ═══════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 98px; right: 16px;
  background: var(--ink); color: white;
  padding: 13px 20px;
  border-radius: var(--r-lg);
  font-size: .82rem; font-weight: 600;
  box-shadow: var(--sh-lg); z-index: 999;
  transform: translateY(16px) scale(.96); opacity: 0;
  transition: all .38s var(--ease-spring);
  pointer-events: none;
  max-width: min(290px, calc(100vw - 32px));
  border: 1px solid rgba(255,255,255,0.08);
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }


/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
═══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center; padding: 56px 20px;
  color: var(--muted); grid-column: 1 / -1;
}
.empty-state .e-icon { font-size: 52px; margin-bottom: 16px; display: block; opacity: .35; }
.empty-state h3 { font-size: .93rem; font-weight: 600; color: var(--ink-3); margin-bottom: 6px; }


/* ═══════════════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════════════ */
.alert {
  padding: 14px 18px; border-radius: var(--r-lg);
  margin-bottom: 14px;
  font-size: .86rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: white;
  padding: 56px var(--gutter) 0;
  margin-top: 36px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #FF5A10, #FF3D00);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: white;
  flex-shrink: 0;
  box-shadow: var(--sh-brand);
}
.footer-logo-name { font-size: 1.07rem; font-weight: 700; color: white; }
.footer-logo-name em { color: var(--brand); font-style: normal; }
.footer-brand p {
  font-size: .81rem; color: rgba(255,255,255,0.42);
  line-height: 1.78; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 7px; flex-wrap: wrap; }
.fsoc {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; text-decoration: none; color: white;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base) var(--ease-out);
  flex-shrink: 0;
}
.fsoc:hover {
  background: var(--brand); border-color: var(--brand);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: .82rem; font-weight: 700; color: white;
  margin-bottom: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: .01em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: .8rem; color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color var(--t-fast), padding-right var(--t-base);
  display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.88); padding-right: 5px; }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,0.28); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (641px – 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-row    { grid-template-columns: repeat(2, 1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .promo-strip  { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; max-width: 560px; margin: 22px auto; }
  .product-img-main { height: 280px; }
}
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(178px, 1fr)); }
}
@media (max-width: 767px) {
  footer { padding-top: 38px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Topbar */
  .topbar { font-size: .7rem; padding: 7px 10px; }

  /* Navbar */
  .navbar .search-bar { display: none; }
  .nav-btn-ghost      { display: none; }
  .nav-btn-wa span    { display: none; }
  .nav-btn-wa         { padding: 8px 11px; }
  .hamburger          { display: flex; }
  .logo-name          { font-size: .98rem; }

  /* Mobile search */
  .mobile-search { display: block; }

  /* Bottom nav */
  .bottom-nav { display: flex; }
  main.main-content { padding-bottom: 92px; }

  /* Float WA */
  .float-wa { bottom: 78px; left: 12px; width: 48px; height: 48px; font-size: 22px; }
  .wa-tip   { display: none; }

  /* Hero */
  .hero { border-radius: var(--r-xl); margin: 10px 0; min-height: auto; }
  .hero-slide { flex-direction: column; text-align: center; padding: 30px 5% 38px; gap: 16px; }
  .hero-text  { order: 2; }
  .hero-emoji { order: 1; font-size: 3.8rem; animation: none; }
  .hero-btns  { justify-content: center; gap: 8px; }
  .hero-btn-main, .hero-btn-sec { padding: 10px 18px; font-size: .8rem; }
  .hero-dots  { bottom: 11px; }
  .hero-subtitle { display: none; }

  /* Quick cats */
  .qcat-icon { width: 54px; height: 54px; font-size: 22px; border-radius: 16px; }
  .quick-cats { gap: 9px; margin: 15px 0; }

  /* Promo */
  .promo-strip { grid-template-columns: 1fr; gap: 8px; margin: 15px 0; }
  .promo-card  { padding: 15px 16px; }

  /* Trust */
  .trust-row   { grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 15px 0; }
  .trust-badge { padding: 12px 8px; }
  .trust-badge .t-icon { font-size: 20px; }

  /* Products */
  .prod-grid     { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .prod-img-area { height: 112px; font-size: 48px; }
  .prod-body     { padding: 10px 10px 12px; }
  .prod-name     { font-size: .79rem; }
  .prod-desc     { display: none; }
  .prod-cat-tag  { font-size: .61rem; }
  .prod-stars    { font-size: .64rem; margin-bottom: 7px; }
  .prod-price    { font-size: .92rem; }
  .wa-order-btn  { padding: 7px 10px; font-size: .71rem; }
  .prod-badge    { font-size: .59rem; padding: 3px 8px; top: 8px; right: 8px; }

  /* Chips */
  .chip { padding: 7px 14px; font-size: .77rem; }

  /* Categories */
  .cats-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-big-card  { padding: 20px 12px; }
  .cat-big-icon  { font-size: 34px; }
  .cat-big-name  { font-size: .81rem; }

  /* Detail */
  .product-detail   { grid-template-columns: 1fr; gap: 0; }
  .product-img-main { height: 224px; border-radius: var(--r-xl); font-size: 68px; }
  .product-info-col h1 { font-size: 1.1rem; }
  .price-main       { font-size: 1.58rem; }

  /* Reviews */
  .review-card { width: 222px; padding: 16px; }

  /* Contact */
  .contact-hero  { padding: 28px 18px; border-radius: var(--r-xl); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .contact-card  { padding: 18px 12px; }

  /* Page header */
  .page-header { padding: 18px 18px; border-radius: var(--r-lg); }
  .page-header h1 { font-size: 1.08rem; }

  /* Sec header */
  .sec-header { margin: 22px 0 14px; }
  .sec-title  { font-size: .98rem; }

  /* Footer */
  footer { padding-top: 30px; margin-top: 14px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; padding-bottom: 24px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Toast */
  .toast { bottom: 82px; right: 10px; left: 10px; max-width: 100%; font-size: .79rem; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — XS MOBILE (≤ 400px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  :root { --r-lg: 14px; --r-xl: 18px; --r-2xl: 22px; }
  .main-content { padding: 0 3%; }

  .prod-grid     { gap: 7px; }
  .prod-img-area { height: 96px; font-size: 40px; }
  .wa-order-btn  { padding: 6px 9px; font-size: .67rem; }
  .prod-price    { font-size: .84rem; }

  .qcat-icon { width: 46px; height: 46px; font-size: 20px; border-radius: 13px; }
  .cats-grid { gap: 8px; }

  .hero-slide { padding: 22px 4% 32px; }
  .hero-emoji { font-size: 3.4rem; }
  .hero-btn-main, .hero-btn-sec { padding: 9px 14px; font-size: .77rem; }

  .footer-col  { display: none; }
  .footer-brand { display: block !important; }
  .footer-bottom p { font-size: .7rem; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (> 1280px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .prod-grid  { grid-template-columns: repeat(5, 1fr); }
  .promo-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-row  { grid-template-columns: repeat(4, 1fr); }
  .hero-slide { padding: 60px 6%; }
}


/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.hidden-mobile  { display: block; }
.visible-mobile { display: none; }

@media (max-width: 640px) {
  .hidden-mobile  { display: none !important; }
  .visible-mobile { display: block !important; }
}