/* ═══════════════════════════════════════════════
   AMANTER — премиальные цветы и европейские сладости
   ═══════════════════════════════════════════════ */

:root {
  --bordeaux: #8B1A2F;
  --bordeaux-dark: #3D0A14;
  --pink: #F2C4CE;
  --pink-soft: #FADDE3;
  --cream: #F5E6C8;
  --green: #A8C5A0;
  --white: #FFFAF8;
  --gold: #C9A84C;
  --gold-light: #E3CE96;
  --text: #4A2530;
  --text-light: #8A6670;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* мягкая асимметричная форма «подушечки лапки» */
  --paw-radius: 42% 58% 55% 45% / 48% 45% 55% 52%;
  --card-radius: 2.2rem 2.2rem 2.8rem 2.8rem;

  --shadow-soft: 0 12px 40px rgba(139, 26, 47, .08);
  --shadow-hover: 0 24px 60px rgba(139, 26, 47, .18);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

/* ── Курсор-лапка ────────────────────────────── */

body {
  cursor: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 64 64'><g fill='%238B1A2F' stroke='%23FFFAF8' stroke-width='3'><ellipse cx='32' cy='43' rx='15' ry='12'/><ellipse cx='13' cy='27' rx='6.5' ry='9' transform='rotate(-18 13 27)'/><ellipse cx='25' cy='17' rx='6.5' ry='9' transform='rotate(-6 25 17)'/><ellipse cx='39' cy='17' rx='6.5' ry='9' transform='rotate(6 39 17)'/><ellipse cx='51' cy='27' rx='6.5' ry='9' transform='rotate(18 51 27)'/></g></svg>") 5 3, auto;
}

a, button, [role="button"], input[type="submit"], label, select, .insta__item {
  cursor: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 64 64'><g fill='%23C9A84C' stroke='%233D0A14' stroke-width='3'><ellipse cx='32' cy='43' rx='15' ry='12'/><ellipse cx='13' cy='27' rx='6.5' ry='9' transform='rotate(-18 13 27)'/><ellipse cx='25' cy='17' rx='6.5' ry='9' transform='rotate(-6 25 17)'/><ellipse cx='39' cy='17' rx='6.5' ry='9' transform='rotate(6 39 17)'/><ellipse cx='51' cy='27' rx='6.5' ry='9' transform='rotate(18 51 27)'/></g></svg>") 6 3, pointer;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background-color: var(--white);
  /* еле заметная текстура лепестков */
  background-image:
    radial-gradient(ellipse 90px 60px at 12% 22%, rgba(242, 196, 206, .10), transparent 70%),
    radial-gradient(ellipse 70px 90px at 85% 12%, rgba(245, 230, 200, .14), transparent 70%),
    radial-gradient(ellipse 100px 65px at 70% 65%, rgba(242, 196, 206, .07), transparent 70%),
    radial-gradient(ellipse 60px 80px at 25% 80%, rgba(201, 168, 76, .05), transparent 70%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

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

.section { padding: 110px 0; }

/* ── Типографика ─────────────────────────────── */

.section-eyebrow {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bordeaux);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-head { text-align: center; margin-bottom: 64px; }

/* ── Разделитель из лапок ────────────────────── */

.paw-divider {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.about__text .paw-divider { justify-content: flex-start; }

.paw-divider svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  opacity: .75;
}

.paw-divider svg:nth-child(2) { transform: rotate(14deg) translateY(-3px); }
.paw-divider svg:nth-child(3) { transform: rotate(-10deg); }

/* ── Кнопки в форме лапки ────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 17px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 30px 30px 38px 38px / 34px 34px 44px 44px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  position: relative;
}

.btn-paw-icon { width: 19px; height: 19px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--bordeaux), #A62841);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(139, 26, 47, .35);
}
.btn--primary .btn-paw-icon { fill: var(--pink); }

.btn--ghost {
  background: rgba(255, 250, 248, .82);
  color: var(--bordeaux);
  border: 1.5px solid var(--gold);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(61, 10, 20, .12);
}
.btn--ghost .btn-paw-icon { fill: var(--gold); }

.btn:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(139, 26, 47, .4); }
.btn--ghost:hover { box-shadow: 0 14px 30px rgba(61, 10, 20, .2); }

/* эффект «вдавливания лапки» */
.btn:active {
  transform: translateY(2px) scale(.94);
  box-shadow: 0 4px 10px rgba(139, 26, 47, .28), inset 0 3px 8px rgba(61, 10, 20, .25);
  transition-duration: .08s;
}

.btn--cart {
  background: var(--pink);
  color: var(--bordeaux);
  padding: 11px 22px;
  font-size: .82rem;
}
.btn--cart .btn-paw-icon { fill: var(--bordeaux); width: 16px; height: 16px; }
.btn--cart:hover { background: var(--bordeaux); color: var(--white); box-shadow: 0 12px 26px rgba(139, 26, 47, .35); }
.btn--cart:hover .btn-paw-icon { fill: var(--pink); }

.btn--small { padding: 12px 26px; font-size: .85rem; }

/* ═══════════ ИНТРО-ЗАГРУЗКА (видео сразу) ═══════════ */

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(ellipse at 50% 30%, #5A0F1F 0%, var(--bordeaux-dark) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* видео на весь экран, без чёрных полос */
.intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__sound {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--bordeaux-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(201, 168, 76, .45);
  animation: soundBlink 1.8s ease-in-out infinite;
}

@keyframes soundBlink {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

.intro__skip {
  position: absolute;
  right: 26px;
  bottom: 26px;
  background: rgba(61, 10, 20, .5);
  border: 1px solid rgba(201, 168, 76, .4);
  color: rgba(255, 250, 248, .85);
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .08em;
  padding: 12px 26px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  transition: background .25s ease, color .25s ease;
}
.intro__skip:hover { background: var(--gold); color: var(--bordeaux-dark); }

/* ═══════════ НАВИГАЦИЯ ═══════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 42px;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.nav.is-scrolled {
  background: rgba(255, 250, 248, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(61, 10, 20, .1);
  padding: 12px 42px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: .18em;
  color: var(--white);
  text-decoration: none;
  transition: color .4s ease;
}

.nav.is-scrolled .nav__logo { color: var(--bordeaux); }

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(61, 10, 20, .35);
  border: 1.5px solid rgba(201, 168, 76, .55);
}

.nav__links { display: flex; gap: 34px; }

.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: .88rem;
  letter-spacing: .07em;
  position: relative;
  transition: color .4s ease;
}

.nav.is-scrolled .nav__links a { color: var(--text); }

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav__links a:hover::after { width: 100%; }

.nav__cart {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .06em;
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 22px 22px 28px 28px / 24px 24px 32px 32px;
  transition: all .35s ease;
}

.nav__cart svg { width: 17px; height: 17px; fill: var(--gold); }

.nav.is-scrolled .nav__cart { color: var(--bordeaux); }
.nav__cart:hover { background: var(--gold); color: var(--bordeaux-dark) !important; }
.nav__cart:hover svg { fill: var(--bordeaux-dark); }

/* ── Бургер и боковое меню ───────────────────── */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(61, 10, 20, .35);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 10px;
  backdrop-filter: blur(6px);
  transition: background .3s ease;
}

.nav__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-light);
  transition: transform .3s ease;
}

.nav.is-scrolled .nav__burger { background: rgba(242, 196, 206, .4); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(61, 10, 20, .5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: min(84vw, 340px);
  background: linear-gradient(170deg, #FFF6F2, var(--pink-soft));
  box-shadow: -20px 0 60px rgba(61, 10, 20, .3);
  border-radius: 34px 0 0 34px;
  padding: 26px 28px 34px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.drawer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(61, 10, 20, .25);
  border: 1.5px solid rgba(201, 168, 76, .5);
}

.drawer__close {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--pink);
  background: var(--white);
  color: var(--bordeaux);
  font-size: 1rem;
  border-radius: 46% 54% 52% 48% / 50% 48% 52% 50%;
  transition: all .25s ease;
}

.drawer__close:hover { background: var(--bordeaux); color: var(--white); }

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: .04em;
  padding: 13px 14px;
  border-radius: 16px 16px 20px 20px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.drawer__links a svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

.drawer__links a:hover,
.drawer__links a:active {
  background: rgba(255, 250, 248, .9);
  color: var(--bordeaux);
  transform: translateX(4px);
}

.drawer__wa {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2EB086, #1F8A66);
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .05em;
  padding: 15px;
  border-radius: 22px 22px 28px 28px;
  box-shadow: 0 10px 26px rgba(31, 138, 102, .35);
  margin-top: 18px;
  transition: transform .25s ease;
}

.drawer__wa:active { transform: scale(.96); }

.drawer__phone {
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-serif);
  color: var(--bordeaux);
  font-size: 1.05rem;
  letter-spacing: .04em;
}

/* ═══════════ 1. HERO ═══════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero.png') center 65% / cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(61, 10, 20, .38) 0%, rgba(242, 196, 206, .28) 45%, rgba(61, 10, 20, .5) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 60px;
}


.hero__logo {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: .24em;
  color: var(--white);
  text-shadow: 0 6px 34px rgba(61, 10, 20, .55);
  line-height: 1.05;
}

.hero__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px auto 26px;
  max-width: 420px;
}

.hero__line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.hero__line span:last-child { background: linear-gradient(90deg, var(--gold-light), transparent); }

.hero__line-paw { width: 22px; height: 22px; fill: var(--gold-light); }

.hero__slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: var(--white);
  text-shadow: 0 3px 18px rgba(61, 10, 20, .6);
  margin-bottom: 46px;
}

.hero__buttons {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 50px;
  border: 1.5px solid rgba(255, 250, 248, .7);
  border-radius: 18px;
}

.hero__scroll span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  background: var(--gold-light);
  border-radius: 3px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* лепестки */
.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -6%;
  border-radius: 68% 32% 62% 38% / 55% 60% 40% 45%;
  opacity: 0;
  animation-name: petalFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

@keyframes petalFall {
  0%   { transform: translate3d(0, -6vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: var(--petal-opacity, .8); }
  88%  { opacity: var(--petal-opacity, .8); }
  100% { transform: translate3d(var(--petal-drift, 60px), 108vh, 0) rotate(var(--petal-spin, 320deg)); opacity: 0; }
}

/* ═══════════ 2. О НАС ═══════════ */

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.about__text {
  background: linear-gradient(150deg, #FFF6F2, var(--pink-soft));
  border-radius: var(--paw-radius);
  padding: 68px 62px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.about__text::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: inherit;
  pointer-events: none;
}

.about__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bordeaux);
  line-height: 1.6;
  margin: 26px 0 20px;
}

.about__body { color: var(--text-light); margin-bottom: 26px; }

.about__signature {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

.about__photo { position: relative; }

.about__photo-frame {
  border-radius: var(--paw-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--white);
  outline: 1px solid rgba(201, 168, 76, .4);
}

.about__photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .8s ease;
}

.about__photo:hover .about__photo-frame img { transform: scale(1.05); }

.about__photo-paw {
  position: absolute;
  bottom: -26px;
  left: -30px;
  width: 90px;
  height: 90px;
  fill: var(--pink);
  transform: rotate(-18deg);
  filter: drop-shadow(0 8px 20px rgba(139, 26, 47, .2));
}

/* ═══════════ 3–4. КАТАЛОГИ ═══════════ */

.catalog--sweets {
  background: linear-gradient(180deg, transparent, rgba(245, 230, 200, .35) 18%, rgba(245, 230, 200, .35) 82%, transparent);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 34px;
}

.card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .38s cubic-bezier(.34,1.4,.64,1), box-shadow .38s ease;
  display: flex;
  flex-direction: column;
}

/* лапка нажимает — карточка приподнимается */
.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.card--cream {
  background: linear-gradient(180deg, #FFFDF7, var(--cream));
  outline: 1px solid rgba(201, 168, 76, .3);
}

.card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 250, 248, .92);
  color: var(--bordeaux);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 16px 16px 20px 20px / 18px 18px 24px 24px;
  backdrop-filter: blur(6px);
}

