:root {
  --orange: #F5841F;
  --orange-dark: #D96E0A;
  --orange-light: #FFF3E8;
  --red: #D94E2B;
  --red-dark: #B53D1F;
  --dark: #1C1C1E;
  --dark-2: #2C2C2E;
  --bg: #F5F5F7;
  --white: #FFFFFF;
  --text: #1C1C1E;
  --text-2: #636366;
  --text-3: #AEAEB2;
  --border: #E5E5EA;
  --green: #34C759;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-full: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.header-brand span { color: var(--text); font-weight: 600; font-size: 0.7em; }
.header-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 8px 14px;
  background: var(--bg);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-location:hover { background: var(--orange-light); color: var(--orange); }
.header-location svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.header-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  outline: none;
  background: var(--bg);
  transition: all 0.2s;
  color: var(--text);
}
.header-search input:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(245,132,31,0.1); }
.header-search input::placeholder { color: var(--text-3); }
.header-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-3);
  pointer-events: none;
}
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hdr-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
}
.hdr-btn:hover { background: var(--bg); }
.hdr-btn svg { width: 20px; height: 20px; }
.hdr-btn-primary {
  background: var(--orange);
  color: var(--white);
}
.hdr-btn-primary:hover { background: var(--orange-dark); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--orange);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.4rem; font-weight: 800; }
.hero-stat small { font-size: 0.78rem; opacity: 0.8; }

/* CATEGORIES SECTION */
.cats-section { padding: 16px 0 8px; }
.cats-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cats-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.cats-scroll::-webkit-scrollbar { height: 0; }
.cat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 14px;
  background: var(--white);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
}
.cat-chip:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.cat-chip.active { border-color: var(--orange); background: var(--orange); color: var(--white); }
.cat-chip.active .cat-chip-name { color: var(--white); }
.cat-chip-icon {
  font-size: 1rem;
  line-height: 1;
}
.cat-chip-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

/* SECTION */
.section { padding: 32px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}
.section-head a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  transition: color 0.2s;
}
.section-head a:hover { color: var(--red); }
.section-empty {
  text-align: center;
  padding: 24px 20px;
  color: var(--text-3);
  font-size: 0.85rem;
}

