/* =================================================================
   PETAL — Pet Store Template (Bilingual UA/EN)
   Style: Soft & fluffy · pastel turquoise & peach · paw print motifs
   ================================================================= */

:root {
  --bg: #fdfaf6;
  --bg-soft: #f8f1ea;
  --cream: #fff8f0;
  --turquoise: #7dd3c0;
  --turquoise-soft: #a8e0d4;
  --turquoise-deep: #5fb8a3;
  --turquoise-bg: #e8f6f2;
  --peach: #ffb5a7;
  --peach-soft: #ffd3c4;
  --peach-deep: #ff8c7a;
  --peach-bg: #fff0eb;
  --coral: #ff6b6b;
  --yellow: #ffd93d;
  --yellow-soft: #ffe588;
  --lavender: #c4b5e8;
  --lavender-soft: #ddd0f5;
  --mint: #b8e0c8;
  --text: #4a3f3a;
  --text-soft: #7a6b62;
  --text-muted: #a89a8e;
  --text-faint: #c4b8ae;
  --white: #ffffff;
  --line: #f0e4dc;
  --line-soft: #f8f0e8;
  --shadow-soft: 0 4px 12px rgba(74, 63, 58, 0.06);
  --shadow: 0 8px 24px rgba(74, 63, 58, 0.1);
  --shadow-deep: 0 16px 40px rgba(74, 63, 58, 0.15);
  --shadow-peach: 0 8px 24px rgba(255, 181, 167, 0.4);
  --shadow-turquoise: 0 8px 24px rgba(125, 211, 192, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============ PAW PRINT BACKGROUND ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(125, 211, 192, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255, 181, 167, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.06) 0%, transparent 50%),
    var(--bg);
}

.paw-bg {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  color: var(--turquoise-soft);
  font-size: 28px;
  opacity: 0.5;
  animation: paw-float 12s ease-in-out infinite;
}

.paw-bg.p1 { top: 12%; left: 4%; transform: rotate(-25deg); }
.paw-bg.p2 { top: 35%; right: 3%; color: var(--peach-soft); transform: rotate(15deg); animation-delay: -3s; font-size: 36px; }
.paw-bg.p3 { top: 65%; left: 6%; color: var(--yellow-soft); transform: rotate(-10deg); animation-delay: -6s; font-size: 24px; }
.paw-bg.p4 { top: 85%; right: 8%; color: var(--lavender); transform: rotate(20deg); animation-delay: -9s; font-size: 32px; }
.paw-bg.p5 { top: 50%; right: 30%; color: var(--mint); transform: rotate(-15deg); animation-delay: -4s; font-size: 20px; opacity: 0.4; }

@keyframes paw-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.4; }
  50% { transform: translateY(-20px) rotate(calc(var(--r, 0deg) + 5deg)); opacity: 0.7; }
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: linear-gradient(90deg, var(--turquoise), var(--mint), var(--peach));
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.top-strip .scroll {
  display: inline-flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  padding-left: 60px;
}

.top-strip span { display: inline-flex; align-items: center; gap: 8px; }
.top-strip .paw { font-size: 16px; }

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

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.05); }

.logo-paw {
  width: 36px;
  height: 36px;
  background: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(125, 211, 192, 0.4);
}

.logo .accent { color: var(--peach-deep); }

/* Search */
.search-wrap {
  display: flex;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.search-wrap:focus-within {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px var(--turquoise-bg);
}

.search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 22px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.search-wrap input::placeholder { color: var(--text-faint); }

.search-btn {
  background: var(--peach-deep);
  color: var(--white);
  border: none;
  padding: 0 22px;
  margin: 4px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s ease;
}

.search-btn:hover { background: var(--coral); }

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

/* Language switcher */
.lang-toggle {
  display: flex;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 100px;
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--turquoise);
  color: var(--white);
}

.icon-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--peach-bg);
  border-color: var(--peach-deep);
  transform: translateY(-2px);
}

.icon-btn .count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--coral);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  font-family: 'Fredoka', sans-serif;
}

/* ============ NAVIGATION ============ */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav-inner a {
  font-family: 'Nunito', sans-serif;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 0;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-inner a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--peach-deep);
  transition: width 0.3s ease;
  border-radius: 100px;
}

.nav-inner a:hover, .nav-inner a.active { color: var(--text); }

.nav-inner a:hover::after, .nav-inner a.active::after {
  width: 30px;
}

.nav-inner a .icon { font-size: 16px; }
.nav-inner a .en { color: var(--text-faint); font-size: 11px; font-style: italic; margin-left: 2px; }

/* ============ HERO ============ */
.hero {
  max-width: 1320px;
  margin: 48px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--peach-bg);
  color: var(--peach-deep);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 2px solid var(--peach-soft);
}

.hero-eyebrow .paw { font-size: 16px; }

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-title .accent1 { color: var(--turquoise-deep); }
.hero-title .accent2 { color: var(--peach-deep); }

