/* ============================================================
   EP Hardware — styles.css
   Archetype: Bold Industrial Light
   Completely different from Tu Cocina (dark/gold/serif)
   ============================================================ */

/* --- TOKENS --- */
:root {
  --bg:        #f7f4ef;
  --bg-2:      #ede9e1;
  --bg-dark:   #1c1917;
  --bg-card:   #ffffff;
  --ink:       #1c1917;
  --ink-soft:  #44403c;
  --ink-mute:  #78716c;
  --orange:    #f97316;
  --orange-2:  #ea6c0a;
  --yellow:    #fbbf24;
  --line:      rgba(28,25,23,0.10);
  --line-dark: rgba(28,25,23,0.20);
  --nav-h:     68px;
  --r:         4px;
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
  --ease-snap: cubic-bezier(0.34,1.56,0.64,1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.4rem, 6vw, 5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
em { font-style: normal; color: var(--orange); }

/* --- UTILITIES --- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 3rem);
}
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,.08);
  padding: 0.3em 0.8em;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title { max-width: 700px; }
.inline-link { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

/* --- REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8em 1.8em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-snap), box-shadow 0.2s;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--large { padding: 1em 2.2em; font-size: 1.1rem; }

/* --- CURSOR --- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0; transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  position: absolute;
  width: 34px; height: 34px;
  border: 2px solid rgba(249,115,22,.4);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 50px; height: 50px;
  border-color: var(--orange);
}

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  height: var(--nav-h);
  transition: background 0.3s, border-bottom 0.3s, backdrop-filter 0.3s;
}
.nav.is-solid {
  background: rgba(247,244,239,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--line-dark);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-icon { color: var(--orange); font-size: 1.1rem; }
.nav-tabs {
  display: flex; align-items: center;
  background: var(--bg-2);
  border: 2px solid var(--line-dark);
  border-radius: var(--r);
  padding: 3px;
  gap: 2px;
}
.nav-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35em 1.2em;
  border-radius: 2px;
  color: var(--ink-mute);
  transition: background 0.2s, color 0.2s;
}
.nav-tab.is-active,
.nav-tab:hover {
  background: var(--orange);
  color: #fff;
}
.nav-right { margin-left: auto; }
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-cta:hover { color: var(--orange); }
.nav-burger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 700;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bg);
  transition: color 0.2s;
}
.mobile-link:hover,
.mobile-link--active { color: var(--orange); }
.mobile-link--cta {
  font-size: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.7em 2em;
  border-radius: var(--r);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease-out;
}
.hero-bg.is-loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.92) 0%,
    rgba(28,25,23,0.5) 50%,
    rgba(28,25,23,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: var(--nav-h) clamp(1.2rem,5vw,3rem) clamp(3rem,6vw,5rem);
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 0.35em 1em;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero-title em { color: var(--yellow); }
.hero-sub {
  font-size: clamp(1rem,2vw,1.15rem);
  color: rgba(247,244,239,.75);
  margin-bottom: 2rem;
  max-width: 540px;
}
.br-d { display: none; }
@media (min-width: 768px) { .br-d { display: inline; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: baseline; gap: 0.15rem; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--yellow); line-height: 1;
}
.stat-plus, .stat-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--yellow);
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,244,239,.6);
  margin-left: 0.4rem;
}
.stat-div { width: 1px; height: 32px; background: rgba(247,244,239,.2); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem;
  left: clamp(1.2rem,5vw,3rem); z-index: 2;
}
.hero-scroll-line {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- TICKER --- */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 0.65rem 0;
}
.ticker-track {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
}
.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; flex-shrink: 0;
}
.ticker-dot { color: var(--yellow) !important; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.25s, transform 0.3s var(--ease-snap), box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(249,115,22,.12);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-name {
  font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--ink);
}
.service-desc { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; }
.services-cta {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: var(--bg-dark);
  border-radius: var(--r);
}
.services-cta p {
  color: rgba(247,244,239,.7);
  font-size: 0.95rem; flex: 1;
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg-2);
}
.whyus-grid {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem;
  align-items: center;
}
@media (min-width: 860px) { .whyus-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.whyus-image {
  position: relative; border-radius: var(--r);
  overflow: visible; aspect-ratio: 4/5;
}
.whyus-image img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r);
  transition: transform 0.5s var(--ease-out);
}
.whyus-image:hover img { transform: scale(1.03); }
.whyus-image::before {
  content: '';
  position: absolute; inset: 10px -10px -10px 10px;
  background: var(--orange); border-radius: var(--r);
  z-index: -1;
}
.whyus-image-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--yellow);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800;
  line-height: 1; color: var(--ink);
}
.badge-text {
  font-size: 0.6rem; font-weight: 700;
  line-height: 1.2; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ink);
}
.whyus-body {
  color: var(--ink-soft); margin-bottom: 2rem; max-width: 480px;
}
.whyus-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.whyus-item { display: flex; gap: 1rem; align-items: flex-start; }
.whyus-check {
  color: var(--orange); font-size: 1rem;
  font-weight: 700; flex-shrink: 0; margin-top: 0.15rem;
}
.whyus-item strong { display: block; font-weight: 500; margin-bottom: 0.1rem; }
.whyus-item span { font-size: 0.85rem; color: var(--ink-mute); }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg-dark);
  color: var(--bg);
}
.location .section-label { color: var(--yellow); background: rgba(251,191,36,.12); }
.location .section-title { color: #fff; }
.location .section-title em { color: var(--yellow); }
.location-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
  align-items: start;
}
@media (min-width: 860px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.location-address {
  display: flex; gap: 0.8rem;
  color: rgba(247,244,239,.7);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 2rem;
}
.hours { margin-bottom: 1.8rem; }
.hours-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 0.8rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.45rem 0;
  font-size: 0.88rem; color: rgba(247,244,239,.7);
  border-bottom: 1px solid rgba(247,244,239,.08);
}
.hours-table td:last-child { text-align: right; }
.location-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-link {
  font-size: 0.88rem; color: rgba(247,244,239,.7);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--orange); }
