/* ============================================
   DiePostenProfis – styles.css
   Fröhlich, Hell, Modern, Animiert
   ============================================ */

:root {
  --orange:     #FF6A00;
  --orange-light: #FF9F2F;
  --orange-dark:  #CC4A00;
  --yellow:     #FFD348;
  --yellow-light: #FFE5A0;
  --sky:        #4CC8FF;
  --sky-light:  #D8F2FF;
  --sky-soft:   #9DDEFF;
  --red:        #E63946;
  --green:      #2DC653;
  --bg:         #FFF0DE;
  --bg2:        #E5F6FF;
  --white:      #FFFFFF;
  --dark:       #1A1A2E;
  --dark2:      #16213E;
  --text:       #333344;
  --text-light: #666680;
  --border:     #FFC37A;
  --shadow:     0 8px 32px rgba(255,106,0,0.22);
  --shadow-lg:  0 16px 64px rgba(255,106,0,0.3);
  --radius:     16px;
  --radius-lg:  24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Nunito', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,0.22) 0%, transparent 32%),
    radial-gradient(circle at top right, rgba(76,200,255,0.24) 0%, transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #fff7ee 46%, var(--bg2) 100%);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.7;
}
body::before,
body::after {
  content: '';
  position: fixed;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.34;
  animation: ambientFloat 14s ease-in-out infinite alternate;
}
body::before {
  top: -8vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(255,106,0,0.24) 0%, rgba(255,159,47,0.14) 38%, transparent 72%);
}
body::after {
  top: 16vh;
  right: -12vw;
  background: radial-gradient(circle, rgba(76,200,255,0.24) 0%, rgba(157,222,255,0.18) 42%, transparent 72%);
  animation-duration: 18s;
}

@keyframes ambientFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3vw, 2vh, 0) scale(1.08); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.4vw, 2.4rem);
}

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.section-title.white { color: var(--white); }
.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.accent { color: var(--orange); }
.accent-light { color: var(--sky); }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 62%, #FFC86B 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(255,111,26,0.42);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(255,111,26,0.58);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2.5px solid var(--orange);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--orange), var(--sky));
  color: white;
  transform: translateY(-3px);
}
.btn-accent {
  background: linear-gradient(135deg, var(--sky), var(--sky-soft));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(113,212,255,0.34);
}
.btn-accent:hover { transform: translateY(-3px) scale(1.04); }
.btn-full { width: 100%; justify-content: center; }

@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(255,111,26,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(255,111,26,0.75); }
}
.btn-pulse { animation: pulse 2.2s infinite; }

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255,247,238,0.9) 0%, rgba(255,251,245,0.92) 44%, rgba(232,247,255,0.9) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,195,122,0.65);
  box-shadow: 0 10px 34px rgba(255,106,0,0.08), 0 2px 18px rgba(76,200,255,0.1);
  transition: all var(--transition);
}
.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.site-header::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,106,0,0.42) 24%, rgba(76,200,255,0.42) 76%, transparent 100%);
}
.site-header::after {
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, rgba(255,106,0,0.14) 0%, rgba(255,255,255,0) 28%, rgba(76,200,255,0.12) 100%);
  opacity: 0.9;
}
.site-header.scrolled {
  box-shadow: 0 14px 34px rgba(255,106,0,0.14), 0 6px 22px rgba(76,200,255,0.12);
  background: linear-gradient(135deg, rgba(255,248,241,0.97) 0%, rgba(255,252,247,0.98) 44%, rgba(236,249,255,0.96) 100%);
}
.header-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  min-height: 84px;
  padding: 0.35rem clamp(1rem, 2vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.logo-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 6% 12% 6%;
  background: radial-gradient(circle, rgba(255,106,0,0.16) 0%, rgba(255,159,47,0.08) 44%, rgba(76,200,255,0.08) 74%, transparent 100%);
  filter: blur(16px);
  opacity: 0.85;
  pointer-events: none;
}
.logo-img {
  width: auto;
  height: 74px;
  max-width: 240px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(255,106,0,0.16));
  transition: transform 0.4s, filter 0.4s;
}
.logo-img:hover {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 12px 24px rgba(255,106,0,0.22));
}
.main-nav {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.main-nav a {
  padding: 0.6rem 0.95rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(255,195,122,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.main-nav a:hover {
  background: var(--orange);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,106,0,0.22);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(255,195,122,0.45);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px 9px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #FFE3C2 0%, #FFF1DF 26%, #E9F8FF 70%, #D2F1FF 100%);
  padding: 90px clamp(1.5rem, 4vw, 3rem) 5.5rem;
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,211,72,0.32) 0%, transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(76,200,255,0.24) 0%, transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(255,106,0,0.28) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255,159,47,0.14) 0%, transparent 60%);
  animation: bgPulse 6s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.04); }
}
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear infinite;
  opacity: 0;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-width: 620px;
  margin-left: clamp(1rem, 4vw, 4.5rem);
  padding: 2rem 0 6rem;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(255,111,26,0.35);
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}
.highlight-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-light) 55%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}
.stat-item .counter {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.stat-item .stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}
.hero-fox {
  position: absolute;
  right: -110px;
  bottom: -100px;
  z-index: 1;
  width: min(78vw, 1040px);
  pointer-events: none;
}
.fox-float {
  animation: foxFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255,111,26,0.28));
}
@keyframes foxFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-20px) rotate(2deg); }
}

