/* ============================================================
   ЖАННӘР — Landing Page Styles
   Mobile-first · CSS Variables · Modern FMCG Design
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- CSS Variables ---- */
:root {
  --blue-primary:   #2B2D9E;
  --blue-dark:      #1E2080;
  --blue-light:     #4547C5;
  --blue-bg:        #EEF0FF;
  --yellow-primary: #F5C000;
  --yellow-light:   #FFD740;
  --white:          #FFFFFF;
  --dark:           #0F1035;
  --gray-light:     #F4F6FF;
  --text-main:      #1A1C4B;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --radius-sm:      8px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --shadow-sm:      0 2px 8px rgba(43,45,158,.08);
  --shadow:         0 8px 32px rgba(43,45,158,.15);
  --shadow-lg:      0 16px 48px rgba(43,45,158,.2);
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
  --header-h:       70px;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay1 { transition-delay: .1s; }
.reveal--delay2 { transition-delay: .2s; }
.reveal--delay3 { transition-delay: .3s; }
.reveal--delay4 { transition-delay: .4s; }
.reveal--delay5 { transition-delay: .5s; }

/* ---- Section Shared ---- */
section { padding: 4rem 0; }
@media (min-width: 768px)  { section { padding: 5rem 0; } }
@media (min-width: 1024px) { section { padding: 6rem 0; } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: var(--blue-bg);
  color: var(--blue-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) { .section-desc { font-size: 1.1rem; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43,45,158,.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  box-shadow: 0 8px 32px rgba(43,45,158,.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--yellow {
  background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-light));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245,192,0,.4);
}
.btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,192,0,.5);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.btn--insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(131,58,180,.3);
}
.btn--insta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(131,58,180,.4); }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* Spinner */
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.loading .btn-spinner { display: block; }
.btn.loading span { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43,45,158,.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__logo { display: flex; align-items: center; }
.header__logo-img { height: 48px; width: auto; object-fit: contain; }

.nav { display: none; align-items: center; gap: 0; }
.nav__link {
  color: var(--text-main);
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 999px;
  transition: var(--transition);
}
.nav__link:hover::after { left: .9rem; right: .9rem; }
.nav__link:hover { color: var(--blue-primary); }

.header__actions { display: flex; align-items: center; gap: .75rem; }

.lang-btn {
  background: var(--blue-bg);
  color: var(--blue-primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: 999px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.lang-btn:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  gap: .25rem;
  border-bottom: 3px solid var(--blue-primary);
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .hamburger { display: none; }
}

/* ============================================================
   HERO — Premium Peek Carousel (Coca-Cola style)
   KEY FIX: slides use vw units, NOT % (% resolves against
   hero-track which has no explicit width → becomes 100%)
   ============================================================ */

.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 960px;
  background: #0a0c1e;
  overflow: hidden;   /* clips carousel at hero edges — enables peek */
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}

/* Carousel — overflow:visible lets slides extend beyond its bounds;
   .hero's overflow:hidden is the actual clip boundary */
.hero-carousel {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: visible;  /* MUST NOT be hidden */
  display: flex;
  align-items: center;
}

/* Track — flex row; JS sets translateX */
.hero-track {
  display: flex;
  align-items: stretch;
  height: 100%;       /* fill carousel height */
  gap: 1.5rem;
  transition: transform .75s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Slides — vw units so peek is always 7vw per side regardless of track width */
.hero-slide {
  flex: 0 0 86vw;     /* FIXED: vw not % */
  width: 86vw;
  max-width: 1240px;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform .75s cubic-bezier(.4,0,.2,1),
              opacity  .75s ease;
  transform: scale(0.93);
  opacity: .45;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}
.hero-slide.active {
  transform: scale(1);
  opacity: 1;
  cursor: default;
}

/* Slide image — fills 100%, no filter/dim */
.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Content block — inside each slide, positioned in LEFT safe zone */
/* Slides are designed with empty area on the left for text */
.hero-slide__content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;                /* covers left 38% of slide (the blank zone) */
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.hero-slide.active .hero-slide__content {
  opacity: 1;
  pointer-events: all;
  transition-delay: .25s;    /* fade in after slide animates into position */
}

/* Logo inside content */
.hero__logo {
  width: 90px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.55));
}
@media (min-width: 768px)  { .hero__logo { width: 108px; } }
@media (min-width: 1280px) { .hero__logo { width: 120px; } }