.card__tag--gold {
  background: rgba(201, 168, 76, .92);
  color: var(--white);
}

.card__photo {
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.card:hover .card__photo img { transform: scale(1.07); }

.card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--bordeaux);
  margin-bottom: 7px;
}

.card__desc {
  font-size: .86rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--bordeaux);
  white-space: nowrap;
}

/* ═══════════ 5. СЛАЙДЕР НАБОРОВ ═══════════ */

.slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 4px 34px;
  scrollbar-width: none;
  flex: 1;
}

.slider__track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 min(88%, 780px);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  outline: 1px solid rgba(201, 168, 76, .25);
  transition: transform .35s ease, box-shadow .35s ease;
}

.slide:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.slide__photo { overflow: hidden; }

.slide__photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .7s ease;
}

.slide:hover .slide__photo img { transform: scale(1.06); }

.slide__body {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #FFFDF7, var(--pink-soft));
}

.slide__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--bordeaux);
  margin-bottom: 13px;
}

.slide__desc { color: var(--text-light); font-size: .92rem; margin-bottom: 28px; }

.slide__row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.slide__price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--gold);
}

.slider__arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--bordeaux);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 46% 54% 52% 48% / 50% 48% 52% 50%;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}

.slider__arrow:hover { background: var(--bordeaux); color: var(--white); border-color: var(--bordeaux); }
.slider__arrow:active { transform: scale(.9); }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border: none;
  cursor: pointer;
  background: var(--pink);
  border-radius: 45% 55% 52% 48% / 50% 46% 54% 50%;
  transition: all .3s ease;
  padding: 0;
}