.hero-title .en {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 500;
}

.hero-desc .en {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

.hero-cta { display: flex; gap: 14px; margin-bottom: 36px; }

.btn {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--white);
  border-color: var(--turquoise);
  box-shadow: 0 4px 0 var(--turquoise-deep);
}

.btn-primary:hover {
  background: var(--turquoise-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--turquoise-deep);
}

.btn-secondary {
  background: var(--peach);
  color: var(--white);
  border-color: var(--peach);
  box-shadow: 0 4px 0 var(--peach-deep);
}

.btn-secondary:hover {
  background: var(--peach-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--peach-deep);
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 2px dashed var(--line);
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-pill .emoji {
  font-size: 32px;
  line-height: 1;
}

.stat-pill .value {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  line-height: 1;
}

.stat-pill .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--turquoise-bg), var(--peach-bg));
  box-shadow: var(--shadow-deep);
  border: 4px solid var(--white);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.hero-visual:hover img { transform: scale(1.05); }

.paw-chip {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--line);
  padding: 12px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: chip-float 4s ease-in-out infinite;
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.paw-chip.c1 {
  top: 30px;
  left: -30px;
  border-color: var(--turquoise);
}

.paw-chip.c2 {
  bottom: 50px;
  right: -20px;
  border-color: var(--peach);
  animation-delay: -2s;
}

.paw-chip .emoji { font-size: 24px; }

.paw-chip .text .title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  line-height: 1;
}

.paw-chip .text .sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1320px;
  margin: 80px auto 40px;
  padding: 0 32px;
  text-align: center;
}

.section-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--peach-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow .paw { color: var(--turquoise-deep); font-size: 18px; }

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-title .accent1 { color: var(--turquoise-deep); }
.section-title .accent2 { color: var(--peach-deep); }

.section-title .en {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: -0.2px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

/* ============ CATEGORY TILES ============ */
.categories {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-tile {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
}

.cat-tile:nth-child(1) { background: var(--turquoise-bg); }
.cat-tile:nth-child(2) { background: var(--peach-bg); }
.cat-tile:nth-child(3) { background: #fff8dc; }
.cat-tile:nth-child(4) { background: var(--lavender-soft); }
.cat-tile:nth-child(5) { background: var(--peach-bg); }
.cat-tile:nth-child(6) { background: var(--turquoise-bg); }
.cat-tile:nth-child(7) { background: var(--lavender-soft); }
.cat-tile:nth-child(8) { background: #fff8dc; }

.cat-tile:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow);
  border-color: var(--turquoise);
}

.cat-emoji {
  font-size: 60px;
  margin-bottom: 12px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.cat-tile:hover .cat-emoji { transform: scale(1.2) rotate(10deg); }

.cat-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.cat-en {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: italic;
}

.cat-count {
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  color: var(--turquoise-deep);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  font-weight: 600;
}

/* ============ PRODUCT GRID ============ */
.products {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 16px;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-deep);
  border-color: var(--peach);
}

.product-badge {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--peach-deep);
  color: var(--white);
  padding: 6px 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 11px;
  border-radius: 100px;
  z-index: 2;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-soft);
}

.product-badge.new { background: var(--turquoise-deep); }
.product-badge.hot { background: var(--coral); }
.product-badge.sale { background: var(--yellow); color: var(--text); }