/* PRODUCT GRID */
.products-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.products-row::-webkit-scrollbar { height: 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.p-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  position: relative;
  min-width: 200px;
  flex-shrink: 0;
}
.p-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.p-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.p-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 16px;
}
.p-card-img img { max-height: 130px; object-fit: contain; }
.p-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.p-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}
.p-card-price-old {
  font-size: 0.75rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.p-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: auto;
}
.p-card-foot { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.btn-add {
  width: 100%;
  padding: 11px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-add:hover { background: var(--orange-dark); }
.btn-wa {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-wa:hover { background: rgba(52,199,89,0.06); }

/* (promo cards removed) */

/* CUPOM BAR */
.cupom-strip {
  background: var(--dark);
  padding: 12px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cupom-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 16px);
}
.cupom-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cupom-strip-text { color: var(--white); font-size: 0.85rem; font-weight: 500; }
.cupom-strip-text strong { font-weight: 700; }
.cupom-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px dashed rgba(255,255,255,0.3);
}
.cupom-pill-code { color: var(--white); font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; }
.cupom-pill-btn {
  padding: 3px 10px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  transition: all 0.2s;
}
.cupom-pill-btn:hover { background: var(--orange-dark); }

/* MINI FOOTER */
.mini-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 20px;
  font-size: 0.72rem;
  color: var(--text-3);
  background: var(--white);
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.mini-footer a { color: var(--text-2); transition: color 0.2s; }
.mini-footer a:hover { color: var(--orange); }
.mini-footer-sep { color: var(--border); }

/* PRODUCT DETAIL MODAL */
.pd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.pd-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 820px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pd-in 0.3s ease;
}
@keyframes pd-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pd-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}
.pd-close:hover { background: var(--red); color: var(--white); }
.pd-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 28px;
}
.pd-img {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.pd-img img { max-height: 220px; object-fit: contain; }
.pd-info { display: flex; flex-direction: column; gap: 12px; }
.pd-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pd-title { font-size: 1.6rem; font-weight: 800; line-height: 1.2; color: var(--text); }
.pd-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.pd-price-box {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.pd-price-old { font-size: 0.9rem; color: var(--text-3); text-decoration: line-through; }
.pd-price { font-size: 2rem; font-weight: 800; color: var(--orange); }
.pd-price-discount {
  display: inline-block;
  padding: 3px 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
}
.pd-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--orange-dark);
  font-weight: 600;
}
.pd-msg {
  background: var(--orange-light);
  color: var(--orange);
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.pd-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.pd-btn {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
  text-align: center;
}
.pd-btn-primary { background: var(--orange); color: var(--white); }
.pd-btn-primary:hover { background: var(--orange-dark); }
.pd-btn-wa {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pd-btn-wa:hover { background: rgba(52,199,89,0.06); }

/* AUTH MODAL */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pd-in 0.3s ease;
  padding: 32px 28px;
}
.modal-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-x:hover { background: var(--red); color: var(--white); }
.auth-tabs { display: flex; margin-bottom: 24px; border-bottom: 2px solid var(--bg); }
.auth-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  color: var(--text-3);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.auth-tab.active { color: var(--text); border-color: var(--orange); }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.field input {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
  background: var(--bg);
  outline: none;
}
.field input:focus { border-color: var(--orange); background: var(--white); }
.auth-err {
  background: #FEE2E2;
  color: var(--red);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
}
.auth-go {
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
  margin-top: 4px;
}
.auth-go:hover:not(:disabled) { background: var(--orange-dark); }
.auth-go:disabled { opacity: 0.6; cursor: not-allowed; }

/* CART MODAL */
.cart-box { max-width: 560px; padding: 24px; }
.cart-box h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.cart-empty-msg { text-align: center; padding: 32px 16px; color: var(--text-3); }
.cart-empty-msg p { margin-bottom: 16px; }
.btn-orange {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.btn-orange:hover { background: var(--orange-dark); }
.cart-list { display: flex; flex-direction: column; gap: 10px; max-height: 300px; overflow-y: auto; }
.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.cart-row-info { flex: 1; }
.cart-row-info h4 { font-size: 0.88rem; font-weight: 600; }
.cart-row-info small { font-size: 0.78rem; color: var(--text-3); }
.cart-row-qty { display: flex; align-items: center; gap: 6px; }
.cart-row-qty button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-row-qty button:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cart-row-qty span { font-weight: 700; min-width: 20px; text-align: center; }
.cart-row-sub { font-weight: 800; color: var(--orange); min-width: 72px; text-align: right; font-size: 0.9rem; }
.cart-row-rm { background: transparent; font-size: 0.9rem; opacity: 0.3; transition: all 0.2s; }
.cart-row-rm:hover { opacity: 1; color: var(--red); }
.cart-block {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 12px;
  border: 1px solid var(--border);
}
.cart-block h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 10px; }
.cep-row { display: flex; gap: 8px; }
.cep-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: var(--white);
  outline: none;
}
.cep-row button {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.cep-row button:hover:not(:disabled) { background: var(--orange-dark); }
.cep-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.cep-err { color: var(--red); font-size: 0.78rem; margin-top: 6px; }
.cep-ok {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--orange);
}
.cep-ok-val { color: var(--orange); font-weight: 800; }
.cep-ok-dist { color: var(--text-2); font-size: 0.82rem; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-2);
}
.cart-grand {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin: 8px 0 14px;
  padding: 8px 0;
}
.cart-grand strong { font-size: 1.3rem; color: var(--orange); }
.cart-pay-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.2s;
  margin-bottom: 8px;
}
.cart-pay-btn:hover:not(:disabled) { filter: brightness(1.1); }
.cart-pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* USER MENU */
.user-wrap { position: relative; }
.user-dd {
  position: absolute;
  top: 100%; right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 50;
}
.user-wrap:hover .user-dd { opacity: 1; visibility: visible; transform: translateY(4px); }
.user-dd button {
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.user-dd button:hover { background: var(--bg); color: var(--red); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all 0.2s;
  animation: wa-p 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-p {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-float svg { width: 28px; height: 28px; color: white; }
.wa-tip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: all 0.2s;
}
.wa-tip::after { content:''; position:absolute; right:-5px; top:50%; transform:translateY(-50%); border:5px solid transparent; border-left-color:var(--dark); }
.wa-float:hover .wa-tip { opacity: 1; visibility: visible; transform: translateX(0); }

/* SCROLL TOP */
.go-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.go-top.show { opacity: 1; visibility: visible; }
.go-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* LOADING */
.loading-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--white);
  gap: 16px;
}
.loading-spin {
  width: 44px; height: 44px;
  border: 4px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-txt { font-size: 0.95rem; color: var(--text-2); font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pd-body { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .header-search { order: 10; max-width: 100%; flex-basis: 100%; }
  .header-location { display: none; }
  .hdr-btn span { display: none; }
  .hdr-btn { padding: 10px 12px; }
  .hero { padding: 36px 0; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .p-card { min-width: 160px; }
  .p-card-img { height: 120px; padding: 10px; }
  .p-card-img img { max-height: 100px; }
  .p-card-name { font-size: 0.78rem; }
  .p-card-price { font-size: 1rem; }
  .p-card-foot { padding: 0 10px 10px; }
  .cats-title { font-size: 0.78rem; }
  .section-head h2 { font-size: 1.1rem; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-tip { display: none; }
  .go-top { bottom: 76px; right: 16px; width: 36px; height: 36px; }
}