.slider__dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ═══════════ 6. КАК МЫ РАБОТАЕМ ═══════════ */

.steps {
  background:
    radial-gradient(ellipse 600px 300px at 15% 20%, rgba(242, 196, 206, .25), transparent 65%),
    radial-gradient(ellipse 600px 300px at 85% 85%, rgba(168, 197, 160, .18), transparent 65%);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  text-align: center;
}

.step__paw {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 26px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

.step:hover .step__paw { transform: translateY(-8px) rotate(-6deg); }

.step__paw svg {
  width: 100%;
  height: 100%;
  fill: var(--pink);
  filter: drop-shadow(0 10px 24px rgba(139, 26, 47, .22));
}

.step:nth-child(2) .step__paw svg { fill: var(--gold-light); }
.step:nth-child(3) .step__paw svg { fill: var(--green); }

.step__num {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--bordeaux);
}

.step__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--bordeaux);
  margin-bottom: 12px;
}

.step__text {
  color: var(--text-light);
  font-size: .92rem;
  max-width: 300px;
  margin: 0 auto;
}

/* ═══════════ 7. ОТЗЫВЫ ═══════════ */

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 34px;
}

.review {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-soft);
  outline: 1px solid rgba(242, 196, 206, .6);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}

.review:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.review__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: .25em;
  margin-bottom: 18px;
}

