:root {
  --pink: #F8C8D8;
  --pink-deep: #F2A5BC;
  --blue: #B8DCEC;
  --blue-deep: #8FC4DC;
  --cream: #FFF8F0;
  --cream-dark: #FBEFE0;
  --ink: #2C3E50;
  --ink-soft: #5A6B7C;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 62, 80, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

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

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  perspective: 600px;
}
.logo img {
  height: 72px;
  width: auto;
  transform-style: preserve-3d;
  animation: logoSpin 6s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(44, 62, 80, 0.15));
}
@keyframes logoSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.logo:hover img { animation-play-state: paused; }
.logo-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-cta {
  background: var(--pink-deep);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--white) !important; }
.lang-switch {
  display: flex;
  gap: 4px;
  background: var(--cream-dark);
  padding: 4px;
  border-radius: 999px;
  margin-right: 8px;
}
.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn.active { background: var(--ink); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--ink); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink) 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero floating safety animation - 3D SVG */
.hero-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.anim-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  opacity: 0.85;
  filter:
    drop-shadow(0 8px 14px rgba(44,62,80,0.18))
    drop-shadow(0 3px 5px rgba(44,62,80,0.12))
    drop-shadow(0 1px 2px rgba(44,62,80,0.18));
  will-change: transform;
  transform-style: preserve-3d;
}
.anim-icon.i1  { top: 6%;  left: 3%;   width: 60px; height: 76px; animation: floatA 7s ease-in-out infinite; }
.anim-icon.i2  { top: 12%; left: 88%;  width: 80px; height: 80px; animation: floatB 9s ease-in-out infinite 1s; }
.anim-icon.i3  { top: 60%; left: 5%;   width: 84px; height: 92px; animation: floatC 8s ease-in-out infinite 2s; }
.anim-icon.i4  { top: 68%; left: 86%;  width: 60px; height: 76px; animation: floatA 6s ease-in-out infinite 0.5s; }
.anim-icon.i5  { top: 26%; left: 46%;  width: 56px; height: 56px; animation: pulseHeart 2.4s ease-in-out infinite; opacity: 1; z-index: 2; }
.anim-icon.i6  { top: 48%; left: 50%;  width: 64px; height: 64px; animation: floatB 10s ease-in-out infinite 3s; opacity: 0.55; }
.anim-icon.i7  { top: 82%; left: 48%;  width: 64px; height: 64px; animation: floatC 9s ease-in-out infinite 1.5s; opacity: 0.6; }
.anim-icon.i8  { top: 4%;  left: 50%;  width: 44px; height: 44px; animation: twinkle 3s ease-in-out infinite; }
.anim-icon.i9  { top: 36%; left: 14%;  width: 70px; height: 56px; animation: floatA 7s ease-in-out infinite 0.6s; }
.anim-icon.i10 { top: 58%; left: 72%;  width: 40px; height: 40px; animation: twinkle 2.8s ease-in-out infinite 1.2s; }

