/* ============================================
   TOYWORLD WHOLESALE — DESIGN SYSTEM
   Palette: Bold primaries on white + deep navy
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

:root {
  --red:       #FF4757;
  --yellow:    #FFD32A;
  --blue:      #1E90FF;
  --navy:      #0D1B2A;
  --navy-mid:  #1A2E45;
  --white:     #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100:  #F1F3F7;
  --gray-200:  #E2E6EE;
  --gray-400:  #9AA3B2;
  --gray-600:  #5A6478;
  --gray-800:  #2C3347;
  --text:      #1A2035;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  font-weight: 800;
}

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

/* ---- SECTION ---- */
.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: #e63946;
  border-color: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,71,87,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn--nav:hover {
  background: #f5c800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,211,42,0.4);
}

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 9px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-accent { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav__mobile a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--red); }
.nav__mobile .btn { margin-top: 12px; }
.nav__mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 80px 80px;
  background: linear-gradient(135deg, #F8F9FC 0%, #EEF2FF 50%, #FFF8E7 100%);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape--1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -150px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape--2 {
  width: 300px; height: 300px;
  background: var(--yellow);
  bottom: -80px; left: 10%;
  animation: float2 10s ease-in-out infinite;
}
.shape--3 {
  width: 200px; height: 200px;
  background: var(--blue);
  top: 40%; left: 45%;
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-8deg); }
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--yellow);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero__title-accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat__num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.stat__label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero__img {
  width: 100%;
  max-width: 520px;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-100);
}
.badge-icon { font-size: 2rem; }
.hero__img-badge strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
}
.hero__img-badge span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  background: var(--navy);
  color: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
}
.ticker__track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--white); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cat-card:hover {
  border-color: var(--accent, var(--red));
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.cat-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 12px;
}
.cat-card__count {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.cat-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent, var(--red));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card__link { gap: 8px; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--off-white);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.why-us__left .section-title { text-align: left; }
.why-us__left .section-sub { text-align: left; margin-bottom: 32px; }
.why-us__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ============================================
   BEST SELLERS
   ============================================ */
.bestsellers { background: var(--white); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}
.product-card__badge.new { background: var(--blue); }
.product-card__badge.sale { background: var(--navy); }

.product-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.06);
}
.product-card__body { padding: 20px; }
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.product-card__body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-card__body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-card__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.moq {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
}

.bestsellers__cta {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
}
.bestsellers__cta p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: linear-gradient(135deg, #FFF8E7 0%, #F8F9FC 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 8px;
}
.step__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gray-300) 0px,
    var(--gray-300) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 60px;
  position: relative;
}
.step__connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--gray-400);
  font-size: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--navy);
}
.testimonials .section-tag {
  background: rgba(255,211,42,0.2);
  color: var(--yellow);
}
.testimonials .section-title { color: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testi-card__stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.testi-card__author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--off-white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section-title { text-align: left; }
.contact__left p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.4rem;
}
.contact__info-item > span { flex-shrink: 0; margin-top: 2px; }
.contact__info-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact__info-item span:last-child {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-success.show { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--gray-600); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .nav__logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--yellow); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero {
    padding: 100px 40px 60px;
    gap: 32px;
  }
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us__right { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 32px 60px;
  }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .hero__scroll-hint { display: none; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn--nav { display: none; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step__connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
    background: repeating-linear-gradient(
      180deg,
      var(--gray-300) 0px,
      var(--gray-300) 6px,
      transparent 6px,
      transparent 12px
    );
  }
  .step__connector::after { display: none; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: 1fr; }
  .why-us__right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .bestsellers__cta { padding: 32px 24px; }
  .hero__title { font-size: 2.4rem; }
}