.review__text {
  font-size: .93rem;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin-bottom: 26px;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__paw {
  width: 40px;
  height: 40px;
  fill: var(--pink);
  background: var(--pink-soft);
  border-radius: 46% 54% 50% 50% / 48% 50% 52% 50%;
  padding: 8px;
}

.review__name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--bordeaux);
  font-size: 1.02rem;
}

.review__date {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
}

/* ═══════════ 8. INSTAGRAM ═══════════ */

.insta {
  background: linear-gradient(180deg, transparent, rgba(242, 196, 206, .22) 20%, rgba(242, 196, 206, .22) 80%, transparent);
}

.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.insta__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 34% 66% 58% 42% / 46% 44% 56% 54%;
  box-shadow: var(--shadow-soft);
  transition: border-radius .5s ease, transform .4s ease, box-shadow .4s ease;
}

.insta__item:nth-child(2n) { border-radius: 58% 42% 40% 60% / 50% 56% 44% 50%; }
.insta__item:nth-child(3n) { border-radius: 44% 56% 62% 38% / 56% 44% 56% 44%; }

.insta__item:hover {
  border-radius: 30px;
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.insta__item:hover img { transform: scale(1.1); }

.insta__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  background: rgba(139, 26, 47, .45);
  opacity: 0;
  transition: opacity .35s ease;
}