/* Title — strong text-shadow instead of overlay for readability */
.hero__slide-title {
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .7rem;
  text-shadow:
    0 1px 3px rgba(0,0,0,.9),
    0 3px 16px rgba(0,0,0,.65),
    0 0 40px rgba(0,0,0,.35);
}
.hero__slide-sub {
  font-size: clamp(.82rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.92);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  text-shadow:
    0 1px 3px rgba(0,0,0,.85),
    0 2px 12px rgba(0,0,0,.5);
}

/* Buttons inside content */
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Dots — sit above carousel at bottom-center of .hero */
.hero-bg-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  gap: .55rem;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--yellow-primary);
  transform: scale(1.65);
  box-shadow: 0 0 8px rgba(245,192,0,.7);
}

/* ---- Mobile hero — buttons below card ---- */

/* Desktop: hide mobile-only CTA block */
.hero-cta-mobile { display: none; }

@media (max-width: 767px) {
  /* Hero becomes a flex column so buttons/dots stack below the carousel */
  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  /* Carousel: fixed height so slides fill it properly */
  .hero-carousel {
    height: 64vh;
    min-height: 280px;
    flex: 0 0 auto;
  }

  /* Slides: 82vw wide, fill carousel height */
  .hero-slide      { flex: 0 0 82vw; width: 82vw; max-width: none; border-radius: 16px; }
  .hero-track      { gap: 1rem; height: 100%; }

  /* Slide content: logo + title + subtitle only — NO buttons */
  .hero-slide__content {
    left: 5%;
    top: 8%;
    bottom: auto;
    transform: none;
    width: 82%;
  }
  /* Hide buttons inside slides on mobile */
  .hero-slide__content .hero__btns { display: none; }

  /* Mobile CTA block: below carousel, centered */
  .hero-cta-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 1rem 0.5rem;
    flex: 0 0 auto;
    background: #07091a;  /* matches hero bg so it blends */
  }
  .hero-cta-mobile__primary {
    width: 80%;
    max-width: 320px;
    height: 48px;
    font-size: 16px;
    justify-content: center;
  }
  .hero-cta-mobile__secondary {
    width: 80%;
    max-width: 320px;
    height: 44px;
    font-size: 15px;
    margin-top: 10px;
    justify-content: center;
  }

  /* Dots: static position so they appear below buttons */
  .hero-bg-dots {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    justify-content: center;
    padding: 0.65rem 0 0.9rem;
    flex: 0 0 auto;
    background: #07091a;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
.counter-item {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  color: var(--white);
}
.counter-num {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--yellow-primary);
}
.counter-label {
  font-size: .75rem;
  font-weight: 500;
  opacity: .85;
  margin-top: .4rem;
  display: block;
}
@media (min-width: 768px) { .counter-label { font-size: .85rem; } }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

.feature-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.feature-card:hover {
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.feature-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: .4rem;
}
.feature-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

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

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.cat-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.cat-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: var(--transition);
}
.cat-card:hover .cat-card__img-wrap img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,45,158,.2), transparent);
}

.cat-card__body { padding: 1.5rem; }
.cat-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: .5rem;
}
.cat-card__desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }

/* ============================================================
   CATALOG
   ============================================================ */
.catalog { background: var(--white); }

.tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  background: var(--gray-light);
  padding: .4rem;
  border-radius: var(--radius);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: .65rem 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43,45,158,.3);
}
.tab-btn:hover:not(.active) {
  color: var(--blue-primary);
  background: rgba(43,45,158,.08);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow);
  transform: translateY(-6px) scale(1.02);
}
.product-card__img-wrap {
  aspect-ratio: 3/4;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }
.product-card__body { padding: 1rem; }
.product-card__name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.product-card__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   PROMO
   ============================================================ */
.promo {
  background: linear-gradient(160deg, #070820 0%, #0d0f38 45%, #0f1235 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

/* Background image layers */
.promo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.promo-bg__glow {
  position: absolute;
  width: 130%;
  left: -15%;
  top: -10%;
  opacity: .65;
  mix-blend-mode: screen;
}
.promo-bg__confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .07;
  mix-blend-mode: screen;
}
.promo-bg__coins {
  position: absolute;
  width: 220px;
  opacity: .5;
}
.promo-bg__coins--tl {
  top: -20px; left: -40px;
  transform: rotate(-12deg);
  animation: coinsFloatTL 7s ease-in-out infinite;
}
.promo-bg__coins--br {
  bottom: -20px; right: -40px;
  transform: rotate(168deg);
  animation: coinsFloatBR 9s ease-in-out 2s infinite;
}
@keyframes coinsFloatTL {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-12deg) translateY(-12px); }
}
@keyframes coinsFloatBR {
  0%, 100% { transform: rotate(168deg) translateY(0); }
  50%       { transform: rotate(168deg) translateY(-12px); }
}