.product-image-wrap {
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.product-image-wrap.t1 { background: var(--turquoise-bg); }
.product-image-wrap.t2 { background: var(--peach-bg); }
.product-image-wrap.t3 { background: #fff8dc; }
.product-image-wrap.t4 { background: var(--lavender-soft); }
.product-image-wrap.t5 { background: var(--mint); }
.product-image-wrap.t6 { background: var(--peach-bg); }
.product-image-wrap.t7 { background: var(--turquoise-bg); }
.product-image-wrap.t8 { background: var(--lavender-soft); }

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product:hover .product-image { transform: scale(1.08) rotate(3deg); }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  color: var(--text-muted);
  border: none;
  font-size: 16px;
}

.product-wishlist:hover { background: var(--coral); color: var(--white); }

.product-info { padding: 4px 4px 0; }

.product-cat {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  color: var(--peach-deep);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-name-en {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: italic;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.paws {
  color: var(--yellow);
  letter-spacing: 1px;
  text-shadow: 0 0 4px rgba(255, 217, 61, 0.3);
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-block { display: flex; flex-direction: column; }

.price-old {
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.price-new {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  line-height: 1;
}

.price-new .cur {
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 2px;
  font-weight: 500;
}

.add-btn {
  background: var(--turquoise);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 0 var(--turquoise-deep);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  background: var(--peach-deep);
  box-shadow: 0 4px 0 var(--coral);
  transform: scale(1.05);
}

/* ============ PET TYPES ============ */
.pet-types {
  max-width: 1320px;
  margin: 80px auto;
  padding: 0 32px;
}

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

.pet-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pet-card:nth-child(1) { background: var(--peach-bg); border-color: var(--peach-soft); }
.pet-card:nth-child(2) { background: var(--turquoise-bg); border-color: var(--turquoise-soft); }
.pet-card:nth-child(3) { background: var(--lavender-soft); }
.pet-card:nth-child(4) { background: #fff8dc; }

.pet-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: var(--shadow);
}

.pet-emoji {
  font-size: 72px;
  margin-bottom: 12px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.4s ease;
}

.pet-card:hover .pet-emoji { transform: scale(1.15) rotate(-8deg); }

.pet-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}

.pet-en {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-style: italic;
}

.pet-count {
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  color: var(--text);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid var(--line);
}

/* ============ FEATURE STRIP ============ */
.feature-strip {
  max-width: 1320px;
  margin: 60px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: var(--turquoise);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--turquoise-bg);
  color: var(--turquoise-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature:nth-child(2) .feature-icon { background: var(--peach-bg); color: var(--peach-deep); }
.feature:nth-child(3) .feature-icon { background: #fff8dc; color: #d4a548; }
.feature:nth-child(4) .feature-icon { background: var(--lavender-soft); color: #7c5fb8; }

.feature-text .title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  line-height: 1.1;
}

.feature-text .sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ PROMO BANNER ============ */
.promo {
  max-width: 1320px;
  margin: 80px auto;
  padding: 0 32px;
}

.promo-frame {
  background:
    linear-gradient(135deg, var(--peach-bg), var(--turquoise-bg));
  border: 2px solid var(--peach-soft);
  border-radius: 40px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-frame::before {
  content: '🐾';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  opacity: 0.15;
  animation: paw-rotate 8s linear infinite;
}

@keyframes paw-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.promo-content { position: relative; z-index: 1; }

.promo-tag {
  display: inline-flex;
  background: var(--peach-deep);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 12px rgba(255, 140, 122, 0.4);
}

.promo-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.promo-title .accent { color: var(--peach-deep); }

.promo-en {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.promo-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 420px;
  font-weight: 500;
}

.promo-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-deep);
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: chip-float 4s ease-in-out infinite;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  max-width: 920px;
  margin: 80px auto;
  padding: 0 32px;
  text-align: center;
}

.testimonial-paw {
  font-size: 56px;
  margin-bottom: 16px;
  display: inline-block;
  animation: paw-bounce 2s ease-in-out infinite;
}

@keyframes paw-bounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.testimonial-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--turquoise-deep);
}

.testimonial-pet {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  max-width: 1320px;
  margin: 80px auto;
  padding: 0 32px;
}

.newsletter-frame {
  background:
    linear-gradient(135deg, var(--turquoise), var(--mint));
  border-radius: 40px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-frame::before {
  content: '🐾';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 120px;
  opacity: 0.15;
  transform: rotate(-15deg);
}

.newsletter-frame::after {
  content: '🐾';
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: 100px;
  opacity: 0.15;
  transform: rotate(20deg);
}

.newsletter-content { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }

.newsletter-emoji {
  font-size: 56px;
  margin-bottom: 16px;
  display: inline-block;
  animation: paw-bounce 2s ease-in-out infinite;
}

.newsletter h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.newsletter h3 .accent { color: var(--yellow); }

.newsletter .h3-en {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.newsletter p {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.6;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  padding: 6px;
  border-radius: 100px;
  box-shadow: var(--shadow);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-faint); }

.newsletter-form button {
  background: var(--peach-deep);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover { background: var(--coral); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg-soft);
  border-top: 2px solid var(--line);
  padding: 60px 0 28px;
  margin-top: 60px;
  position: relative;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px dashed var(--line);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-brand p.en {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-col a:hover { color: var(--peach-deep); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--turquoise);
  color: var(--white);
  border-color: var(--turquoise);
  transform: translateY(-3px) rotate(-10deg);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeIn 0.7s ease backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 56px; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .pet-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .promo-frame { grid-template-columns: 1fr; padding: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto auto; gap: 12px; padding: 0 20px; }
  .search-wrap { display: none; }
  .logo { font-size: 24px; }
  .nav-inner { gap: 18px; padding: 0 20px; overflow-x: auto; }
  .nav-inner a { font-size: 12px; padding: 14px 0; }
  .hero { padding: 0 20px; margin: 32px auto; }
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .section-head { padding: 0 20px; }
  .section-title { font-size: 36px; }
  .categories, .products, .pet-types, .feature-strip, .promo, .newsletter { padding: 0 20px; }
  .categories { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .pet-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .promo-frame { padding: 28px 20px; }
  .promo-title { font-size: 36px; }
  .newsletter-frame { padding: 40px 24px; }
  .newsletter h3 { font-size: 30px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