.anim-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.shield-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--pink-deep);
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 3s ease-out infinite;
}
.shield-ring.r2 { animation-delay: 1s; border-color: var(--blue-deep); }
.shield-ring.r3 { animation-delay: 2s; border-color: var(--pink); }

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg) rotateZ(0deg); }
  25% { transform: translate3d(6px, -14px, 20px) rotateY(20deg) rotateZ(-4deg); }
  50% { transform: translate3d(10px, -24px, 30px) rotateY(0deg) rotateZ(-6deg); }
  75% { transform: translate3d(4px, -14px, 10px) rotateY(-15deg) rotateZ(-3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg) rotateZ(0deg); }
  25% { transform: translate3d(-8px, -10px, 15px) rotateY(-18deg) rotateZ(5deg); }
  50% { transform: translate3d(-14px, -20px, 35px) rotateY(0deg) rotateZ(8deg); }
  75% { transform: translate3d(-6px, -12px, 12px) rotateY(18deg) rotateZ(4deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg) rotateZ(0deg); }
  33% { transform: translate3d(10px, -16px, 25px) rotateY(25deg) rotateZ(5deg); }
  66% { transform: translate3d(-8px, -28px, 35px) rotateY(-25deg) rotateZ(-4deg); }
}
@keyframes pulseHeart {
  0%, 100% { transform: scale(1) rotateY(0deg); }
  25% { transform: scale(1.15) rotateY(15deg); }
  50% { transform: scale(1.3) rotateY(0deg); filter: drop-shadow(0 12px 20px rgba(242,84,122,0.5)) drop-shadow(0 4px 8px rgba(44,62,80,0.2)); }
  75% { transform: scale(1.15) rotateY(-15deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85) rotateZ(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotateZ(180deg); }
}
@keyframes ringPulse {
  0% { opacity: 0; transform: scale(0.5); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: scale(2.2); }
}

@media (max-width: 640px) {
  .anim-icon { width: 44px !important; height: 44px !important; opacity: 0.65; }
  .anim-icon.i1 { height: 56px !important; }
  .anim-icon.i3 { height: 50px !important; }
  .anim-icon.i6, .anim-icon.i7, .anim-icon.i9 { display: none; }
  .anim-shield { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-icon, .shield-ring { animation: none; }
}
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
}
.hero-content .accent { color: var(--pink-deep); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.hero-image {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  max-width: 360px;
  width: 80%;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 32px rgba(44, 62, 80, 0.18));
}

/* SHOWCASE SLIDER */
.showcase {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 80px 0;
  overflow: hidden;
}
.slider {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--white);
}
.slides {
  position: relative;
  height: 480px;
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(0.98);
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.slide-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.slide-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 40%);
}
.slide-image img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(44, 62, 80, 0.2));
}
.slide-content {
  padding: 60px;
}
.slide-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.slide-subtitle {
  font-size: 1.05rem;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 16px;
}
.slide-content p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 1rem;
}
.slide-areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.slide-areas li {
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--cream-dark);
}
.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.95rem;
}
.slide-link::after { content: "→"; transition: transform 0.2s; }
.slide-link:hover::after { transform: translateX(4px); }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ink);
  transition: transform 0.2s, background 0.2s;
}
.slider-arrow:hover { background: var(--pink-deep); color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(44, 62, 80, 0.25);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  padding: 0;
}
.slider-dot.active { width: 32px; background: var(--pink-deep); }

@media (max-width: 900px) {
  .slides { height: auto; }
  .slide { position: relative; grid-template-columns: 1fr; opacity: 1; visibility: visible; }
  .slide:not(.active) { display: none; }
  .slide-image { height: 280px; }
  .slide-content { padding: 32px 24px 48px; }
  .slider-arrow { width: 40px; height: 40px; top: 140px; transform: translateY(-50%); }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
}