.promo__inner { position: relative; z-index: 1; text-align: center; }

/* Header */
.promo__header { margin-bottom: 2.5rem; }

.promo__badge {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 1.3rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  animation: promoBadgePulse 2s ease-in-out infinite;
}
@keyframes promoBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,192,0,.55); }
  50%       { box-shadow: 0 0 0 14px rgba(245,192,0,0); }
}

.promo__title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(130deg, #FFD740 0%, #F5C000 25%, #FFF8B0 52%, #F5C000 75%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 36px rgba(245,192,0,.6));
}

.promo__description {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Main banner */
.promo__hero-visual {
  position: relative;
  max-width: 1020px;
  margin: 0 auto 4rem;
}
.promo-spotlight {
  position: absolute;
  width: 160%;
  left: -30%;
  top: -25%;
  opacity: .45;
  pointer-events: none;
  mix-blend-mode: screen;
}
.promo__banner-img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(245,192,0,.35)) drop-shadow(0 0 90px rgba(43,45,158,.4));
  animation: bannerFloat 4.5s ease-in-out infinite;
}
@keyframes bannerFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Prize cards */
.promo__prizes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto 4rem;
}
@media (min-width: 640px) { .promo__prizes { grid-template-columns: repeat(3, 1fr); } }

.prize-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.prize-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 70px rgba(0,0,0,.4), 0 0 40px rgba(245,192,0,.15);
}
.prize-card--main {
  background: rgba(245,192,0,.07);
  border-color: rgba(245,192,0,.3);
  box-shadow: 0 0 50px rgba(245,192,0,.08), inset 0 1px 0 rgba(245,192,0,.1);
}
.prize-card--main:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,.4), 0 0 60px rgba(245,192,0,.3);
}
.prize-card__img-wrap {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.prize-card__img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
.prize-card--main .prize-card__img-wrap img {
  filter: drop-shadow(0 4px 24px rgba(245,192,0,.4));
}
.prize-card__amount {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow-primary);
  margin-bottom: .5rem;
  text-shadow: 0 0 28px rgba(245,192,0,.45);
}
.prize-card__label {
  font-size: .85rem;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}

/* Coupon flip */
.promo__coupon-section {
  margin-bottom: 4rem;
  text-align: center;
}
.promo__coupon-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow-primary);
  margin-bottom: 1.25rem;
  opacity: .8;
}
.coupon-flip {
  display: inline-block;
  width: min(400px, 88vw);
  aspect-ratio: 16 / 9;
  perspective: 1000px;
  cursor: pointer;
  margin-bottom: .75rem;
}
.coupon-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
@media (hover: hover) {
  .coupon-flip:hover .coupon-flip__inner { transform: rotateY(180deg); }
}
.coupon-flip.flipped .coupon-flip__inner { transform: rotateY(180deg); }

.coupon-flip__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,.55), 0 0 35px rgba(245,192,0,.12);
}
.coupon-flip__face img { width: 100%; height: 100%; object-fit: cover; }
.coupon-flip__back { transform: rotateY(180deg); }

.promo__coupon-hint {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  animation: hintBlink 2.5s ease-in-out infinite;
}
@keyframes hintBlink {
  0%, 100% { opacity: .4; }
  50%       { opacity: .85; }
}

/* Steps */
.promo__steps {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.promo__steps-line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(245,192,0,0) 0%,
    rgba(245,192,0,.5) 20%,
    rgba(245,192,0,.5) 80%,
    rgba(245,192,0,0) 100%);
  display: none;
}
@media (min-width: 640px) { .promo__steps-line { display: block; } }

.step-card {
  width: 50%;
  padding: 0 1rem 2.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 640px) { .step-card { width: 25%; padding-bottom: 0; } }

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #FFB800 100%);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(245,192,0,.5), 0 0 0 4px rgba(245,192,0,.12);
}
.step-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  max-width: 140px;
  margin: 0 auto;
}

/* Promo CTA */
.btn--promo-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1.2rem 3.2rem;
  background: linear-gradient(135deg, #FFD740 0%, var(--yellow-primary) 50%, #FFB800 100%);
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 36px rgba(245,192,0,.5), 0 0 70px rgba(245,192,0,.18);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn--promo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 55%);
  border-radius: 999px;
  pointer-events: none;
}
.btn--promo-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,.3);
  transform: skewX(-20deg);
  animation: shimmer 3.5s 1s infinite;
}
.btn--promo-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 50px rgba(245,192,0,.6), 0 0 90px rgba(245,192,0,.25);
}
.btn--promo-cta:active { transform: translateY(-1px) scale(1.01); }