.insta__item:hover .insta__hover { opacity: 1; }

.insta__cta { text-align: center; margin-top: 52px; }

.btn--darktext { color: var(--bordeaux); }

/* ═══════════ 8.5 MAP ═══════════ */

.map__wrap {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.map__frame {
  flex: 1 1 62%;
  min-height: 420px;
  border: 0;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.map__info {
  flex: 1 1 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 40px 36px;
  background: var(--white, #fff);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.map__address {
  font-size: 1.6rem;
  color: var(--bordeaux);
}

.map__city,
.map__hours {
  color: var(--text-light);
  line-height: 1.5;
}

.map__info .btn { margin-top: 10px; }

@media (max-width: 860px) {
  .map__wrap { flex-direction: column; }
  .map__frame { min-height: 320px; width: 100%; }
  .map__info { width: 100%; padding: 30px 24px; }
}

/* ═══════════ 9. FOOTER ═══════════ */

.footer {
  background: var(--bordeaux-dark);
  color: rgba(255, 250, 248, .8);
  padding-top: 26px;
}

.footer__paws {
  height: 34px;
  margin-bottom: 46px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="%23C9A84C" opacity=".55"><ellipse cx="32" cy="43" rx="15" ry="12"/><ellipse cx="13" cy="27" rx="6.5" ry="9" transform="rotate(-18 13 27)"/><ellipse cx="25" cy="17" rx="6.5" ry="9" transform="rotate(-6 25 17)"/><ellipse cx="39" cy="17" rx="6.5" ry="9" transform="rotate(6 39 17)"/><ellipse cx="51" cy="27" rx="6.5" ry="9" transform="rotate(18 51 27)"/></g></svg>');
  background-size: 26px 26px;
  background-repeat: repeat-x;
  background-position: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 60px;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
  border: 1.5px solid rgba(201, 168, 76, .5);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: .2em;
  color: var(--white);
}

.footer__slogan {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: .98rem;
}

.footer__col h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.footer__col a,
.footer__col p {
  display: block;
  color: rgba(255, 250, 248, .75);
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: 9px;
  transition: color .3s ease;
}

.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(201, 168, 76, .25);
  text-align: center;
  padding: 22px 24px;
  font-size: .8rem;
  color: rgba(255, 250, 248, .45);
}

.footer__admin {
  color: rgba(255, 250, 248, .3);
  text-decoration: none;
  margin-left: 14px;
  transition: color .3s ease;
}
.footer__admin:hover { color: var(--gold-light); }

/* ═══════════ SCROLL-REVEAL ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}

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

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  .petal { display: none; }
}

/* ═══════════ АДАПТИВ ═══════════ */

@media (max-width: 1020px) {
  .about__grid { grid-template-columns: 1fr; gap: 54px; }
  .about__photo { max-width: 560px; margin: 0 auto; }
  .steps__grid { gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
  .nav__cart { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 76px 0; }
  .about__text { padding: 48px 34px; }
  .slide { grid-template-columns: 1fr; }
  .slide__photo img { min-height: 240px; }
  .slider__arrow { display: none; }
  .steps__grid { grid-template-columns: 1fr; gap: 48px; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .catalog__grid { gap: 24px; }
}

@media (max-width: 520px) {
  .hero__content { padding: 100px 18px 70px; }
  .hero__buttons { flex-direction: column; align-items: center; gap: 14px; }
  .btn { width: min(100%, 300px); justify-content: center; }
  .btn--cart { width: auto; }
  .hero__slogan { margin-bottom: 34px; }
  .section-head { margin-bottom: 44px; }
  .about__photo-frame img { height: 380px; }
  .about__photo-paw { width: 64px; height: 64px; bottom: -18px; left: -14px; }
  .card__body { padding: 18px 18px 22px; }
  .slide__body { padding: 28px 22px; }
  .step__paw { width: 104px; height: 104px; }
  .review { padding: 28px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .intro__skip { right: 16px; bottom: 16px; }
  .intro__sound { left: 16px; bottom: 16px; width: 42px; height: 42px; }
}
