/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #FF4F9A;
  --primary-dark: #e83d87;
  --primary-light: #FFD6E8;
  --accent: #FFB6D9;
  --background: #FFF8FB;
  --text: #2D2D2D;
  --text-muted: #888;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(255, 79, 154, 0.1);
  --shadow-md: 0 8px 32px rgba(255, 79, 154, 0.15);
  --shadow-lg: 0 16px 48px rgba(255, 79, 154, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ===== SECTION SPACING ===== */
.section {
  padding: 80px 0;
}

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #ff6eb0);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 79, 154, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 79, 154, 0.5);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2.5px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  width: 100%;
  margin-top: 12px;
}

/* ===== ICON BUTTONS ===== */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ===== TOP BAR ===== */
.topbar {
  background: linear-gradient(90deg, var(--primary), #ff6eb0, var(--primary));
  background-size: 200% 100%;
  animation: topbarGradient 4s ease-in-out infinite;
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
}

@keyframes topbarGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.topbar__inner span {
  white-space: nowrap;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 251, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 79, 154, 0.12);
  box-shadow: 0 2px 20px rgba(255, 79, 154, 0.08);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== LOGO ===== */
.logo {
  flex-shrink: 0;
}

.logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo__img--footer {
  height: 64px;
}

/* ===== CATALOG BUTTON ===== */
.catalog-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.catalog-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.catalog-btn__icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.catalog-btn__icon span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== SEARCH ===== */
.search-wrap {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.12);
}

.search-input {
  flex: 1;
  padding: 10px 18px;
  border: none;
  outline: none;
  font-size: 0.92rem;
  background: transparent;
  color: var(--text);
}

.search-btn {
  padding: 10px 16px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.search-btn:hover {
  color: var(--primary);
}

/* ===== HEADER ACTIONS ===== */
.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ===== CART BADGE ===== */
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--background);
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge.bump {
  transform: scale(1.4);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 45, 45, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  padding: 60px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.open .mobile-menu__inner {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-menu__close:hover {
  color: var(--primary);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--transition);
}

.mobile-menu__nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 112px);
  background: linear-gradient(145deg, #fff0f7 0%, #ffd6e8 40%, #ffe8f4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,79,154,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary), #ff6eb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--outer {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 40% 40%, rgba(255,79,154,0.18) 0%, rgba(255,182,217,0.08) 60%, transparent 80%);
  animation: heroCircle 6s ease-in-out infinite;
}

.hero__circle--inner {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,214,232,0.3) 100%);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,79,154,0.15);
}

@keyframes heroCircle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.04) rotate(5deg); }
}

/* ===== BUBBLES ===== */
.hero__bubble {
  position: absolute;
  font-size: 2rem;
  animation: bubble 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero__bubble--1 { top: 8%; right: 20%; animation-delay: 0s; }
.hero__bubble--2 { top: 15%; left: 10%; animation-delay: 0.5s; font-size: 1.5rem; }
.hero__bubble--3 { bottom: 20%; right: 8%; animation-delay: 1s; }
.hero__bubble--4 { bottom: 30%; left: 5%; animation-delay: 1.5s; font-size: 1.8rem; }
.hero__bubble--5 { top: 50%; right: 5%; animation-delay: 0.8s; font-size: 1.4rem; }

@keyframes bubble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(5deg); }
  66% { transform: translateY(6px) rotate(-5deg); }
}

/* ===== PANDA CSS ART ===== */
.hero__panda-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pandaFloat 4s ease-in-out infinite;
}

@keyframes pandaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.panda {
  position: relative;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panda__ear {
  position: absolute;
  top: -10px;
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 50%;
  z-index: 1;
}

.panda__ear--left { left: 8px; }
.panda__ear--right { right: 8px; }

.panda__head {
  width: 140px;
  height: 130px;
  background: #ffffff;
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  position: relative;
  z-index: 2;
  border: 3px solid #f0e6e6;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panda__eye {
  position: absolute;
  width: 36px;
  height: 32px;
  background: #1a1a1a;
  border-radius: 50%;
  top: 36px;
}

.panda__eye--left { left: 22px; }
.panda__eye--right { right: 22px; }

.panda__pupil {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  top: 7px;
  left: 9px;
}

.panda__pupil::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #1a1a1a;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.panda__shine {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  top: 5px;
  right: 6px;
  opacity: 0.9;
}

