/* ═══════════════════════════════════════════════════════════════════════════
   Food Factory Tech — Complete Theme CSS (no Tailwind dependency)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #111111;
  color: #f0f0f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #E63012; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #B8220C; }

/* ── Focus ───────────────────────────────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid #E63012;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
.font-display { font-family: 'Montserrat', sans-serif; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 900; }

/* ── Colors ──────────────────────────────────────────────────────────────── */
.c-red    { color: #E63012; }
.c-orange { color: #F47B20; }
.c-white  { color: #ffffff; }
.c-gray1  { color: #9ca3af; }
.c-gray2  { color: #6b7280; }
.c-gray3  { color: #4b5563; }
.bg-dark   { background: #111111; }
.bg-darker { background: #0a0a0a; }
.bg-card   { background: #1a1a1a; }
.bg-card2  { background: #161616; }
.bg-card3  { background: #181818; }
.bg-section { background: #0f0f0f; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-pad { padding: 80px 16px; }
.section-pad-sm { padding: 48px 16px; }

/* ── Grid systems ────────────────────────────────────────────────────────── */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #E63012, #F47B20);
  color: #ffffff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #B8220C, #E63012);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,48,18,0.4);
  color: #ffffff;
}
.btn-outline {
  background: transparent;
  color: #9ca3af;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-outline:hover {
  border-color: rgba(230,48,18,0.4);
  color: #ffffff;
}
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(230,48,18,0.3);
  background: #1e1e1e;
  transform: translateY(-4px);
}
.card-pad { padding: 24px; }
.card-pad-lg { padding: 32px; }

/* ── Inputs ──────────────────────────────────────────────────────────────── */
.input {
  width: 100%;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.input:focus { border-color: #E63012; }
.input::placeholder { color: #4b5563; }
.label {
  display: block;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* ── Badges / tags ───────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 10px;
  background: rgba(255,255,255,0.05);
  color: #6b7280;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-red    { background: #E63012; color: #fff; }
.badge-green  { background: #16a34a; color: #fff; }
.badge-gray   { background: rgba(255,255,255,0.08); color: #9ca3af; }
.badge-orange { background: rgba(244,123,32,0.15); color: #F47B20; border: 1px solid rgba(244,123,32,0.2); }

/* ── Dividers ────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: rgba(255,255,255,0.06); }
.divider-accent { height: 1px; background: linear-gradient(90deg, transparent, rgba(230,48,18,0.3), transparent); }

/* ── Section headings ────────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  color: #E63012;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-heading-underline::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E63012, #F47B20);
  margin-top: 12px;
  border-radius: 2px;
}
.section-sub {
  color: #9ca3af;
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Marquee ─────────────────────────────────────────────────────────────── */
.marquee-wrap {
  background: #0c0c0c;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 12px;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: #4b5563;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  flex-shrink: 0;
  cursor: default;
  transition: color 0.2s;
}
.marquee-item:hover { color: #9ca3af; }
.marquee-dot { color: rgba(230,48,18,0.3); margin: 0 24px; font-size: 8px; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0505 0%, #111111 50%, #1a1a1a 100%);
  padding: 96px 16px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-blob1 {
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: rgba(230,48,18,0.07);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: rgba(244,123,32,0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) { .hero-inner { grid-template-columns: 1fr; } .hero-right { display: none; } }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,48,18,0.1);
  border: 1px solid rgba(230,48,18,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.hero-pill span {
  color: #E63012;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 12px;
}
.trust-item svg { color: #E63012; flex-shrink: 0; }
.hero-card {
  background: rgba(26,26,26,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
  background: rgba(17,17,17,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { color: #6b7280; font-size: 12px; font-weight: 500; }
.hero-live {
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(230,48,18,0.1), transparent);
  border: 1px solid rgba(230,48,18,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-live p { color: #d1d5db; font-size: 12px; font-weight: 500; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.topbar {
  background: #E63012;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #ffffff;
}
.topbar a { color: #ffffff; display: flex; align-items: center; gap: 4px; }
.topbar a:hover { color: #fde68a; }
.topbar-links { display: flex; align-items: center; gap: 24px; }
.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #111111;
  transition: all 0.3s ease;
}
.main-nav.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #E63012, #F47B20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230,48,18,0.4);
}
.nav-logo-icon span { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name { font-family: 'Montserrat', sans-serif; font-weight: 900; color: #ffffff; font-size: 14px; letter-spacing: -0.02em; }
.nav-logo-sub  { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #E63012; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
}
.nav-link { color: #9ca3af; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: #ffffff; }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 4px;
  color: #9ca3af; font-size: 14px; font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 8px 0;
  transition: color 0.2s; font-family: inherit;
}
.nav-dropdown-btn:hover { color: #ffffff; }
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-dropdown-item:hover { color: #ffffff; background: rgba(230,48,18,0.15); }
.nav-dropdown-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
  padding-top: 4px;
}
.nav-dropdown-cta {
  display: block;
  padding: 10px 16px;
  color: #E63012;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-dropdown-cta:hover { background: rgba(230,48,18,0.15); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cart-btn {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  transition: all 0.2s;
}
.nav-cart-btn:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.nav-cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #E63012;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-cart-badge.hidden { display: none; }
.nav-shop-btn { display: none; }
@media (min-width: 768px) { .nav-shop-btn { display: inline-flex; } }
.nav-hamburger {
  padding: 8px;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.mobile-menu {
  display: none;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #ffffff; }
.mobile-menu a.cat-link { font-size: 12px; padding-left: 24px; color: #6b7280; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); padding: 64px 16px 32px; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #E63012, #F47B20);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon span { color: #fff; font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 20px; }
.footer-desc { color: #6b7280; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280;
  font-size: 11px; font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(230,48,18,0.2); color: #ffffff; }
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #6b7280; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #E63012; }
.footer-links a.highlight { color: #E63012; font-weight: 600; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: #4b5563; font-size: 12px; }

/* ── Cart Drawer ─────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #1a1a1a;
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cart-header-left { display: flex; align-items: center; gap: 8px; }
.cart-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #ffffff; font-size: 16px; }
.cart-count-pill {
  background: #E63012; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 100px;
}
.cart-close-btn {
  padding: 6px; border-radius: 8px;
  background: transparent; color: #9ca3af;
  transition: all 0.2s;
}
.cart-close-btn:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.cart-shipping-banner {
  margin: 16px 20px 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  background: rgba(230,48,18,0.1);
  color: #E63012;
  border: 1px solid rgba(230,48,18,0.2);
}
.cart-shipping-banner.success {
  background: rgba(22,163,74,0.1);
  color: #4ade80;
  border-color: rgba(22,163,74,0.2);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  text-align: center;
}
.cart-empty-msg.show { display: flex; }
.cart-empty-msg p { color: #9ca3af; font-weight: 600; margin-bottom: 4px; }
.cart-empty-msg span { color: #4b5563; font-size: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item-img {
  width: 60px; height: 60px;
  background: #ffffff;
  border-radius: 10px; overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { color: #ffffff; font-size: 12px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-variant { color: #6b7280; font-size: 11px; margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.qty-stepper { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.qty-btn { padding: 4px 10px; background: transparent; color: #9ca3af; font-size: 14px; transition: all 0.2s; }
.qty-btn:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.qty-val { padding: 0 10px; color: #ffffff; font-size: 12px; font-weight: 700; }
.cart-item-price { color: #ffffff; font-weight: 700; font-size: 14px; }
.cart-item-remove { color: #4b5563; font-size: 11px; transition: color 0.2s; background: none; border: none; cursor: pointer; }
.cart-item-remove:hover { color: #ef4444; }
.cart-footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px; }
.cart-totals { margin-bottom: 16px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 14px; color: #9ca3af; margin-bottom: 8px; }
.cart-total-row.grand { font-weight: 700; color: #ffffff; font-size: 16px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.07); }
.cart-checkout-btn { display: block; width: 100%; margin-bottom: 10px; text-align: center; }
.cart-continue-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.cart-continue-btn:hover { border-color: rgba(255,255,255,0.2); color: #ffffff; }

/* ── Product card ────────────────────────────────────────────────────────── */
.product-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}
.product-card:hover {
  border-color: rgba(230,48,18,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(230,48,18,0.05);
}
.product-img-wrap {
  background: #ffffff;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f3f4f6;
}
.product-badge { position: absolute; top: 12px; left: 12px; }
.product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-brand { color: #E63012; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 4px; }
.product-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-title:hover { color: #E63012; }
.product-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 14px; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.product-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #ffffff; font-size: 18px; }
.product-compare-price { color: #6b7280; font-size: 13px; text-decoration: line-through; }
.add-to-cart-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.add-to-cart-btn.added { background: #16a34a; color: #ffffff; }
.sold-out-btn {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #374151;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  cursor: not-allowed;
}

/* ── Categories ──────────────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1280px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cat-card:hover {
  border-color: rgba(230,48,18,0.3);
  background: #1e1e1e;
  transform: translateY(-4px);
}
.cat-icon {
  width: 40px; height: 40px;
  background: rgba(230,48,18,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cat-card:hover .cat-icon { background: rgba(230,48,18,0.2); }
.cat-count {
  font-size: 10px; color: #6b7280;
  background: rgba(255,255,255,0.04);
  padding: 2px 8px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.05);
}
.cat-name { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 13px; line-height: 1.3; transition: color 0.2s; }
.cat-card:hover .cat-name { color: #E63012; }
.cat-desc { color: #4b5563; font-size: 11px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-browse { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: #6b7280; margin-top: auto; transition: all 0.2s; }
.cat-card:hover .cat-browse { color: #E63012; gap: 8px; }
.cat-all {
  background: linear-gradient(135deg, rgba(230,48,18,0.1), transparent);
  border: 1px solid rgba(230,48,18,0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 160px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cat-all:hover { border-color: rgba(230,48,18,0.4); transform: translateY(-4px); }
.cat-all-icon {
  width: 48px; height: 48px;
  background: rgba(230,48,18,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cat-all:hover .cat-all-icon { background: rgba(230,48,18,0.2); }
.cat-all-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 14px; }
.cat-all-sub { color: #4b5563; font-size: 12px; }
.cat-all-cta { color: #E63012; font-weight: 700; font-size: 12px; }
.cat-all:hover .cat-all-cta { text-decoration: underline; }

/* ── Why Us ──────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-card:hover { border-color: rgba(230,48,18,0.3); background: rgba(230,48,18,0.03); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(230,48,18,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.why-card:hover .why-icon { background: rgba(230,48,18,0.2); }
.why-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.why-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 15px; }
.why-highlight { font-size: 10px; font-weight: 700; color: #F47B20; background: rgba(244,123,32,0.1); border: 1px solid rgba(244,123,32,0.2); padding: 3px 8px; border-radius: 100px; }
.why-desc { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* ── Industries / Who We Equip ───────────────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
}
.industry-card:hover { border-color: rgba(230,48,18,0.25); background: #1e1e1e; transform: translateY(-4px); }
.industry-icon {
  width: 40px; height: 40px;
  background: rgba(230,48,18,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.industry-card:hover .industry-icon { background: rgba(230,48,18,0.2); }
.industry-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 13px; line-height: 1.3; transition: color 0.2s; }
.industry-card:hover .industry-title { color: #E63012; }
.industry-desc { color: #4b5563; font-size: 12px; line-height: 1.5; flex: 1; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: auto; }

/* ── Delivery section ────────────────────────────────────────────────────── */
.delivery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
@media (max-width: 768px) { .delivery-grid { grid-template-columns: 1fr; } }
.delivery-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.delivery-card-standard { border: 1px solid rgba(230,48,18,0.4); background: rgba(230,48,18,0.05); }
.delivery-card-express  { border: 1px solid rgba(244,123,32,0.4); background: rgba(244,123,32,0.05); }
.delivery-card-pallet   { border: 1px solid rgba(59,130,246,0.3); background: rgba(59,130,246,0.05); }
.delivery-badge { position: absolute; top: 16px; right: 16px; }
.delivery-icon { margin-bottom: 16px; }
.delivery-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 20px; margin-bottom: 8px; }
.delivery-price { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #F47B20; font-size: 24px; margin-bottom: 4px; }
.delivery-time { color: #d1d5db; font-weight: 500; margin-bottom: 8px; }
.delivery-note { color: #6b7280; font-size: 14px; }
.delivery-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .delivery-2col { grid-template-columns: 1fr; } }
.coverage-table { background: #161616; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.coverage-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.coverage-row:last-child { border-bottom: none; }
.coverage-area { display: flex; align-items: center; gap: 8px; color: #d1d5db; font-size: 14px; }
.coverage-days { font-size: 14px; font-weight: 600; }
.coverage-days.active { color: #ffffff; }
.coverage-days.warn   { color: #eab308; }
.policy-list { display: flex; flex-direction: column; gap: 14px; }
.policy-item { background: #161616; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px; display: flex; gap: 12px; }
.policy-dot { width: 8px; height: 8px; background: #E63012; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.policy-title { font-weight: 600; color: #ffffff; margin-bottom: 4px; }
.policy-body  { color: #9ca3af; font-size: 14px; line-height: 1.6; }

/* ── FAQs ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #161616; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: rgba(230,48,18,0.4); background: rgba(230,48,18,0.04); }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; }
.faq-q { color: #ffffff; font-weight: 600; font-size: 15px; }
.faq-chevron { color: #E63012; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 16px; }
.faq-a { color: #9ca3af; font-size: 14px; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: #2a2a2a; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 10px; margin: -10px; border-radius: 12px; transition: background 0.2s; }
.contact-info-item:hover { background: rgba(255,255,255,0.04); }
.contact-info-icon { width: 40px; height: 40px; background: rgba(230,48,18,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.contact-info-item:hover .contact-info-icon { background: rgba(230,48,18,0.2); }
.contact-info-label { color: #6b7280; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-info-value { color: #ffffff; font-weight: 600; font-size: 14px; transition: color 0.2s; }
.contact-info-item:hover .contact-info-value { color: #E63012; }
.contact-info-sub { color: #6b7280; font-size: 12px; }
.contact-form-card { background: #2a2a2a; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── About page ──────────────────────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, #0a0a0a, #111, #1a1a1a); padding: 96px 16px; position: relative; overflow: hidden; }
.about-hero-blob { position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: rgba(230,48,18,0.06); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.about-stats-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; padding: 32px; margin-bottom: 56px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 768px) { .about-stats-grid { grid-template-columns: repeat(2,1fr); } }
.about-stat { text-align: center; }
.about-stat-num { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 40px; line-height: 1; margin-bottom: 4px; }
.about-stat-label { color: #9ca3af; font-size: 14px; }
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 56px; }
@media (max-width: 1024px) { .about-2col { grid-template-columns: 1fr; } }
.about-body { color: #9ca3af; font-size: 16px; line-height: 1.8; }
.about-body p + p { margin-top: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px; transition: box-shadow 0.2s; }
.value-card:hover { box-shadow: 0 0 0 2px rgba(230,48,18,0.2); }
.value-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 14px; margin-bottom: 6px; }
.value-body { color: #6b7280; font-size: 13px; line-height: 1.6; }

/* ── CTA strip ───────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(90deg, rgba(230,48,18,0.15), rgba(244,123,32,0.08), transparent);
  border: 1px solid rgba(230,48,18,0.2);
  border-radius: 16px;
  padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-strip-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #ffffff; font-size: 20px; margin-bottom: 4px; }
.cta-strip-sub { color: #9ca3af; font-size: 14px; }

/* ── Page hero (generic) ─────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, #0a0505, #111, #1a1a1a); padding: 80px 16px; position: relative; overflow: hidden; }
.page-hero-blob { position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: rgba(230,48,18,0.06); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.page-hero-eyebrow { color: #E63012; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.page-hero-h1 { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #ffffff; font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin-bottom: 20px; }
.page-hero-sub { color: #9ca3af; font-size: 20px; max-width: 640px; line-height: 1.6; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { background: #111; border-bottom: 1px solid rgba(255,255,255,0.05); }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; gap: 6px; font-size: 12px; color: #6b7280; }
.breadcrumb a { color: #6b7280; transition: color 0.2s; }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb-current { color: #9ca3af; }

/* ── Collection / Products page ──────────────────────────────────────────── */
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.collection-count { color: #9ca3af; font-size: 14px; }
.sort-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #ffffff; font-size: 14px; border-radius: 12px; padding: 8px 16px; outline: none; cursor: pointer; transition: border-color 0.2s; }
.sort-select:focus { border-color: #E63012; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); color: #9ca3af; transition: all 0.2s; }
.page-btn:hover { border-color: rgba(230,48,18,0.4); color: #ffffff; }
.page-btn.active { background: #E63012; border-color: #E63012; color: #ffffff; }
.page-btn-text { padding: 8px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); color: #9ca3af; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.page-btn-text:hover { border-color: rgba(230,48,18,0.4); color: #ffffff; }

/* ── Product page ────────────────────────────────────────────────────────── */
.product-page { background: #0f0f0f; min-height: 100vh; padding: 48px 16px; }
.product-page-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 1024px) { .product-page-grid { grid-template-columns: 1fr; } }
.product-main-img { background: #ffffff; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.product-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.thumb-strip { display: flex; gap: 8px; margin-top: 16px; overflow-x: auto; padding-bottom: 4px; }
.thumb-btn {
  flex-shrink: 0; width: 64px; height: 64px;
  background: #ffffff; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; padding: 0; transition: border-color 0.2s;
}
.thumb-btn.active { border-color: #E63012; }
.thumb-btn:hover { border-color: rgba(230,48,18,0.5); }
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-info-wrap { display: flex; flex-direction: column; gap: 0; }
.product-cat-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-cat-link { color: #E63012; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.product-cat-link:hover { text-decoration: underline; }
.product-vendor { color: #E63012; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; }
.product-page-title { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #ffffff; font-size: clamp(24px,3vw,36px); line-height: 1.2; margin-bottom: 20px; }
.product-price-big { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #ffffff; font-size: 40px; line-height: 1; }
.product-price-old { color: #6b7280; font-size: 20px; text-decoration: line-through; }
.product-save { color: #4ade80; font-size: 14px; font-weight: 700; }
.product-feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.product-feature-chip { font-size: 12px; background: rgba(255,255,255,0.05); color: #9ca3af; padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.08); font-weight: 500; }
.product-desc { color: #9ca3af; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.variant-select-wrap { margin-bottom: 24px; }
.qty-atc-row { display: flex; gap: 12px; margin-bottom: 24px; }
.qty-stepper-lg { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.qty-btn-lg { padding: 12px 14px; background: transparent; color: #9ca3af; font-size: 16px; transition: all 0.2s; }
.qty-btn-lg:hover { background: rgba(255,255,255,0.07); color: #ffffff; }
.qty-val-lg { padding: 0 14px; color: #ffffff; font-size: 14px; font-weight: 700; min-width: 40px; text-align: center; }
.trust-badges-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.trust-badge { text-align: center; }
.trust-badge svg { color: #E63012; margin: 0 auto 4px; }
.trust-badge p { color: #9ca3af; font-size: 11px; }
.related-section { max-width: 1280px; margin: 64px auto 0; padding: 0 16px; }
.related-title { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #ffffff; font-size: 28px; margin-bottom: 32px; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.not-found { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 16px; text-align: center; }
.not-found-num { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #E63012; font-size: 120px; line-height: 1; margin-bottom: 16px; }
.not-found-title { font-family: 'Montserrat',sans-serif; font-weight: 900; color: #ffffff; font-size: 32px; margin-bottom: 16px; }
.not-found-sub { color: #9ca3af; font-size: 18px; max-width: 400px; margin: 0 auto 32px; }
.not-found-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Scroll animations ───────────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes gradShift{ 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes pulseDot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.reveal       { opacity:0; }
.reveal-left  { opacity:0; }
.reveal-right { opacity:0; }
.reveal-scale { opacity:0; }
.reveal.in-view       { animation: fadeUp    0.65s cubic-bezier(.22,1,.36,1) both; }
.reveal-left.in-view  { animation: fadeLeft  0.65s cubic-bezier(.22,1,.36,1) both; }
.reveal-right.in-view { animation: fadeRight 0.65s cubic-bezier(.22,1,.36,1) both; }
.reveal-scale.in-view { animation: scaleIn   0.55s cubic-bezier(.22,1,.36,1) both; }

.float-slow   { animation: float 7s ease-in-out infinite; }
.pulse-dot    { animation: pulseDot 2s ease-in-out infinite; }
.page-enter   { animation: fadeUp 0.45s cubic-bezier(.22,1,.36,1) forwards; }

.grad-text {
  background: linear-gradient(270deg, #E63012, #F47B20, #ff9a44, #E63012);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite;
}

/* ── Error / success banners ─────────────────────────────────────────────── */
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; border-radius: 12px; padding: 14px 16px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); color: #86efac; border-radius: 12px; padding: 14px 16px; font-size: 14px; margin-bottom: 16px; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.hidden       { display: none !important; }
.sr-only      { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.mt-2  { margin-top:  8px; }
.mt-3  { margin-top: 12px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-2  { margin-bottom:  8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.w-full { width: 100%; }

/* ── Site body ───────────────────────────────────────────────────────────── */
.site-body {
  background: #111111;
  color: #f0f0f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 12px;
  color: #6b7280;
}
.breadcrumb-link {
  color: #6b7280;
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: #fff; }
.breadcrumb-current {
  color: #9ca3af;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

/* ── Product detail page ─────────────────────────────────────────────────── */
.product-page {
  background: #0f0f0f;
  min-height: 60vh;
  padding: 48px 16px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
}

.product-gallery {}
.product-main-img-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.product-img-placeholder-large {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.thumbnail-btn {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  padding: 0;
}
.thumbnail-btn.active,
.thumbnail-btn:hover { border-color: #E63012; }
.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.product-info-panel {}
.product-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-category-link {
  font-size: 11px;
  font-weight: 700;
  color: #E63012;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-category-link:hover { text-decoration: underline; }
.product-vendor-label {
  font-size: 13px;
  font-weight: 700;
  color: #E63012;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.product-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .product-detail-title { font-size: 24px; }
}
.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-detail-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #fff;
}
.product-detail-compare {
  font-size: 20px;
  color: #6b7280;
  text-decoration: line-through;
}
.product-detail-save {
  font-size: 14px;
  font-weight: 700;
  color: #4ade80;
}
.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.product-detail-desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.product-detail-desc p { margin-bottom: 12px; }
.product-detail-desc ul { list-style: disc; padding-left: 20px; }
.product-variant-wrap {
  margin-bottom: 24px;
}
.product-atc-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.qty-btn {
  padding: 12px;
  color: #9ca3af;
  transition: color 0.2s, background 0.2s;
}
.qty-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.qty-input {
  width: 48px;
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: none;
  outline: none;
}
.btn-atc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  min-width: 160px;
}
.btn-sold-out {
  width: 100%;
  background: #374151;
  color: #9ca3af;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: not-allowed;
  margin-bottom: 24px;
}
.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-item { text-align: center; }
.trust-item svg { margin: 0 auto 4px; display: block; }
.trust-label { color: #9ca3af; font-size: 11px; }

.related-products {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Collection page ─────────────────────────────────────────────────────── */
.collection-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0505, #111, #1a1a1a);
  padding: 56px 16px;
}
.collection-hero-blob {
  position: absolute;
  top: 0; right: 0;
  width: 384px; height: 384px;
  background: rgba(230,48,18,0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.collection-hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .collection-hero-h1 { font-size: 32px; }
}
.collection-hero-desc {
  color: #9ca3af;
  font-size: 18px;
  max-width: 640px;
}
.collection-body {
  background: #0f0f0f;
  padding: 48px 16px;
}
.collection-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.collection-count { color: #9ca3af; font-size: 14px; }
.collection-count strong { color: #fff; }
.collection-sort-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-label { color: #6b7280; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.sort-select { min-width: 200px; }
.collection-empty { text-align: center; padding: 80px 0; }
.collection-empty-text { color: #9ca3af; font-size: 18px; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
}
.page-btn:hover {
  border-color: rgba(230,48,18,0.4);
  color: #fff;
}
.page-btn-active {
  background: #E63012;
  border-color: #E63012;
  color: #fff;
}
.page-ellipsis { color: #6b7280; font-size: 13px; padding: 8px 4px; }

/* ── 404 page ────────────────────────────────────────────────────────────── */
.not-found-page {
  background: #0f0f0f;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.not-found-inner { text-align: center; }
.not-found-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 15vw, 140px);
  color: #E63012;
  line-height: 1;
  margin-bottom: 16px;
}
.not-found-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  margin-bottom: 16px;
}
.not-found-desc {
  color: #9ca3af;
  font-size: 18px;
  max-width: 440px;
  margin: 0 auto 32px;
}
.not-found-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  border-color: rgba(230,48,18,0.4);
  color: #fff;
}
/* Cart item layout */
.cart-item { display:flex; gap:12px; padding:16px 20px; border-bottom:1px solid rgba(255,255,255,0.06); }
.cart-item-img { width:72px; height:72px; min-width:72px; background:#1a1a1a; border-radius:8px; overflow:hidden; border:1px solid rgba(255,255,255,0.08); }
.cart-item-info { flex:1; display:flex; flex-direction:column; gap:4px; }
.cart-item-title { color:#fff; font-size:12px; font-weight:600; line-height:1.4; }
.cart-item-variant { color:#6b7280; font-size:10px; }
.cart-item-bottom { display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.cart-item-price { color:#fff; font-weight:700; font-size:14px; }
.remove-item { background:none; border:none; color:#4b5563; font-size:10px; cursor:pointer; padding:0; transition:color 0.2s; }
.remove-item:hover { color:#f87171; }

/* Qty stepper in cart */
.qty-btn { background:none; border:none; color:#9ca3af; cursor:pointer; padding:4px 8px; font-size:14px; font-weight:600; transition:all 0.2s; line-height:1; }
.qty-btn:hover { color:#fff; background:rgba(255,255,255,0.08); }
.qty-val { color:#fff; font-size:12px; font-weight:700; padding:0 6px; min-width:20px; text-align:center; }