/* ==============================
   MARQUEE BAND
   ============================== */
.marquee-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 55%, var(--sky) 100%);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 4;
  margin-top: -54px;
  box-shadow: 0 -8px 24px rgba(255,255,255,0.35), 0 10px 24px rgba(22,33,62,0.1);
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marqueeRun 28s linear infinite;
  align-items: center;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.ticker-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  padding: 3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================
   TRUST SECTION
   ============================== */
.trust-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,0,0.22) 0%, transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(76,200,255,0.2) 0%, transparent 20%),
    linear-gradient(135deg, #FFF1E0 0%, #FFF9F1 42%, #DFF4FF 100%);
}
.trust-section,
.categories-section,
.new-products-section,
.all-products-section,
.b2b-section,
.about-section,
.contact-section {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.trust-section::after,
.categories-section::after,
.new-products-section::after,
.all-products-section::after,
.about-section::after,
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.18) 16%, transparent 38%),
    radial-gradient(circle at 18% 16%, rgba(255,106,0,0.12) 0%, transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(76,200,255,0.12) 0%, transparent 24%);
}
.trust-section::before,
.categories-section::before,
.new-products-section::before,
.all-products-section::before,
.about-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.trust-section::before {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 34%),
    repeating-linear-gradient(135deg, rgba(255,106,0,0.05) 0 14px, rgba(255,255,255,0) 14px 28px);
  opacity: 0.9;
}
.b2b-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 18%, transparent 42%);
}
.trust-section .container,
.categories-section .container,
.new-products-section .container,
.all-products-section .container,
.about-section .container,
.contact-section .container,
.b2b-inner {
  position: relative;
  z-index: 1;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.trust-intro {
  max-width: 900px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.trust-main-logo {
  width: min(100%, 420px);
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 14px 28px rgba(255,106,0,0.18));
}
.trust-lead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 0.9rem;
}
.trust-copy {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 860px;
  margin: 0 auto 0.8rem;
}
.trust-copy-strong {
  color: var(--dark);
  font-weight: 800;
}
.trust-card {
  background: linear-gradient(135deg, var(--white), var(--sky-light));
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.trust-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(113,212,255,0.12) 0%, rgba(255,111,26,0.08) 38%, transparent 66%);
  opacity: 0;
  transition: opacity 0.5s;
}
.trust-card:hover {
  transform: perspective(1100px) translateY(-8px) scale(1.02) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.trust-card::after {
  content: '';
  position: absolute;
  top: -140%;
  left: -30%;
  width: 46%;
  height: 260%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.08) 22%, rgba(255,255,255,0.58) 48%, rgba(255,255,255,0.1) 72%, transparent 100%);
  opacity: 0;
}
.trust-card:hover::before { opacity: 1; }
.trust-card:hover::after {
  opacity: 1;
  animation: cardSweep 1.2s ease;
}
.trust-fox {
  width: 80px;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(255,107,0,0.2));
}
.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.trust-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.trust-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ==============================
   CATEGORIES SECTION
   ============================== */
.categories-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(76,200,255,0.24) 0%, transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(255,106,0,0.16) 0%, transparent 20%),
    linear-gradient(180deg, #DDF4FF 0%, #C8ECFF 52%, #F8FCFF 100%);
}
.categories-section::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 26%),
    radial-gradient(circle at 14% 26%, rgba(255,255,255,0.36) 0%, transparent 9%),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,0.28) 0%, transparent 7%),
    radial-gradient(circle at 90% 72%, rgba(255,255,255,0.24) 0%, transparent 8%);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  background: linear-gradient(180deg, var(--white) 0%, #FFFDF9 62%, var(--sky-light) 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.56) 0%, rgba(255,255,255,0.18) 14%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light) 50%, var(--sky) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.cat-card:hover::after { opacity: 0.12; }
.cat-card:hover {
  transform: perspective(1100px) translateY(-8px) scale(1.04) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.cat-card:hover::before { opacity: 1; }
.cat-image {
  width: 100%;
  max-width: 124px;
  height: 92px;
  margin: 0 auto 0.9rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(255,111,26,0.12));
}
.cat-icon { font-size: 2.5rem; margin-bottom: 0.7rem; display: block; }
.cat-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  z-index: 1;
}
.cat-card .cat-count {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}