/* ============================================================
   REGISTER
   ============================================================ */
.register {
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--white) 100%);
  position: relative;
}
.register::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--yellow-primary), var(--blue-primary));
}

.register__form-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.register__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { position: relative; }
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-main);
  background: var(--white);
  border: 2px solid rgba(43,45,158,.15);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
  letter-spacing: .05em;
}
.form-input:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 4px rgba(43,45,158,.1); }
.form-input.error { border-color: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,.1); }
.form-error {
  font-size: .8rem;
  color: #EF4444;
  padding: .25rem .5rem;
  opacity: 0;
  transition: var(--transition);
}
.form-error.show { opacity: 1; }

.register__form .btn { width: 100%; }
.register__note { font-size: .8rem; color: var(--text-muted); text-align: center; line-height: 1.5; margin-top: .5rem; }

/* ============================================================
   GALLERY / SLIDER
   ============================================================ */
.gallery { background: var(--dark); overflow: hidden; }
.gallery .section-tag { background: rgba(255,255,255,.1); color: var(--yellow-primary); }
.gallery .section-title { color: var(--white); }

.slider-wrap { position: relative; margin-top: 1rem; }
.slider {
  display: flex;
  gap: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  min-width: 80vw;
  padding: 0 .5rem;
}
@media (min-width: 640px)  { .slide { min-width: 45vw; } }
@media (min-width: 1024px) { .slide { min-width: 30vw; } }

.slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--yellow-primary); color: var(--dark); }
.slider-prev { left: .5rem; }
.slider-next { right: .5rem; }
@media (min-width: 768px) {
  .slider-prev { left: 1rem; }
  .slider-next { right: 1rem; }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem 0;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--yellow-primary); transform: scale(1.5); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { background: var(--white); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .insta-grid { gap: 1rem; } }

.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: .5rem;
  transition: var(--transition);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131,58,180,.7), rgba(253,29,29,.7), rgba(252,176,69,.7));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.insta-overlay span { font-size: 2rem; color: var(--white); }
.insta-item:hover .insta-overlay { opacity: 1; }

.insta-cta { text-align: center; }

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts { background: var(--gray-light); }

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .contacts__grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.contacts__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-value { font-size: .95rem; color: var(--text-main); font-weight: 500; line-height: 1.5; }
.contact-link { color: var(--blue-primary); }
.contact-link:hover { text-decoration: underline; }

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}

.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contacts__map iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
}

.footer__brand { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
@media (min-width: 768px) { .footer__brand { align-items: flex-start; } }
.footer__logo { height: 56px; width: auto; }
.footer__slogan { font-size: .9rem; color: var(--yellow-primary); font-weight: 600; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
}
@media (min-width: 768px) { .footer__nav { justify-content: center; } }
.footer__link {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer__link:hover { color: var(--yellow-primary); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: .75rem;
}
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.footer__social-link:hover { background: var(--yellow-primary); color: var(--dark); transform: translateY(-2px); }

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,16,53,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(.9) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.show .modal { transform: none; }

.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal__close:hover { background: var(--blue-primary); color: var(--white); }

.modal__emoji { font-size: 4rem; margin-bottom: 1rem; animation: bounceIn .6s ease; }
@keyframes bounceIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.modal__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: .5rem;
}
.modal__subtitle { color: var(--text-muted); margin-bottom: 1.5rem; }
.modal__prize-wrap {
  background: linear-gradient(135deg, var(--blue-bg), #E8EAFF);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.modal__prize-label { font-size: .85rem; color: var(--text-muted); margin-bottom: .25rem; }
.modal__prize-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-primary);
  animation: countUp .5s ease;
}
@keyframes countUp {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal .btn { width: 100%; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: calc(100% - 2rem);
  z-index: 3000;
  border-left: 4px solid var(--blue-primary);
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
  opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.toast__icon { font-size: 1.5rem; flex-shrink: 0; }
.toast__content { flex: 1; }
.toast__title { font-size: .95rem; font-weight: 700; color: var(--text-main); margin-bottom: .2rem; }
.toast__msg { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
.toast__close {
  color: var(--text-light);
  font-size: 1rem;
  flex-shrink: 0;
  padding: .1rem;
  transition: var(--transition);
}
.toast__close:hover { color: var(--text-main); }

/* ============================================================
   CONFETTI CANVAS
   ============================================================ */
#confettiCanvas {
  position: fixed;
  inset: 0;
  z-index: 1999;
  pointer-events: none;
  display: none;
}

/* ============================================================
   ANIMATIONS (misc)
   ============================================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-primary); }

/* ============================================================
   FOCUS VISIBLE (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--yellow-primary);
  outline-offset: 2px;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  touch-action: pan-y;
}
.gallery-carousel .gallery-track {
  display: flex;
  align-items: center;
  transition: transform .6s cubic-bezier(.22,.9,.35,1);
  will-change: transform;
}
.gallery-carousel .gallery-slide {
  flex: 0 0 auto;
  width: 200px; /* will be recalculated in JS */
  margin: 0 .5rem;
  border-radius: var(--radius);
  overflow: hidden;
  transform-origin: center center;
  transition: transform .45s ease, opacity .45s ease;
  opacity: .85;
}
.gallery-carousel .gallery-slide img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.gallery-carousel .gallery-slide.active {
  transform: scale(1.08);
  opacity: 1;
}
.gallery-carousel .gallery-slide:not(.active) {
  transform: scale(.92);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, opacity .2s;
}
.gallery-arrow:hover {
  background: rgba(0, 0, 0, .5);
}
.gallery-prev { left: 0.75rem; }
.gallery-next { right: 0.75rem; }
.gallery-dots { display:flex; gap:.5rem; justify-content:center; margin-top:1rem; }
.gallery-dot {
  width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.25);
  transition: background .2s;
}
.gallery-dot.active { background: var(--yellow-primary); }

@media (max-width: 768px) {
  .gallery-carousel {
    overflow: hidden;
  }

  .gallery-track {
    display: flex;
    transition: transform .45s ease;
  }

  .gallery-slide {
    flex: 0 0 100%;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .gallery-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .gallery-slide.active {
    transform: none !important;
  }

  .gallery-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    opacity: .9;
  }
}

.gallery-lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93);
}
.gallery-lightbox__img {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
}
.gallery-lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  z-index: 2; color: #fff;
  font-size: 2.5rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  opacity: .8; transition: opacity .2s;
}
.gallery-lightbox__close:hover { opacity: 1; }

