/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F4A24A;
  --orange-dark: #e8903a;
  --orange-light: #FFF4E6;
  --black: #1a1208;
  --dark: #2d2210;
  --mid: #6b5740;
  --light: #f9f4ee;
  --white: #ffffff;
  --border: rgba(244, 162, 74, 0.18);
  --shadow: 0 4px 24px rgba(26,18,8,.08);
  --shadow-lg: 0 12px 48px rgba(26,18,8,.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
}
.section-title.center { text-align: center; margin-bottom: 48px; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(244,162,74,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,162,74,.45);
}
.btn-primary.full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────── */
.announce-bar {
  background: var(--black);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
}
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.announce-sep { color: rgba(255,255,255,.25); }
.announce-bar a {
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.announce-bar a:hover { color: #fbbf60; }

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(10,8,4,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244,162,74,.12);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(244,162,74,.4);
  padding: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
}
.nav-brand-accent {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--orange);
}
.nav-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 3px;
}

/* Center nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-link {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-link.active { color: var(--orange); }

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(37,211,102,.12);
  border: 1.5px solid rgba(37,211,102,.28);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-wa-btn:hover {
  background: rgba(37,211,102,.22);
  border-color: rgba(37,211,102,.55);
  transform: translateY(-1px);
}
.nav-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: var(--orange);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(244,162,74,.35);
}
.nav-shop-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,74,.45);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px;
  margin-left: auto;
  transition: var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,.14); }
.nav-hamburger span {
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,8,4,.97);
  border-top: 1px solid rgba(244,162,74,.12);
  backdrop-filter: blur(20px);
  animation: slideDown .2s ease;
  padding: 8px 0 16px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--orange); background: rgba(244,162,74,.05); }
.mobile-menu .mob-wa {
  margin: 8px 16px 0;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 10px;
  color: #4ade80;
  justify-content: center;
  padding: 13px 20px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0c0905;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 32px 80px;
  overflow: hidden;
}

/* Clean background — two soft glows only */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hbg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,162,74,.13) 0%, transparent 70%);
  top: -180px; right: -60px;
}
.g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,162,74,.07) 0%, transparent 70%);
  bottom: -100px; left: -60px;
}
/* Remove g3 and grain — hide them */
.hbg-grain, .g3, .htag { display: none; }

/* Hero inner layout */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 72px;
}

/* LEFT */
.hero-left { min-width: 0; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  background: rgba(244,162,74,.09);
  border: 1px solid rgba(244,162,74,.22);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.hero-headline {
  margin-bottom: 22px;
}
.hh-line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  animation: fadeUp .6s ease both;
}
.hh-l1 { font-size: clamp(46px, 6vw, 80px); animation-delay: .08s; }
.hh-l2 {
  font-size: clamp(46px, 6vw, 80px);
  animation-delay: .16s;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,162,74,.45);
}
.hh-l2 em {
  font-style: italic;
  color: var(--orange);
  -webkit-text-stroke: 0;
}
.hh-l3 {
  font-size: clamp(46px, 6vw, 80px);
  animation-delay: .24s;
  background: linear-gradient(90deg, #F4A24A 0%, #f7c07a 50%, #F4A24A 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .6s ease both, shimmer 5s linear infinite;
  animation-delay: .24s, .8s;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-body {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp .6s ease both;
  animation-delay: .32s;
  max-width: 440px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp .6s ease both;
  animation-delay: .4s;
}
.hcta-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(244,162,74,.38);
}
.hcta-main:hover {
  background: #f7c07a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244,162,74,.48);
}
.hcta-main svg { transition: transform .3s ease; }
.hcta-main:hover svg { transform: translateX(4px); }
.hcta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(37,211,102,.09);
  border: 1.5px solid rgba(37,211,102,.22);
  transition: var(--transition);
}
.hcta-wa:hover {
  background: rgba(37,211,102,.16);
  border-color: rgba(37,211,102,.45);
  transform: translateY(-2px);
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp .6s ease both;
  animation-delay: .48s;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.trust-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(244,162,74,.09);
  border: 1px solid rgba(244,162,74,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.07);
}

/* ── RIGHT — logo column ───────────────────────────────── */
.hero-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: fadeUp .8s ease both;
  animation-delay: .2s;
}