.location-cta {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2.5rem;
  background: rgba(247,244,239,.05);
  border: 2px solid rgba(247,244,239,.12);
  border-radius: var(--r);
}
.cta-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; color: #fff;
}
.cta-body { font-size: 0.9rem; color: rgba(247,244,239,.65); }
.cta-note { font-size: 0.8rem; color: rgba(247,244,239,.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  border-top: 3px solid var(--orange);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: flex-start; gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(247,244,239,.1);
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange);
}
.footer-tagline { font-size: 0.75rem; color: rgba(247,244,239,.4); margin-top: 0.3rem; }
.footer-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.footer-nav a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(247,244,239,.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-copy {
  width: 100%; font-size: 0.72rem;
  color: rgba(247,244,239,.25); text-align: center;
  margin-top: 1rem;
}
.photo-credits {
  padding: 1rem 0 0;
  font-size: 0.65rem;
  color: rgba(247,244,239,.25);
  line-height: 1.8;
}

/* ============================================================
   INVENTORY PAGE
   ============================================================ */
.page-inventory { background: var(--bg); }

.inv-main { padding-top: var(--nav-h); min-height: 100vh; }

.inv-header {
  background: var(--bg-dark);
  padding: 3rem 0 2.5rem;
}
.inv-title {
  font-size: clamp(2.5rem,6vw,4.5rem);
  color: #fff; margin-bottom: 0.5rem;
}
.inv-subtitle {
  font-size: 1rem; color: rgba(247,244,239,.6);
  margin-bottom: 2rem;
}
.inv-subtitle em { color: var(--orange); font-style: normal; }

/* Search bar */
.search-wrap {
  position: relative;
  max-width: 680px;
  margin-bottom: 1.5rem;
}
.search-icon {
  position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem; pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 2.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 400;
  background: rgba(247,244,239,.07);
  border: 2px solid rgba(247,244,239,.15);
  border-radius: var(--r);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.search-input::placeholder { color: rgba(247,244,239,.35); }
.search-input:focus {
  border-color: var(--orange);
  background: rgba(247,244,239,.1);
}
.search-clear {
  position: absolute; right: 0.8rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 0.85rem; color: rgba(247,244,239,.5);
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.search-clear:hover { color: var(--orange); }

/* Category filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4em 1em;
  background: rgba(247,244,239,.07);
  border: 1.5px solid rgba(247,244,239,.15);
  border-radius: 2px;
  color: rgba(247,244,239,.6);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.results-meta {
  font-size: 0.78rem;
  color: rgba(247,244,239,.4);
  letter-spacing: 0.05em;
  min-height: 1.2em;
}

/* Grid section */
.inv-grid-section { padding: 2.5rem 0 4rem; }

/* States */
.inv-state {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 1rem;
  padding: 4rem 2rem;
  color: var(--ink-soft);
}
.inv-state--error { color: #dc2626; }
.inv-state--setup {
  max-width: 640px; margin-inline: auto;
  text-align: left;
  background: var(--bg-card);
  border: 2px solid var(--line-dark);
  border-radius: var(--r);
  padding: 2.5rem;
  align-items: flex-start;
}
.inv-state--setup h2 {
  font-size: 1.6rem; color: var(--ink);
  margin-bottom: 0.5rem;
}
.inv-state--setup p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.inv-state--setup code {
  font-family: monospace; font-size: 0.88rem;
  background: var(--bg-2); padding: 0.15em 0.4em;
  border-radius: 2px;
}
.state-icon { font-size: 2.5rem; }
.setup-steps { display: flex; flex-direction: column; gap: 1rem; }
.setup-step {
  display: flex; gap: 1rem; align-items: flex-start;
}
.setup-step span {
  width: 28px; height: 28px;
  background: var(--orange); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.setup-step p { font-size: 0.88rem; color: var(--ink-soft); padding-top: 0.3rem; }
.setup-step strong { color: var(--ink); }

/* Hide elements with [hidden] — overrides display:flex/grid on inv-state */
[hidden] { display: none !important; }

/* Spinner */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.product-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color 0.2s, transform 0.25s var(--ease-snap), box-shadow 0.2s;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249,115,22,.12);
}
.product-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  padding: 0.2em 0.6em;
  border-radius: 2px;
  align-self: flex-start;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
  line-height: 1.15;
}
.product-sku {
  font-size: 0.72rem; color: var(--ink-mute);
  font-family: monospace; letter-spacing: 0.05em;
}
.product-desc {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.5; flex: 1;
}
.product-footer {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--ink);
}
.product-stock {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.stock-dot--in  { background: #22c55e; }
.stock-dot--low { background: var(--yellow); }
.stock-dot--out { background: #ef4444; }
.stock-label--in  { color: #16a34a; }
.stock-label--low { color: #b45309; }
.stock-label--out { color: #dc2626; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .whyus-image::before { display: none; }
  .whyus-image-badge { bottom: 0.5rem; right: 0.5rem; width: 80px; height: 80px; }
  .badge-num { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
}

/* Reveal delays */
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="120"] { transition-delay: 0.12s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="280"] { transition-delay: 0.28s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="400"] { transition-delay: 0.40s; }