.gallery-lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .9;
  transition: background .2s, opacity .2s;
}
.gallery-lightbox__nav:hover {
  background: rgba(255,255,255,.2);
  opacity: 1;
}
.gallery-lightbox__prev { left: 1rem; }
.gallery-lightbox__next { right: 1rem; }

/* ============================================================
   RECIPES (new)
*/
.recipes { background: var(--gray-light); }

.recipes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .recipes-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .recipes-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.recipe-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.recipe-card__img-wrap {
  overflow: hidden;
  width: 100%;
  height: 220px;
}
.recipe-image,
.recipe-card__img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.recipe-image { border-radius: 20px 20px 0 0; }
.recipe-card:hover .recipe-card__img-wrap img { transform: scale(1.05); }
.recipe-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.recipe-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}
.recipe-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.recipe-card__meta { display: flex; align-items: center; gap: .5rem; }
.recipe-time { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

/* Recipe Modal */
.recipe-modal {
  position: fixed; inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.recipe-modal.open { display: flex; }
.recipe-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
}
.recipe-modal__inner {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 860px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.recipe-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 2; font-size: 1.75rem; line-height: 1;
  color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.recipe-modal__close:hover { color: var(--text-main); }
.recipe-modal__layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .recipe-modal__layout { grid-template-columns: 280px 1fr; }
}
.recipe-modal__img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@media (min-width: 640px) {
  .recipe-modal__img {
    height: 100%; min-height: 320px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
}
.recipe-modal__body { padding: 2rem; }
.recipe-modal__title {
  font-size: 1.2rem; font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.recipe-modal__content h4 {
  font-size: .875rem; font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.25rem 0 .5rem;
}
.recipe-modal__content h4:first-child { margin-top: 0; }
.recipe-modal__content ul,
.recipe-modal__content ol {
  padding-left: 1.25rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.recipe-modal__content li {
  font-size: .9rem; color: var(--text-main); line-height: 1.6;
}

/* ============================================================
   INSTAGRAM EMBEDS (new)
   ============================================================ */
.insta-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .insta-embeds { grid-template-columns: repeat(2, minmax(0,540px)); } }
@media (min-width: 1100px) { .insta-embeds { grid-template-columns: repeat(3, minmax(0,360px)); } }

.instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: var(--radius) !important;
}

/* ============================================================
   PARTNERS (new)
   ============================================================ */
.partners { background: var(--white); }

/* === Partners uniform grid — all cards identical 4:3 === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

.partner-card {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive */
@media (min-width: 1200px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 479px) {
  .partners-grid { grid-template-columns: 1fr; }
}

.partners__cta {
  text-align: center;
}