/* Logo orb — clean circular, perfectly centered */
.hero-logo-orb {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Subtle single ring glow */
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(244,162,74,.18);
  animation: orb-breathe 4s ease-in-out infinite;
}
.orb-r1 { inset: 0; }
.orb-r2 { inset: -18px; border-color: rgba(244,162,74,.09); animation-delay: .6s; }
.orb-r3 { display: none; }

@keyframes orb-breathe {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.02); }
}

/* The circular logo container */
.orb-core {
  width: 256px; height: 256px;
  border-radius: 50%;
  border: 2px solid rgba(244,162,74,.3);
  overflow: hidden;           /* clips image perfectly circular */
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 50px rgba(244,162,74,.12),
    0 20px 60px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.orb-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;            /* parent handles the circle clip */
  transform: none;             /* no tilt */
  filter: none;                /* no shadow that could distort */
}

/* Floating badges — cleaner, fewer */
.orb-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(14,11,6,.88);
  border: 1px solid rgba(244,162,74,.28);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  z-index: 10;
  white-space: nowrap;
  letter-spacing: .02em;
}
.orb-badge svg { color: var(--orange); flex-shrink: 0; }
.ob1 { top: 12px;   left: -24px;  animation: badge-float 5s ease-in-out infinite; }
.ob2 { bottom: 24px; left: -28px; animation: badge-float 6s ease-in-out infinite reverse; animation-delay: .7s; }
.ob3 { top: 44px;   right: -26px; animation: badge-float 4.5s ease-in-out infinite; animation-delay: 1.4s; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* Stats row */
.hero-stats-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(244,162,74,.1);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.hstat { text-align: center; }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hstat-div {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.07);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeUp 1s ease both;
  animation-delay: .9s;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(244,162,74,.5), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .3; }
  50%      { opacity: .9; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CATEGORIES STRIP ─────────────────────────────────── */
.categories-strip {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.cats-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cats-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.cats-row::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--mid);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.cat-chip.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 3px 12px rgba(244,162,74,.3);
}

/* ── PRODUCTS SECTION ─────────────────────────────────── */
.products-section {
  padding: 60px 0 80px;
  background: var(--white);
}

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

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--mid);
  opacity: .55;
}
.search-wrap input {
  padding: 10px 16px 10px 40px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-family: inherit;
  background: var(--light);
  color: var(--dark);
  width: 240px;
  transition: var(--transition);
  outline: none;
}
.search-wrap input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,162,74,.12);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* ── PRODUCT CARD ─────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  animation: fadeUp .5s ease both;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,162,74,.28);
}

.p-img-wrap {
  position: relative;
  height: 230px;
  background: var(--light);
  overflow: hidden;
}
.p-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .p-img-wrap img { transform: scale(1.04); }

.p-no-img {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  opacity: .3;
  gap: 8px;
  font-size: 13px;
}

