/* ============================================================
   CHINA INSTANT FOOD — Main Stylesheet
   B2B Export Website · Instant Food Manufacturer
   ============================================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --orange: #e8600a;
  --orange-light: #f97316;
  --orange-pale: rgba(232, 96, 10, 0.1);
  --red: #c0392b;
  --cream: #fdf6ee;
  --cream-dark: #f5ede0;
  --dark: #111111;
  --dark2: #1e1e1e;
  --mid: #444;
  --muted: #666;
  --light: #f8f8f8;
  --border: #e5e0d8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);

  /* Category colors */
  --cat-noodles: #e8600a;
  --cat-soup: #0891b2;
  --cat-precooked: #16a34a;
  --cat-selfheat: #dc2626;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-label--light {
  color: #ffb07a;
  background: rgba(232, 96, 10, 0.2);
  border: 1px solid rgba(232, 96, 10, 0.35);
}

.section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title--light {
  color: #fff;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub--light {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #c95208;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 96, 10, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.btn-white:hover {
  background: #ffe8d6;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ===== SCROLL FADE-IN (JS adds these) ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  line-height: 0;
  display: block;
}
.section-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.section-divider--cream-to-dark {
  background: var(--cream);
}
.section-divider--dark-to-white {
  background: var(--dark2);
}

/* ===== ANIMATED WAVE DIVIDERS ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider--top {
  background: var(--cream);
}
.wave-divider--bottom {
  background: var(--dark);
}

.wave-divider .waves {
  width: 100%;
  height: 80px;
  min-height: 40px;
  max-height: 100px;
  display: block;
}

.wave-divider .wave-parallax > use {
  animation: waveMove 18s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-divider .wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.wave-divider .wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.wave-divider .wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.wave-divider .wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 18s;
}

@keyframes waveMove {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* ===== DECORATIVE CIRCLES ===== */
.section-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section-deco-circle--products {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -180px;
  background: radial-gradient(circle, rgba(232, 96, 10, 0.07) 0%, transparent 65%);
}
.section-deco-circle--arrivals {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(232, 96, 10, 0.1) 0%, transparent 65%);
}

/* ============================================================
/* ============================================================
   1. HERO BANNER — Full-screen slider
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}
#hero {
  user-select: none;
  touch-action: pan-y;
}
.is-dragging {
  cursor: grabbing;
}
#hero.is-dragging,
.arrivals-track.is-dragging,
#hero.is-dragging *,
.arrivals-track.is-dragging * {
  user-select: none;
}
#hero.is-dragging a,
#hero.is-dragging button,
.arrivals-track.is-dragging a {
  pointer-events: none;
}
.hb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
}
.hb-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}
.hb-slide.active .hb-bg {
  transform: scale(1);
}
.hb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.25) 100%);
  z-index: 1;
}
.hb-overlay--warm {
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.85) 0%, rgba(30, 15, 5, 0.6) 45%, rgba(232, 96, 10, 0.15) 100%);
}
.hb-overlay--dark {
  background: linear-gradient(105deg, rgba(5, 5, 5, 0.9) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(10, 10, 10, 0.3) 100%);
}
.hb-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(28px, calc((100vw - 1240px) / 2 + 28px));
  transform: translateY(-50%);
  max-width: 680px;
  animation: hbContentIn 0.8s ease both;
}
@keyframes hbContentIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 28px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 96, 10, 0.18);
  border: 1px solid rgba(232, 96, 10, 0.45);
  color: #ffb07a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hb-dot {
  width: 7px;
  height: 7px;
  background: var(--orange-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hb-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hb-title em {
  font-style: normal;
  color: var(--orange-light);
}
.hb-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 38px;
}
.hb-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
}
.hb-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232, 96, 10, 0.45);
  transform: translateY(-50%) scale(1.08);
}
.hb-arrow--prev {
  left: 28px;
}
.hb-arrow--next {
  right: 28px;
}
.hb-dots {
  position: absolute;
  bottom: 100px;
  left: max(28px, calc((100vw - 1240px) / 2 + 28px));
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hb-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hb-dot-btn.active {
  background: var(--orange-light);
  width: 28px;
  border-radius: 4px;
}
.hb-dot-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}
.hb-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange-light);
}
.hb-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 max(28px, calc((100vw - 1240px) / 2 + 28px));
}
.hb-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.hb-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hb-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hb-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
/* ============================================================
   2. TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 52px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.trust-item svg {
  color: var(--orange-light);
  flex-shrink: 0;
}
.trust-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   3. PRODUCTS — Tab Filter + Uniform Card Grid
   ============================================================ */
#products {
  padding: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  /* Subtle dot-grid background pattern */
  background-image: radial-gradient(circle, rgba(232, 96, 10, 0.08) 1px, transparent 1px), linear-gradient(to bottom, var(--cream), var(--cream));
  background-size: 28px 28px, 100% 100%;
}

/* Section header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.products-header-left {
  flex: 1;
  min-width: 260px;
}
.products-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* 500+ Products badge */
.products-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(232, 96, 10, 0.35);
  white-space: nowrap;
}