.panda__nose {
  position: absolute;
  width: 20px;
  height: 13px;
  background: #ff7eb3;
  border-radius: 50%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.panda__mouth {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  border: 3px solid #d4a0b0;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.panda__cheek {
  position: absolute;
  width: 22px;
  height: 14px;
  background: rgba(255, 79, 154, 0.25);
  border-radius: 50%;
  bottom: 28px;
}

.panda__cheek--left { left: 10px; }
.panda__cheek--right { right: 10px; }

.panda__body {
  width: 120px;
  height: 100px;
  background: #1a1a1a;
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  position: relative;
  z-index: 1;
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panda__belly {
  width: 72px;
  height: 68px;
  background: #f5f5f5;
  border-radius: 50%;
  position: absolute;
}

.panda__arm {
  position: absolute;
  width: 32px;
  height: 52px;
  background: #1a1a1a;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  bottom: 10px;
}

.panda__arm--left {
  left: -18px;
  transform: rotate(-15deg);
}

.panda__arm--right {
  right: -18px;
  transform: rotate(15deg);
}

.panda__candy {
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: pandaCandySway 2.5s ease-in-out infinite;
}

@keyframes pandaCandySway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.hero__candy-pile {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 1.6rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero__candy-pile span {
  animation: bubble 3s ease-in-out infinite;
}

.hero__candy-pile span:nth-child(2) { animation-delay: 0.3s; }
.hero__candy-pile span:nth-child(3) { animation-delay: 0.6s; }
.hero__candy-pile span:nth-child(4) { animation-delay: 0.9s; }
.hero__candy-pile span:nth-child(5) { animation-delay: 1.2s; }

/* ===== HERO WAVE ===== */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in--delay {
  animation-delay: 0.25s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CATEGORIES ===== */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6eb0);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.cat-card__icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
  display: block;
  transition: transform var(--transition);
}

.cat-card:hover .cat-card__icon {
  transform: scale(1.15) rotate(5deg);
}

.cat-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cat-card__count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cat-card--new {
  background: linear-gradient(145deg, var(--primary-light), #ffe0ee);
}

.cat-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ===== PRODUCTS ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-card__img-wrap {
  position: relative;
  padding: 24px;
  background: linear-gradient(145deg, #fff5f9, var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-card__img {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}

.product-card:hover .product-card__img {
  transform: scale(1.1) rotate(-5deg);
}

.product-card__discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(255,79,154,0.35);
}

.product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card__wish:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

.product-card__body {
  padding: 16px 18px 18px;
}

.product-card__stars {
  font-size: 0.8rem;
  color: #f5a623;
  margin-bottom: 6px;
}

.product-card__stars span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.product-card__weight {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.product-card__old {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ===== PROMO ===== */
.promo__banner {
  background: linear-gradient(135deg, #ff4f9a 0%, #ff6eb0 40%, #ffb6d9 100%);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(255, 79, 154, 0.35);
}

.promo__banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.promo__banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.promo__content {
  position: relative;
  z-index: 2;
}

.promo__label {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.promo__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 28px;
}

.promo__sub strong {
  background: rgba(255,255,255,0.25);
  padding: 2px 10px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.promo__deco {
  font-size: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.promo__deco span {
  display: block;
  animation: bubble 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.promo__deco span:nth-child(2) { animation-delay: 0.4s; }
.promo__deco span:nth-child(3) { animation-delay: 0.8s; }
.promo__deco span:nth-child(4) { animation-delay: 1.2s; }
.promo__deco span:nth-child(5) { animation-delay: 1.6s; }
.promo__deco span:nth-child(6) { animation-delay: 2s; }

/* ===== ADVANTAGES ===== */
.advantages {
  background: var(--white);
}

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

.adv-card {
  background: var(--background);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.adv-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.adv-card__icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.adv-card:hover .adv-card__icon {
  transform: scale(1.15);
}

.adv-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.adv-card__text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
  background: linear-gradient(180deg, var(--background), #fff0f7);
}

.reviews__slider {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff6eb0);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.review-card__stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-top: 2px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.review-card__date {
  font-size: 0.78rem;
  color: #bbb;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.reviews__arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.reviews__dots {
  display: flex;
  gap: 8px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  transition: all var(--transition);
  cursor: pointer;
}

.reviews__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.gallery__item:nth-child(1) { background: linear-gradient(135deg, #ffd6e8, #ff9dcc); }
.gallery__item:nth-child(2) { background: linear-gradient(135deg, #d4a574, #8B4513); }
.gallery__item:nth-child(3) { background: linear-gradient(135deg, #ff9dcc, #ff4f9a); }
.gallery__item:nth-child(4) { background: linear-gradient(135deg, #c8a2c8, #9b59b6); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, #ff6eb0, var(--primary)); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, #1a1a1a, #444); }
.gallery__item:nth-child(7) { background: linear-gradient(135deg, #c8a040, #8B6914); }

.gallery__item span {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  transition: transform var(--transition);
}

.gallery__item p {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery__item:hover span {
  transform: scale(1.15);
}

.gallery__item--big {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 1;
}

/* ===== SUBSCRIBE ===== */
.subscribe__box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
  border: 2px solid var(--primary-light);
}

.subscribe__deco {
  font-size: 1.5rem;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.subscribe__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.subscribe__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.subscribe__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.subscribe__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--primary-light);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
  background: var(--background);
}

.subscribe__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.12);
}

.subscribe__hint {
  font-size: 0.8rem;
  color: #bbb;
}

/* ===== FOOTER ===== */
.footer {
  background: #1e1a20;
  color: rgba(255,255,255,0.75);
}

.footer__top {
  padding: 60px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand {
  padding-right: 24px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 14px 0 24px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a,
.footer__links li span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: block;
}

.footer__links li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1e1a20;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast__icon {
  font-size: 1.3rem;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 0;
  }

  .footer__tagline {
    margin: 0;
    flex: 1;
  }

  .promo__deco {
    font-size: 2.8rem;
  }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  .topbar__inner span:not(:first-child) {
    display: none;
  }

  .catalog-btn {
    display: none;
  }

  .search-wrap {
    max-width: none;
  }

  .header__actions .icon-btn:not(.cart-btn) {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__circle--outer {
    width: 300px;
    height: 300px;
  }

  .hero__circle--inner {
    width: 220px;
    height: 220px;
  }

  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .promo__banner {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
    gap: 24px;
  }

  .promo__deco {
    grid-template-columns: repeat(6, 1fr);
    font-size: 2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item--big {
    grid-column: span 2;
  }

  .subscribe__form {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-card__img {
    font-size: 3.5rem;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .promo__banner {
    padding: 32px 24px;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .subscribe__box {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== RESPONSIVE: 375px ===== */
@media (max-width: 375px) {
  .hero__title {
    font-size: 2rem;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 20px;
  }
}