/* About wide layout */
.about-wide { max-width: 1100px; margin: 0 auto; text-align: center; }
.about-wide h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.about-wide .about-lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 56px;
}
.about-cols p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-cols strong { color: var(--ink); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Net Kalıp banner */
.netkalip-section {
  padding: 0 0 60px;
  background: var(--cream);
}
.netkalip-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ink) 0%, #3d5670 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}
.netkalip-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(248,200,216,0.15) 0%, transparent 60%);
  transition: transform 0.5s;
}
.netkalip-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(44, 62, 80, 0.35);
}
.netkalip-banner:hover::before { transform: scale(1.2); }
.netkalip-banner-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 8px;
}
.netkalip-banner-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.netkalip-banner-text {
  position: relative;
  z-index: 1;
  text-align: left;
}
.netkalip-banner-text h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--white);
}
.netkalip-banner-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.netkalip-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-deep);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.netkalip-banner-btn svg { width: 16px; height: 16px; }
.netkalip-banner:hover .netkalip-banner-btn { background: #ed8aa8; }

@media (max-width: 900px) {
  .about-cols { grid-template-columns: 1fr; gap: 0; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .netkalip-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 18px;
  }
  .netkalip-banner-icon { margin: 0 auto; }
  .netkalip-banner-text { text-align: center; }
  .netkalip-banner-btn { justify-self: center; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* About collage replacement */
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 5 / 4;
}
.about-collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.about-collage-item:hover { transform: translateY(-4px); }
.about-collage-item img { max-width: 80%; max-height: 80%; object-fit: contain; }
.about-collage-item:nth-child(1) { background: linear-gradient(135deg, var(--pink) 0%, #ffd9e5 100%); }
.about-collage-item:nth-child(2) { background: linear-gradient(135deg, var(--blue) 0%, #d4eaf5 100%); }
.about-collage-item:nth-child(3) { background: linear-gradient(135deg, #ffe8d0 0%, var(--cream-dark) 100%); }
.about-collage-item:nth-child(4) { background: linear-gradient(135deg, #e0f0e8 0%, #f0fae0 100%); }

/* SECTION */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.eyebrow {
  display: inline-block;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ABOUT */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; font-size: 2.2rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.value {
  background: var(--cream);
  padding: 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--pink-deep);
}
.value h4 { font-size: 1rem; margin-bottom: 4px; }
.value p { font-size: 0.9rem; margin: 0; }

/* PRODUCTS */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-deep), var(--blue-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 var(--pink-deep);
  transition: box-shadow 0.4s;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(242, 165, 188, 0.35);
}
.product-card:hover::before { transform: scaleX(1); }
.product-image {
  aspect-ratio: 1;
  background: var(--cream-dark);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.product-card:hover .product-image {
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
}
.product-image::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -120%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transition: left 0.7s ease;
  z-index: 2;
}
.product-card:hover .product-image::before { left: 120%; }
.product-image img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
  position: relative;
  z-index: 1;
}
.product-image .img-hover {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  opacity: 0;
}
.product-card:hover .product-image img.img-main {
  opacity: 0;
  transform: scale(1.1) rotate(-4deg);
}
.product-card:hover .product-image img.img-hover {
  opacity: 1;
  transform: scale(1.08);
}
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; transition: transform 0.3s; }
.product-body h3 { font-size: 1.2rem; margin-bottom: 10px; transition: color 0.3s; }
.product-card:hover .product-body h3 { color: var(--pink-deep); }
.product-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.product-link::after { content: "→"; transition: transform 0.3s; display: inline-block; }
.product-card:hover .product-link::after { transform: translateX(8px); }
.product-link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-deep);
  transition: width 0.3s;
}
.product-card:hover .product-link::before { width: 100%; }

/* SAFETY BANNER - dynamic happy kids scene */
.safety {
  position: relative;
  text-align: center;
  padding: 100px 32px 220px;
  border-radius: var(--radius-lg);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe5ee 0%, #ffd6e3 30%, #b8dcec 70%, #d4eaf5 100%);
  background-size: 200% 200%;
  animation: bgShift 12s ease-in-out infinite;
  isolation: isolate;
}
@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* animated background blobs */
.safety-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob.b1 { width: 280px; height: 280px; background: #ff9eb8; top: -80px; left: -60px; animation-delay: 0s; }
.blob.b2 { width: 320px; height: 320px; background: #8fc4dc; top: 40%; right: -100px; animation-delay: 3s; }
.blob.b3 { width: 240px; height: 240px; background: #ffc944; bottom: -80px; left: 25%; animation-delay: 6s; }
.blob.b4 { width: 200px; height: 200px; background: #b890e8; top: 30%; left: 35%; animation-delay: 9s; opacity: 0.35; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* sun in corner */
.safety-sun {
  position: absolute;
  top: 30px;
  right: 50px;
  width: 100px;
  height: 100px;
  z-index: 1;
  animation: sunBob 4s ease-in-out infinite;
}
.safety-sun svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(255,201,68,0.5)); }
.sun-rays { transform-origin: 60px 60px; animation: sunRays 12s linear infinite; }
@keyframes sunBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes sunRays { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* happy kids */
.safety-kids {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 5%;
  z-index: 2;
  pointer-events: none;
}
.kid-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 16px 32px rgba(44,62,80,0.22), 0 4px 12px rgba(44,62,80,0.15);
  position: relative;
  will-change: transform;
  margin-bottom: 10px;
}
.kid-photo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.kid-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kid-photo.k1 { animation: kidBounce 2.6s ease-in-out infinite; transform-origin: bottom center; }
.kid-photo.k2 { animation: kidBounce 3s ease-in-out infinite 0.4s; transform-origin: bottom center; width: 200px; height: 200px; }
.kid-photo.k3 { animation: kidWave 2.8s ease-in-out infinite 0.8s; transform-origin: bottom center; }

@keyframes kidBounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
@keyframes kidWave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(3deg); }
  75% { transform: translateY(-12px) rotate(-3deg); }
}

/* floating decorative icons */
.safety-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-icon {
  position: absolute;
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 8px rgba(44,62,80,0.15));
  will-change: transform;
}
.float-icon.f1 { top: 18%; left: 12%; animation: floatHigh 5s ease-in-out infinite; }
.float-icon.f2 { top: 40%; left: 20%; animation: twinkleSm 3s ease-in-out infinite 0.5s; font-size: 1.6rem; }
.float-icon.f3 { top: 60%; right: 18%; animation: twinkleSm 2.5s ease-in-out infinite 1s; font-size: 1.8rem; }
.float-icon.f4 { top: 25%; right: 22%; animation: balloonRise 6s ease-in-out infinite; font-size: 2.6rem; }
.float-icon.f5 { top: 55%; left: 8%; animation: floatHigh 5.5s ease-in-out infinite 1.5s; font-size: 1.8rem; }
.float-icon.f6 { top: 12%; right: 35%; animation: floatHigh 6s ease-in-out infinite 2s; font-size: 1.6rem; }

@keyframes floatHigh {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(15deg); }
}
@keyframes twinkleSm {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes balloonRise {
  0% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
  100% { transform: translateY(0) rotate(-3deg); }
}

/* content */
.safety-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}
.safety-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #c43960 0%, #345d78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titlePulse 3s ease-in-out infinite;
}
@keyframes titlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.safety-content p {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 700px) {
  .safety { padding: 80px 20px 200px; }
  .safety-sun { width: 70px; height: 70px; top: 20px; right: 20px; }
  .kid-photo { width: 95px !important; height: 95px !important; border-width: 4px; }
  .kid-photo.k2 { width: 110px !important; height: 110px !important; }
  .float-icon { font-size: 1.5rem !important; }
  .float-icon.f4 { font-size: 1.8rem !important; }
  .safety-kids { padding: 0 2%; }
}

@media (prefers-reduced-motion: reduce) {
  .safety, .blob, .safety-sun, .sun-rays, .kid-photo, .float-icon, .safety-content h2 { animation: none; }
}

/* CONTACT */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-card h3 { margin-bottom: 24px; font-size: 1.4rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-item .icon {
  width: 44px; height: 44px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-content strong { display: block; font-family: 'Quicksand'; font-weight: 700; margin-bottom: 4px; }
.contact-item-content span, .contact-item-content a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-item-content a:hover { color: var(--pink-deep); }
.qr-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--cream-dark);
}
.qr-block img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px;
}
.qr-block-text strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.qr-block-text span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer p, .footer a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer a:hover { color: var(--pink); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img {
  height: 72px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* PRODUCT DETAIL */
.product-detail { padding: 60px 0 100px; background: var(--white); }
.breadcrumb {
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.breadcrumb a:hover { color: var(--pink-deep); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gallery { position: sticky; top: 100px; }
.gallery-main {
  background: var(--cream);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 12px; }
.thumb {
  flex: 0 0 90px;
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.thumb.active { border-color: var(--pink-deep); }
.thumb:hover { transform: scale(1.05); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.detail-info h1 { font-size: 2.4rem; margin-bottom: 16px; }
.detail-info .lead { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 28px; }
.feature-list { list-style: none; margin: 28px 0; }
.feature-list li {
  padding: 14px 0 14px 40px;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 28px; height: 28px;
  background: var(--pink);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.detail-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* FADE IN ANIMATION */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ORDER FORM */
.order { background: var(--cream); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.order-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.order-info p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.order-perks { list-style: none; margin-top: 24px; }
.order-perks li {
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--ink);
  font-weight: 600;
}
.order-perks li::before {
  content: "★";
  position: absolute;
  left: 0; top: 8px;
  width: 26px; height: 26px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.85rem;
}
.order-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
  background: #fff;
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--pink-deep);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: #ed8aa8; transform: translateY(-2px); }
.form-submit svg { width: 20px; height: 20px; fill: #fff; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .form-row.split { grid-template-columns: 1fr; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid, .footer-grid, .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 40px 0 60px; }
}

@media (max-width: 640px) {
  .nav { padding: 12px 16px; gap: 8px; }
  .logo img { height: 52px; }
  .logo-text { font-size: 1.1rem; }
  .lang-switch { padding: 3px; gap: 2px; margin-right: 4px; }
  .lang-btn { padding: 5px 9px; font-size: 0.72rem; }
  .header.scrolled .logo img { height: 44px; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .container { padding: 0 16px; }
}