/* Tab buttons */
.product-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.product-tab {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--mid);
  transition: all 0.2s ease;
  font-family: inherit;
}
.product-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.product-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 96, 10, 0.3);
}

/* Product card grid — uniform 3 columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ===== UNIFORM PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 48px rgba(232, 96, 10, 0.18), var(--shadow-lg);
}

/* Card image */
.product-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.07);
}

/* Category badge — top left, color-coded */
.product-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff;
  z-index: 2;
}
.product-cat-badge--noodles {
  background: var(--cat-noodles);
}
.product-cat-badge--soup {
  background: var(--cat-soup);
}
.product-cat-badge--precooked {
  background: var(--cat-precooked);
}
.product-cat-badge--selfheat,
.product-cat-badge--selfheating {
  background: var(--cat-selfheat);
}

/* Ribbon — top right */
.product-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  z-index: 2;
}
.product-ribbon--hot {
  background: #dc2626;
}
.product-ribbon--new {
  background: #7c3aed;
}

/* Card body */
.product-card-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
  /* 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spec row */
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mid);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.spec-icon {
  font-size: 12px;
}

/* Get Quote button */
.btn-get-quote {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border: 2px solid var(--orange);
  background: transparent;
  transition: all 0.22s ease;
  cursor: pointer;
  margin-top: auto;
  font-family: inherit;
}
.btn-get-quote:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 96, 10, 0.3);
}

/* Load More */
.products-load-more {
  text-align: center;
  margin-top: 52px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  border: 2px solid var(--orange);
  background: transparent;
  transition: all 0.22s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-load-more:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 96, 10, 0.3);
}

/* ============================================================
   4. NEW ARRIVALS — Dark horizontal scroll strip
   ============================================================ */
#new-arrivals {
  background: var(--dark2);
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Subtle diagonal line pattern */
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 20px);
}

.arrivals-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.arrivals-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.arrivals-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.arrivals-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232, 96, 10, 0.4);
}

/* Scroll container */
.arrivals-scroll-wrap {
  position: relative;
  z-index: 1;
  touch-action: pan-y;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.arrivals-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 40px 16px;
  cursor: grab;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.arrivals-track::-webkit-scrollbar {
  display: none;
}

/* Arrival card */
.arrival-card {
  flex-shrink: 0;
  width: 240px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.arrival-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 96, 10, 0.5);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.arrival-card-img {
  height: 200px;
  overflow: hidden;
}
.arrival-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.arrival-card:hover .arrival-card-img img {
  transform: scale(1.07);
}

.arrival-card-body {
  padding: 16px 16px 18px;
}

/* Category tag — color coded */
.arrival-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 8px;
}
.arrival-cat--noodles {
  background: var(--cat-noodles);
}
.arrival-cat--soup {
  background: var(--cat-soup);
}
.arrival-cat--precooked {
  background: var(--cat-precooked);
}
.arrival-cat--selfheating {
  background: var(--cat-selfheat);
}

.arrival-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.arrival-inquire {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-block;
}
.arrival-inquire:hover {
  color: #fff;
  letter-spacing: 0.5px;
}

/* ============================================================
   5. ADVANTAGES
   ============================================================ */
#advantages {
  background: #fff;
  position: relative;
}

.adv-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.adv-left {
  position: sticky;
  top: 100px;
}
.adv-left .section-sub {
  margin-bottom: 36px;
}

.adv-highlight {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--orange);
}
.adv-highlight p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adv-card {
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.adv-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232, 96, 10, 0.12);
  transform: translateY(-4px);
}
.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 20px;
}
.adv-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.adv-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   6. FACTORY / ABOUT SPLIT
   ============================================================ */
#factory {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
#factory::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 96, 10, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

#factory::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 96, 10, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.factory-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Single large image ── */
.factory-single-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.factory-single-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.factory-single-img:hover img {
  transform: scale(1.03);
}

/* Certified badge overlay */
.factory-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 96, 10, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(232, 96, 10, 0.4);
  letter-spacing: 0.3px;
}

.factory-text .section-label {
  background: var(--orange-pale);
}
.factory-text .section-title {
  color: var(--dark);
}
.factory-text .section-sub {
  color: var(--muted);
  margin-bottom: 36px;
}

.factory-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}
.factory-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.6;
}
.factory-list li .check {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.factory-list li .check svg {
  width: 11px;
  height: 11px;
  color: #fff;
}

/* ============================================================

/* ============================================================
   7. CUSTOMERS — Glass morphism cards with top glow
   ============================================================ */
#customers {
  background: linear-gradient(180deg, #0c0c0c 0%, #151515 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
#customers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Ambient glow */
.cust-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 96, 10, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative food images — corners with glow */
.cust-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(232, 96, 10, 0.4)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.cust-deco--left-1 {
  width: 280px;
  top: 15px;
  left: -40px;
  transform: scaleX(-1) rotate(-10deg);
  animation: floatTopLeft 6s ease-in-out infinite;
}

.cust-deco--right-1 {
  width: 260px;
  bottom: -30px;
  right: -30px;
  transform: rotate(8deg);
  animation: floatBottomRight 7s ease-in-out infinite;
}

@keyframes floatTopLeft {
  0%,
  100% {
    transform: scaleX(-1) rotate(-10deg) translate(0, 0);
  }
  50% {
    transform: scaleX(-1) rotate(-7deg) translate(8px, 12px);
  }
}
@keyframes floatBottomRight {
  0%,
  100% {
    transform: rotate(8deg) translate(0, 0);
  }
  50% {
    transform: rotate(5deg) translate(-8px, -12px);
  }
}

.customers-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.cust-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 96, 10, 0.3);
}