/* ==============================
   PRODUCT SLIDER (NEUHEITEN)
   ============================== */
.new-products-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,211,72,0.34) 0%, transparent 18%),
    radial-gradient(circle at 84% 24%, rgba(255,106,0,0.22) 0%, transparent 18%),
    linear-gradient(135deg, #FFF1A8 0%, #FFD87A 26%, #FFF0D9 58%, #DDF6FF 100%);
  overflow: hidden;
}
.new-products-section::before {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.12) 0 18px, rgba(255,255,255,0) 18px 42px),
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 40%);
}
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.slider-controls { display: flex; gap: 0.7rem; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2.5px solid var(--orange);
  background: white;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: linear-gradient(135deg, var(--orange), var(--sky)); color: white; transform: scale(1.1); }
.product-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.product-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
  user-select: none;
}
.product-slider:active { cursor: grabbing; }

/* ==============================
   PRODUCT CARD
   ============================== */
.product-card {
  flex: 0 0 280px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.product-card:hover {
  transform: perspective(1100px) translateY(-8px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.56) 0%, rgba(255,255,255,0.16) 14%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}
.product-card::after {
  content: '';
  position: absolute;
  top: -140%;
  left: -30%;
  width: 46%;
  height: 260%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.08) 22%, rgba(255,255,255,0.58) 48%, rgba(255,255,255,0.1) 72%, transparent 100%);
  opacity: 0;
  z-index: 1;
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover::after {
  opacity: 1;
  animation: cardSweep 1.2s ease;
}

@keyframes cardSweep {
  from { transform: translateX(-160%) rotate(22deg); }
  to { transform: translateX(430%) rotate(22deg); }
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg2);
  display: block;
}
.product-card-img--contain {
  object-fit: contain;
  padding: 1rem;
  background: linear-gradient(135deg, var(--yellow-light), var(--sky-light));
}
.product-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--yellow-light), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--orange);
}
.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.product-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
}
.badge-neu    { background: var(--red);   color: white; animation: badgePop 0.5s ease; }
.badge-deal   { background: var(--green); color: white; }
.badge-hot    { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; }
.badge-limit  { background: var(--dark2); color: white; }
@keyframes badgePop {
  0%   { transform: scale(0) rotate(-10deg); }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
}
.price-old {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: var(--red);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
}
.cat-label {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* ==============================
   ALL PRODUCTS (GRID)
   ============================== */
.all-products-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(255,159,47,0.18) 0%, transparent 18%),
    radial-gradient(circle at 90% 18%, rgba(76,200,255,0.18) 0%, transparent 18%),
    linear-gradient(180deg, #FFF9F1 0%, #FFF4E2 32%, #F3FBFF 100%);
}
.all-products-section::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 26%),
    repeating-radial-gradient(circle at 20% 24%, rgba(255,106,0,0.05) 0 10px, rgba(255,255,255,0) 10px 36px);
}
.category-filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Nunito', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.no-products {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

/* ==============================
   B2B SECTION
   ============================== */