.p-cond-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.cond-like-new { background: #d4edda; color: #276749; }
.cond-good     { background: #dbeafe; color: #1e40af; }
.cond-fair     { background: #fef3c7; color: #92400e; }
.cond-repair   { background: #fee2e2; color: #9b1c1c; }

.p-cat-badge {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.p-body { padding: 16px; }
.p-cat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.p-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.p-price {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
}
.p-price span {
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--mid);
  font-weight: 400;
}
.btn-order {
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--orange-dark);
  transform: scale(1.04);
}

/* ── EMPTY / LOADING ──────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--mid);
}
.empty-state svg { opacity: .3; margin: 0 auto 16px; display: block; }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.empty-state p  { font-size: 14px; }

.loading-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--mid);
}
.loading-state p { margin-top: 16px; font-size: 14px; }

.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── WHY US ───────────────────────────────────────────── */
.why-us {
  padding: 80px 0;
  background: var(--light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(244,162,74,.28);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.contact-link:hover {
  border-color: rgba(244,162,74,.4);
  background: var(--orange-light);
  transform: translateX(4px);
}
.cl-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl-icon.wa   { background: #dcf8c6; color: #128c7e; }
.cl-icon.mail { background: #dbeafe; color: #2563eb; }
.cl-icon.loc  { background: #fce7f3; color: #be185d; }
.cl-label { font-size: 10px; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.cl-val   { font-size: 13px; color: var(--dark); font-weight: 500; margin-top: 2px; }

/* ── ORDER FORM ───────────────────────────────────────── */
.order-form-wrap {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.form-note {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
}
.order-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.field input, .field textarea, .field select {
  padding: 11px 13px;
  border: 1.5px solid rgba(244,162,74,.18);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,162,74,.1);
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { color: #38a169; margin: 0 auto 12px; display: block; }
.form-success h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-success p  { font-size: 14px; color: var(--mid); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.footer-links-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 11px;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom svg { vertical-align: middle; display: inline; }

/* ── MODAL ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(10px);
  transition: transform .3s ease;
}
.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.13); }
.modal-img {
  width: 100%; height: 320px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal-no-img {
  width: 100%; height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  opacity: .35;
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal-body { padding: 24px 28px 28px; }
.modal-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.modal-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.modal-meta-item { display: flex; flex-direction: column; gap: 3px; }
.modal-meta-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid);
  font-weight: 600;
}
.modal-meta-item .val {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  font-family: 'Playfair Display', serif;
}
.modal-meta-item .cond-val { font-size: 14px; font-family: 'DM Sans', sans-serif; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wa-order {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-wa-order:hover { background: #1eb856; transform: translateY(-1px); }

/* ── TOAST ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.toast.show  { transform: translateY(0); opacity: 1; }
.toast.success { background: #276749; }
.toast.error   { background: #9b1c1c; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero { padding: 120px 24px 80px; }

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

  .hero-left { max-width: 100%; }
  .hero-body { max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  .hero-right {
    width: 100%;
    align-items: center;
  }

  /* Smaller orb on tablet */
  .hero-logo-orb { width: 280px; height: 280px; }
  .orb-core { width: 220px; height: 220px; }
  .ob1, .ob2, .ob3 { display: none; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Layout */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Announce bar */
  .announce-inner { gap: 8px; font-size: 11px; }
  .announce-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — PHONE  (≤ 600px)
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Tighter top padding for announcement + nav */
  .hero { padding: 118px 20px 64px; }

  /* Headline scaling */
  .hh-l1, .hh-l2, .hh-l3 { font-size: clamp(36px, 11.5vw, 52px); }

  /* Smaller orb on phone */
  .hero-logo-orb { width: 220px; height: 220px; }
  .orb-core { width: 176px; height: 176px; }
  .orb-r2 { display: none; }

  /* Stats grid compact */
  .hero-stats-grid { padding: 14px 18px; gap: 14px; }
  .hstat-num { font-size: 20px; }
  .hstat-lbl { font-size: 9px; }

  /* CTA buttons stack */
  .hero-cta-row { flex-direction: column; align-items: center; gap: 10px; }
  .hcta-main, .hcta-wa { width: 100%; justify-content: center; max-width: 320px; }

  /* Trust */
  .hero-trust { gap: 10px; }
  .trust-sep { display: none; }
  .trust-item { font-size: 11px; }

  /* Form row stacks */
  .form-row { grid-template-columns: 1fr; }

  /* Footer single column */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Modal */
  .modal-body { padding: 18px 18px 22px; }
  .modal-img { height: 220px; }

  /* Order form */
  .order-form-wrap { padding: 22px 18px; }

  /* Section header stacks */
  .section-header { flex-direction: column; align-items: flex-start; }
  .search-wrap { width: 100%; }
  .search-wrap input { width: 100%; }

  /* Products grid: 1 col on very small screens */
  .products-grid { grid-template-columns: 1fr; }

  /* Categories strip scrollable */
  .cats-row { flex-wrap: nowrap; overflow-x: auto; }

  /* Announce bar */
  .announce-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 10px; font-size: 10.5px; }
  .announce-bar { overflow: hidden; }

  /* Nav logo text shorter on tiny screens */
  .nav-brand-main, .nav-brand-accent { font-size: 17px; }
  .nav-brand-sub { display: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TINY (≤ 380px)
══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero { padding: 110px 16px 56px; }
  .hh-l1, .hh-l2, .hh-l3 { font-size: clamp(32px, 10vw, 44px); }
  .hero-logo-orb { width: 190px; height: 190px; }
  .orb-core { width: 154px; height: 154px; }
  .hero-stats-grid { gap: 10px; padding: 12px 14px; }
  .container { padding: 0 16px; }
}