/* Top glow bar */
.cust-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cust-card:hover .cust-card-glow {
  opacity: 1;
}

/* Inner */
.cust-card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s;
}
.cust-card:hover .cust-card-inner {
  border-color: rgba(232, 96, 10, 0.25);
  background: rgba(232, 96, 10, 0.03);
}

/* Icon */
.cust-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(232, 96, 10, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cust-card:hover .cust-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(232, 96, 10, 0.5);
}

/* Icon ring glow */
.cust-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: var(--orange);
  opacity: 0.15;
  z-index: -1;
  transition: opacity 0.3s;
}
.cust-card:hover .cust-icon::before {
  opacity: 0.25;
}

.cust-card-inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.cust-card-inner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .customers-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .customers-grid {
    grid-template-columns: 1fr;
  }
}

.cta-btns .btn-outline:hover,
.hb-btns .btn-outline:hover {
  color: #f97316;
}

/* ============================================================
   8. CTA
   ============================================================ */
#cta {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232, 96, 10, 0.22) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(232, 96, 10, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner .section-label {
  background: rgba(232, 96, 10, 0.2);
}
#cta h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
#cta h2 em {
  font-style: normal;
  color: var(--orange-light);
}
#cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}
.cta-feat svg {
  color: var(--orange-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .adv-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .adv-left {
    position: static;
  }
  .factory-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .factory-single-img img {
    height: 380px;
  }
  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-header-right {
    align-self: flex-start;
  }
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .arrivals-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .cust-deco--left-1,
  .cust-deco--right-1 {
    width: 180px;
    opacity: 0.2;
  }
  .product-desc,
  .hb-stats-strip,
  .cta-features {
    display: none;
  }
  #new-arrivals {
    padding: 40px 0 10px;
  }
  #customers,
  #advantages,
  #cta,
  #factory,
  #products {
    padding: 50px 0;
  }
  .section-sub,
  .btn,
  .adv-highlight p {
    font-size: 14px;
  }
  .section-title,
  #cta h2 {
    font-size: 22px;
  }
  .factory-list li,
  .adv-card p {
    font-size: 12px;
  }

  .section-divider svg {
    height: 30px;
  }
  #hero {
    height: 100svh;
    min-height: 560px;
  }
  .hb-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }
  .hb-arrow {
    display: none;
  }
  .hb-dots {
    left: 20px;
    bottom: 34px;
  }
  .hb-stats-strip {
    padding: 0 16px;
    height: 80px;
  }
  .hb-stat {
    padding: 0 10px;
  }
  .hb-stat strong {
    font-size: 20px;
  }
  .hb-stat span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px !important;
  }

  /* Products: 2 columns on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-card-img {
    height: 160px;
  }
  .product-card-body {
    padding: 14px 12px 16px;
  }
  .product-card-body h3,
  #cta p {
    font-size: 14px;
  }
  .product-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .btn-get-quote {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Customers: 2 columns */
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cust-card-inner {
    padding: 22px 16px;
    gap: 12px;
  }
  .cust-card-inner h3 {
    font-size: 14px;
  }
  .cust-card-inner p {
    font-size: 12px;
  }
  .cust-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* Hero */
  .hb-btns {
    flex-direction: column;
  }
  .hb-stat-sep {
    display: none;
  }
  .hb-stats-strip {
    justify-content: space-around;
  }
  .hb-title {
    font-size: clamp(28px, 8vw, 42px);
  }
  .hb-desc {
    font-size: 14px;
  }

  /* CTA */
  .cta-btns {
    align-items: center;
  }
  .cta-btns .btn {
    padding: 10px;
  }
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Factory */
  .factory-single-img img {
    height: 240px;
  }
  .factory-nums {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tabs */
  .product-tabs {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .product-tab {
    padding: 7px 14px;
    font-size: 12px;
    flex-shrink: 0;
  }

  /* Products header */
  .products-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .products-count-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Arrivals */
  .arrival-card {
    width: 180px;
  }
  .arrival-card-img {
    height: 150px;
  }
  .arrival-card-body h4 {
    font-size: 13px;
  }

  /* Advantages */
  .adv-grid {
    gap: 14px;
  }
  .adv-card {
    padding: 22px 18px;
  }
  .adv-card h3 {
    font-size: 14px;
    line-height: normal;
  }
}