.b2b-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #17223D 0%, #1B1D44 44%, #103B59 100%);
  position: relative;
  overflow: hidden;
}
.b2b-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,106,0,0.28) 0%, transparent 50%),
    radial-gradient(circle at 86% 24%, rgba(76,200,255,0.24) 0%, transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(255,212,92,0.18) 0%, transparent 40%),
    linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 34%);
}
.b2b-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.b2b-text { flex: 1; }
.b2b-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.b2b-list {
  list-style: none;
  margin-bottom: 2rem;
}
.b2b-list li {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  padding: 0.4rem 0;
  font-weight: 600;
  transform: translateX(0);
  transition: transform var(--transition), color var(--transition);
}
.b2b-list li:hover {
  transform: translateX(10px);
  color: white;
}
.b2b-fox {
  flex: 0 0 280px;
  text-align: center;
}
.b2b-fox img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 20px 40px rgba(255,107,0,0.4));
  animation: foxFloat 4s ease-in-out infinite;
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,106,0,0.2) 0%, transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(76,200,255,0.22) 0%, transparent 18%),
    linear-gradient(135deg, #FFF1E7 0%, #FFE8D1 34%, #E6F6FF 100%);
}
.about-section::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%),
    repeating-linear-gradient(145deg, rgba(255,106,0,0.05) 0 16px, rgba(255,255,255,0) 16px 34px);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.about-fox {
  flex: 0 0 260px;
  text-align: center;
}
.about-fox img {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 10px 30px rgba(255,107,0,0.25));
}
.fox-bounce { animation: foxBounce 2.5s ease-in-out infinite; }
@keyframes foxBounce {
  0%,100% { transform: translateY(0) scaleX(1); }
  45%     { transform: translateY(-18px) scaleX(0.96); }
  55%     { transform: translateY(-18px) scaleX(1.04); }
}
.about-text { flex: 1; }
.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.highlight-pill {
  background: linear-gradient(135deg, white, var(--sky-light));
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.highlight-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.18) 14%, transparent 42%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.highlight-pill:hover {
  background: linear-gradient(135deg, var(--orange), var(--sky));
  color: white;
  border-color: var(--orange);
  transform: perspective(1000px) translateY(-3px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.highlight-pill:hover::before {
  opacity: 1;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(76,200,255,0.24) 0%, transparent 18%),
    radial-gradient(circle at 84% 82%, rgba(255,106,0,0.2) 0%, transparent 18%),
    linear-gradient(180deg, #E5F8FF 0%, #D5F1FF 48%, #FFF0DE 100%);
}
.contact-section::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.28) 0%, transparent 9%),
    radial-gradient(circle at 22% 72%, rgba(255,255,255,0.24) 0%, transparent 8%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: linear-gradient(135deg, var(--bg2), white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.18) 14%, transparent 42%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.6rem; line-height: 1; }
.contact-info-item strong { font-size: 0.9rem; color: var(--dark); font-weight: 700; display: block; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--orange); font-weight: 600; }
.map-placeholder {
  background: linear-gradient(135deg, var(--yellow-light), var(--sky-light));
  border: 2px solid var(--border);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.18) 14%, transparent 42%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.form-success {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--yellow-light), var(--sky-light));
  border-radius: var(--radius-lg);
  border: 2px solid var(--sky-soft);
}
.form-success h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; margin: 1rem 0 0.5rem; }
.form-success p { color: var(--text-light); }
.hidden { display: none !important; }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.16) 0%, rgba(76,200,255,0.08) 46%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.footer-brand::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -6px;
  width: 250px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.22) 34%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 78%);
  filter: blur(18px);
  pointer-events: none;
}
.footer-logo {
  width: 170px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.38)) drop-shadow(0 0 24px rgba(255,255,255,0.22));
}
.footer-brand .logo-text {
  position: relative;
  z-index: 1;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--sky); }
.footer-social h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.8rem; }
.social-icons { display: flex; gap: 0.7rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: white;
  transition: all var(--transition);
  font-weight: 700;
}
.social-btn:hover { background: linear-gradient(135deg, var(--orange), var(--sky)); transform: translateY(-3px) scale(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light) 58%, var(--sky) 100%);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,111,26,0.4);
  transition: all var(--transition);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

/* ==============================
   SCROLL REVEAL
   ============================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

.reveal .section-badge,
.reveal .trust-main-logo,
.reveal .trust-lead,
.reveal .section-title,
.reveal .section-sub {
  opacity: 0;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
}

.reveal .section-badge {
  transform: translate3d(-18px, -8px, 0) scale(0.97);
  filter: blur(4px);
}

.reveal .trust-main-logo {
  transform: translate3d(0, -20px, 0) scale(0.96);
  filter: blur(5px);
}

.reveal .trust-lead {
  transform: translate3d(0, 20px, 0) scale(0.985);
  filter: blur(5px);
}

.reveal .section-title {
  transform: translate3d(-24px, 12px, 0) scale(0.985);
  filter: blur(5px);
}

.reveal .section-title .accent,
.reveal .section-title .highlight-text,
.reveal .section-title span[id],
.reveal .section-title.white span {
  display: inline-block;
  transform: translate3d(18px, -6px, 0) scale(0.985);
  filter: blur(4px);
}

.reveal .section-sub {
  transform: translate3d(18px, 10px, 0) scale(0.99);
  filter: blur(4px);
}

.reveal.visible .section-badge,
.reveal.visible .trust-main-logo,
.reveal.visible .trust-lead,
.reveal.visible .section-title,
.reveal.visible .section-sub {
  opacity: 1;
  filter: blur(0);
}

.reveal.visible .section-badge {
  animation: flyInBadge 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.visible .trust-main-logo {
  animation: flyInLogo 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.visible .trust-lead {
  animation: flyInLead 0.82s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.visible .section-title {
  animation: flyInTitle 0.82s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
  text-shadow: 0 10px 24px rgba(255,255,255,0.24);
}

.reveal.visible .section-title .accent,
.reveal.visible .section-title .highlight-text,
.reveal.visible .section-title span[id],
.reveal.visible .section-title.white span {
  animation: flyInAccent 0.88s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.visible .section-sub {
  animation: flyInSub 0.8s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Staggered delay for grid items */
.reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-item:nth-child(3) { transition-delay: 0.25s; }
.reveal-item:nth-child(4) { transition-delay: 0.35s; }
.reveal-item:nth-child(5) { transition-delay: 0.45s; }

/* ==============================
   HERO ANIMATIONS
   ============================== */
.bounce-in { animation: bounceIn 0.8s cubic-bezier(0.3,1.5,0.5,1) forwards; }
.slide-up  { animation: slideUp 0.8s ease forwards; }
.slide-up-delay  { animation: slideUp 0.8s 0.25s ease both; }
.slide-up-delay2 { animation: slideUp 0.8s 0.45s ease both; }
@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes flyInBadge {
  0% { transform: translate3d(-18px, -8px, 0) scale(0.97); opacity: 0; filter: blur(4px); }
  70% { transform: translate3d(4px, 1px, 0) scale(1.01); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes flyInLogo {
  0% { transform: translate3d(0, -20px, 0) scale(0.96); opacity: 0; filter: blur(5px); }
  68% { transform: translate3d(0, 4px, 0) scale(1.01); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes flyInLead {
  0% { transform: translate3d(0, 20px, 0) scale(0.985); opacity: 0; filter: blur(5px); }
  72% { transform: translate3d(0, -1px, 0) scale(1.005); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes flyInTitle {
  0% { transform: translate3d(-24px, 12px, 0) scale(0.985); opacity: 0; filter: blur(5px); }
  68% { transform: translate3d(3px, -1px, 0) scale(1.006); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes flyInAccent {
  0% { transform: translate3d(18px, -6px, 0) scale(0.985); opacity: 0; filter: blur(4px); }
  70% { transform: translate3d(-2px, 1px, 0) scale(1.01); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes flyInSub {
  0% { transform: translate3d(18px, 10px, 0) scale(0.99); opacity: 0; filter: blur(4px); }
  72% { transform: translate3d(-2px, 0, 0) scale(1.005); opacity: 1; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: blur(0); }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  body::before,
  body::after {
    width: 58vw;
    height: 58vw;
  }
  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-content {
    margin-left: 0;
    padding-bottom: 4rem;
  }
  .hero-fox {
    right: -4.4rem;
    width: min(78vw, 860px);
    bottom: -84px;
  }
  .marquee-band {
    margin-top: -34px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .b2b-fox, .about-fox { flex: 0 0 200px; }
}

@media (max-width: 768px) {
  body::before,
  body::after,
  .trust-section::after,
  .categories-section::after,
  .new-products-section::after,
  .all-products-section::after,
  .about-section::after,
  .contact-section::after,
  .b2b-section::after {
    display: none;
  }
  .main-nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 0; right: 0;
    background: linear-gradient(180deg, white, var(--sky-light));
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 999;
    border-bottom: 2px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1.2rem; font-size: 1.1rem; border-radius: var(--radius); }
  .nav-toggle { display: flex; }
  .hero {
    min-height: auto;
    padding: 80px 1.2rem 2rem;
    overflow: hidden;
  }
  .hero-fox {
    right: -8%;
    bottom: -20px;
    width: 72%;
    opacity: 0.42;
  }
  .hero-content {
    max-width: 100%;
    margin-left: 0;
    padding-bottom: 2rem;
  }
  .marquee-band {
    margin-top: 0;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-main-logo { width: min(100%, 320px); }
  .trust-lead { font-size: 1.02rem; }
  .trust-copy { font-size: 0.96rem; line-height: 1.72; }
  .b2b-inner { flex-direction: column; }
  .about-inner { flex-direction: column; }
  .about-fox { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-social { grid-column: 1 / -1; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .stat-item .counter { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
  .cat-card { padding: 1.5rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .trust-card::after,
  .product-card::after,
  .fox-float,
  .fox-bounce,
  .btn-pulse,
  .hero-bg-anim,
  .marquee-track,
  .confetti-piece {
    animation: none !important;
  }

  .trust-card,
  .cat-card,
  .product-card,
  .highlight-pill,
  .contact-info-card,
  .map-placeholder {
    transform: none !important;
  }
}
