

/* Start:/uvelka-petfood/style.css?178290703034936*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600&family=Caveat:wght@400;600&display=swap');

:root {
  --uv-bg-morning: #FEFCFA;
  --uv-bg-cream: #FBF5EE;
  --uv-bg-rose: #FFF0EB;
  --uv-bg-paper: #FDF8F3;
  --uv-bg-nika-grey: #E6E6E6;
  
  --uv-brand-orange: #F76D31;
  --uv-brand-green: #234721;
  --uv-brand-red: #E30613;

  --uv-cta: var(--uv-brand-orange);
  --uv-cta-hover: #E55C20;
  --uv-rose: #D4A69A;
  --uv-line: #C48B7E;
  --uv-olive: #8B9E72;
  --uv-gold: #D4A843;
  --uv-text: #3D3632;
  --uv-text-light: #6B5E56;
  --uv-text-muted: #9A8D85;
  --uv-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --uv-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --uv-hand: 'Caveat', cursive;
  --uv-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --uv-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --uv-section-py: clamp(64px, 12vw, 120px);
  --uv-content-px: clamp(20px, 5vw, 40px);
  --uv-max-w: 1040px;
}

.donate-form {
  background: none !important;
  justify-content: center !important;
}

.donate-form-title, .header_w, .footer  {
  display: none !important;
}

.uv {
  font-family: var(--uv-sans);
  color: var(--uv-text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

.uv *,
.uv *::before,
.uv *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =====================================================
   HERO
   ===================================================== */

.uv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--uv-section-py) 0;
  padding-top: clamp(100px, 18vw, 140px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 240, 235, 0.5) 0%, transparent 70%),
    var(--uv-bg-morning);
  overflow: hidden;
  --px: 0;
  --py: 0;
}

.uv-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: var(--uv-max-w);
  margin: 0 auto;
  padding: 0 var(--uv-content-px);
  position: relative;
  z-index: 1;
}

.uv-hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 20px);
  margin-bottom: clamp(24px, 5vw, 36px);
  opacity: 0;
  animation: uv-fade-up 0.9s var(--uv-ease-out) 0.1s forwards;
}

.uv-hero__logo-nika {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(130px, 32vw, 200px);
  height: clamp(48px, 10vw, 68px);
}

.uv-hero__logo-nika svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.uv-hero__logos-sep {
  width: 1px;
  height: 28px;
  background: var(--uv-line);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ---------- Фото-зона (Cinematic Focus) ---------- */

.uv-hero__photos {
  position: relative;
  width: clamp(220px, 50vw, 340px);
  height: clamp(220px, 50vw, 340px);
  margin-bottom: clamp(28px, 6vw, 44px);
  opacity: 0;
  animation: uv-fade-scale 1.2s var(--uv-ease-out) 0.2s forwards;
}

.uv-hero__photo {
  position: absolute;
  object-fit: cover;
  /* multiply гасит белый фон фото на бежевом фоне секции */
  mix-blend-mode: multiply;
  transition: transform 0.6s var(--uv-ease-out);
}

.uv-hero__photo--1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(calc(var(--px) * 15px), calc(var(--py) * 15px), 0);
  animation: uv-photo-main 1s var(--uv-ease-out) 0.4s forwards;
}

@keyframes uv-photo-main {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes uv-fade-scale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes uv-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Декоративные лапки вокруг фото ---------- */

.uv-hero__photos::before,
.uv-hero__photos::after {
  content: '🐾';
  position: absolute;
  font-size: clamp(18px, 4vw, 26px);
  opacity: 0;
  animation: uv-paw-float 1s var(--uv-ease-out) 1.4s forwards;
  z-index: 3;
  pointer-events: none;
}

.uv-hero__photos::before {
  top: -6%;
  right: 4%;
  --r: -20deg;
}

.uv-hero__photos::after {
  bottom: -2%;
  left: 18%;
  --r: 15deg;
}

@keyframes uv-paw-float {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) rotate(var(--r, -20deg));
  }
  to {
    opacity: 0.45;
    transform: translate3d(calc(var(--px) * 20px), calc(var(--py) * 20px), 0) rotate(var(--r, -20deg));
  }
}

/* ---------- Бейдж периода (редакционный) ---------- */

.uv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 20px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: clamp(20px, 4vw, 28px);
  max-width: 100%;
  opacity: 0;
  animation: uv-fade-up 0.8s var(--uv-ease-out) 0.5s forwards;
}

.uv-hero__badge-line {
  flex-shrink: 0;
  width: clamp(28px, 6vw, 72px);
  height: 1px;
  background: var(--uv-line);
  opacity: 0.45;
}

.uv-hero__badge-text {
  font-family: var(--uv-serif);
  font-size: clamp(14px, 3vw, 17px);
  font-style: italic;
  font-weight: 400;
  color: var(--uv-text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ---------- Типографика Hero ---------- */

.uv-hero__title {
  font-family: var(--uv-serif);
  font-size: clamp(30px, 7.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--uv-text);
  margin-bottom: 16px;
  max-width: 560px;
  opacity: 0;
  animation: uv-fade-up 0.9s var(--uv-ease-out) 0.6s forwards;
}

.uv-hero__title em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}

.uv-hero__lead {
  font-size: clamp(15px, 3.4vw, 18px);
  line-height: 1.7;
  color: var(--uv-text-light);
  max-width: 460px;
  margin-bottom: 22px;
  opacity: 0;
  animation: uv-fade-up 0.9s var(--uv-ease-out) 0.75s forwards;
}

.uv-hero__accent {
  font-family: var(--uv-hand);
  font-size: clamp(20px, 4.5vw, 26px);
  color: var(--uv-cta);
  margin-bottom: clamp(24px, 5vw, 36px);
  line-height: 1.3;
  opacity: 0;
  animation: uv-fade-up 0.8s var(--uv-ease-out) 0.9s forwards;
}

/* ---------- CTA-кнопки ---------- */

.uv-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  opacity: 0;
  animation: uv-fade-up 0.8s var(--uv-ease-out) 1s forwards;
}

.uv-hero__actions .uv-btn--primary {
  min-width: 260px;
  padding: 18px 44px;
}

.uv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--uv-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--uv-ease-out);
  position: relative;
  overflow: hidden;
}

.uv-btn--primary {
  background: var(--uv-cta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(247, 109, 49, 0.25);
}

.uv-btn--primary,
.uv-btn--primary:hover,
.uv-btn--primary:focus,
.uv-btn--primary:active,
.uv-btn--primary:visited {
  color: #fff;
}

.uv-btn--primary:hover {
  background: var(--uv-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 109, 49, 0.35);
}

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

.uv-btn--secondary {
  background: transparent;
  color: var(--uv-cta);
  border: 1.5px solid var(--uv-rose);
}

.uv-btn--secondary:hover {
  background: var(--uv-bg-rose);
  border-color: var(--uv-cta);
  transform: translateY(-1px);
}

.uv-btn--nika {
  background: var(--uv-brand-green);
  color: #fff;
  box-shadow:
    0 2px 8px rgba(35, 71, 33, 0.25),
    0 0 0 0 rgba(35, 71, 33, 0.15);
}

.uv-btn--nika:hover {
  background: #1B3819; /* Slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(35, 71, 33, 0.35);
}

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

.uv-text-red {
  color: var(--uv-brand-red) !important;
  font-style: normal !important;
}

.uv-text-green {
  color: var(--uv-brand-green) !important;
}

/* ---------- SVG-линия (десктоп) ---------- */

.uv-hero__line {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.uv-hero__line path {
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  opacity: 0.18;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: uv-line-draw 3s var(--uv-ease-out) 0.4s forwards;
}

@keyframes uv-line-draw {
  to { stroke-dashoffset: 0; }
}

/* =====================================================
   WAVE DIVIDER (organic shape)
   ===================================================== */

.uv-wave {
  display: block;
  width: 100%;
  height: clamp(50px, 8vw, 80px);
  margin-top: -1px;
}

.uv-wave path {
  transition: fill 0.6s var(--uv-ease);
}

/* =====================================================
   SECTION: ABOUT (Мягкий нежный фокус)
   ===================================================== */

.uv-about {
  position: relative;
  background: var(--uv-bg-cream);
  padding: var(--uv-section-py) var(--uv-content-px);
}

.uv-about__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
}

.uv-about__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-about__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(20px, 4vw, 32px);
}

.uv-about__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}

/* Инлайн-логотип FELLINI вместо текстового слова в заголовках */
.uv-fellini-logo {
  display: inline-block;
  height: 1.35em;
  width: auto;
  vertical-align: -0.3em;
}

.uv-about__body {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text-light);
  line-height: 1.75;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.uv-about__subheading {
  font-family: var(--uv-serif);
  font-size: clamp(18px, 3.6vw, 22px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--uv-text);
  margin-bottom: clamp(16px, 3vw, 24px);
}

/* ---------- Журнальный список ---------- */

.uv-about__list {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(36px, 7vw, 52px);
}

.uv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(20px, 4vw, 32px) 0;
  border-top: 1px solid rgba(196, 139, 126, 0.15);
  transition: background-color 0.4s var(--uv-ease-out);
}

.uv-list-item__num {
  font-family: var(--uv-serif);
  font-size: clamp(26px, 5.5vw, 36px);
  font-weight: 600;
  font-style: italic;
  color: var(--uv-cta);
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.4s var(--uv-ease-out), transform 0.4s var(--uv-ease-out);
}

.uv-list-item__text {
  flex: 1;
  transition: transform 0.4s var(--uv-ease-out);
}

.uv-list-item:hover .uv-list-item__num,
.uv-list-item:hover .uv-list-item__text {
  transform: translateX(12px);
}

.uv-list-item:hover .uv-list-item__num {
  opacity: 1;
}

.uv-list-item__title {
  font-family: var(--uv-sans);
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 600;
  color: var(--uv-text);
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.4s var(--uv-ease-out);
}

.uv-list-item:hover .uv-list-item__title {
  color: var(--uv-cta);
}

.uv-list-item__desc {
  font-size: clamp(14px, 3vw, 15px);
  color: var(--uv-text-muted);
  line-height: 1.6;
}

/* ---------- Фото стационара (статичная арка + stat) ---------- */

.uv-about__gallery {
  display: none; /* Скрыто на мобильных */
  position: relative;
}

.uv-about__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(61, 54, 50, 0.12);
}

.uv-about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uv-about__stat {
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 22px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 16px 36px rgba(61, 54, 50, 0.16),
    0 0 0 4px #fff;
  transform: rotate(2deg);
}

.uv-about__stat-num {
  font-family: var(--uv-serif);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--uv-brand-green);
}

.uv-about__stat-label {
  font-family: var(--uv-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-text-light);
}

/* =====================================================
   SCROLL REVEAL (JS-driven)
   ===================================================== */

.uv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--uv-ease-out),
    transform 0.8s var(--uv-ease-out);
}

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

.uv-reveal--d1 { transition-delay: 0.1s; }
.uv-reveal--d2 { transition-delay: 0.2s; }
.uv-reveal--d3 { transition-delay: 0.3s; }
.uv-reveal--d4 { transition-delay: 0.4s; }
.uv-reveal--d5 { transition-delay: 0.5s; }
.uv-reveal--d6 { transition-delay: 0.6s; }

/* =====================================================
   STICKY MOBILE CTA
   ===================================================== */

.uv-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(254, 252, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 139, 126, 0.12);
  transform: translateY(100%);
  transition: transform 0.5s var(--uv-ease-out);
}

.uv-sticky-cta--visible {
  transform: translateY(0);
}

.uv-sticky-cta .uv-btn {
  width: 100%;
  box-sizing: border-box;
}

/* =====================================================
   SECTION: FUND (О фонде)
   ===================================================== */

.uv-fund {
  position: relative;
  background: var(--uv-bg-nika-grey);
  padding: var(--uv-section-py) var(--uv-content-px);
  overflow: hidden;
}

.uv-fund__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.uv-fund__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-fund__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.uv-fund__heading svg {
  height: clamp(60px, 9vw, 100px);
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.uv-fund__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}

.uv-fund__body {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.uv-fund__body + .uv-btn {
  margin-top: 16px;
}

.uv-fund__gallery {
  display: none;
}


/* =====================================================
   SECTION: DONATE (Помочь)
   ===================================================== */

.uv-donate {
  position: relative;
  background: var(--uv-bg-morning);
  padding: var(--uv-section-py) var(--uv-content-px);
}

.uv-donate__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
  text-align: center;
}

.uv-donate__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-donate__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: 32px;
}

.uv-donate__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}


/* =====================================================
   SECTION: OPEKA (Опека)
   ===================================================== */

.uv-opeka {
  position: relative;
  background: var(--uv-bg-paper);
  padding: var(--uv-section-py) 0;
}

.uv-opeka__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
  padding: 0 var(--uv-content-px);
}

.uv-opeka__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-opeka__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.uv-opeka__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: rotate(-2deg);
  margin-left: -4px;
  white-space: nowrap;
}

.uv-opeka__body {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text-light);
  line-height: 1.75;
  margin-bottom: clamp(20px, 4vw, 28px);
}

/* -- Бонусы опекуна -- */

.uv-opeka__perks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.uv-perk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--uv-sans);
  font-size: clamp(14px, 3vw, 15px);
  font-weight: 500;
  color: var(--uv-text);
}

.uv-perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--uv-cta);
  flex-shrink: 0;
}

.uv-perk__icon svg {
  width: 100%;
  height: 100%;
}

.uv-opeka__nav {
  display: none;
}

/* -- Карусель животных -- */

.uv-opeka__carousel {
  margin: 0 calc(-1 * var(--uv-content-px));
  margin-bottom: clamp(24px, 5vw, 36px);
  position: relative;
}

.uv-opeka__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px var(--uv-content-px) 32px var(--uv-content-px);
  cursor: grab;
}

.uv-opeka__track::-webkit-scrollbar {
  display: none;
}

.uv-opeka__track--grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
}

.uv-pet-card {
  flex-shrink: 0;
  width: clamp(220px, 60vw, 280px);
  text-decoration: none;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.4s var(--uv-ease-out);
}

.uv-pet-card:hover {
  transform: translateY(-8px);
}

.uv-pet-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8;
  border-radius: 120px 120px 24px 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(61, 54, 50, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  transition: box-shadow 0.4s var(--uv-ease-out), border-color 0.4s var(--uv-ease-out);
}

.uv-pet-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
  pointer-events: none;
}

.uv-pet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--uv-ease-out);
}

.uv-pet-card:hover .uv-pet-card__image {
  box-shadow: 0 16px 40px rgba(247, 109, 49, 0.15);
  border-color: #fff;
}

.uv-pet-card:hover img {
  transform: scale(1.05);
}

.uv-pet-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.uv-pet-card__name {
  font-family: var(--uv-hand);
  font-size: clamp(22px, 5vw, 26px);
  color: var(--uv-text);
  line-height: 1.2;
}

.uv-pet-card__meta {
  font-family: var(--uv-sans);
  font-size: 13px;
  color: var(--uv-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.uv-opeka__gift {
  font-size: clamp(14px, 3vw, 16px);
  color: var(--uv-text-light);
  line-height: 1.6;
  margin-bottom: clamp(20px, 4vw, 28px);
}

.uv-opeka .uv-btn {
  display: inline-flex;
}

/* =====================================================
   SECTION: RESULTS (Результаты)
   ===================================================== */

.uv-results {
  position: relative;
  background: var(--uv-bg-cream);
  padding: var(--uv-section-py) var(--uv-content-px);
  display: none;
}

.uv-results__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
}

.uv-results__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-results__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(32px, 6vw, 48px) !important;
}

.uv-results__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}

/* -- Хроника помощи (редакционный летопись) -- */

.uv-news-feed {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgba(196, 139, 126, 0.18);
}

.uv-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(18px, 3.5vw, 24px) 0;
  border-bottom: 1px solid rgba(196, 139, 126, 0.18);
}

.uv-news-item__date {
  font-family: var(--uv-hand);
  font-size: clamp(22px, 4.5vw, 28px);
  font-weight: 600;
  color: var(--uv-brand-green);
  line-height: 1;
}

.uv-news-item__text {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text);
  line-height: 1.55;
}

.uv-news-item__text strong {
  color: var(--uv-text);
  font-weight: 600;
}

/* =====================================================
   SECTION: MORE (Ещё помощь)
   ===================================================== */

.uv-more {
  position: relative;
  background: var(--uv-bg-morning);
  padding: var(--uv-section-py) var(--uv-content-px);
}

.uv-more__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
}

.uv-more__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-more__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(28px, 5vw, 40px) !important;
}

.uv-more__heading em {
  font-family: var(--uv-hand);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--uv-brand-green);
  font-style: normal;
  display: inline-block;
  transform: translateY(4px) rotate(-2deg);
  white-space: nowrap;
}

.uv-more__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.uv-more-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--uv-text);
  background: transparent;
  transition: transform 0.4s var(--uv-ease-out);
}

.uv-more-card:hover {
  transform: translateY(-8px);
}

.uv-more-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(61, 54, 50, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.4s var(--uv-ease-out), border-color 0.4s var(--uv-ease-out);
}

.uv-more-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
  pointer-events: none;
}

.uv-more-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--uv-ease-out);
}

.uv-more-card:hover .uv-more-card__image {
  box-shadow: 0 16px 40px rgba(247, 109, 49, 0.15);
  border-color: #fff;
}

.uv-more-card:hover img {
  transform: scale(1.05);
}

.uv-more-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-right: 40px;
}

.uv-more-card__title {
  font-family: var(--uv-serif);
  font-size: clamp(20px, 4.5vw, 24px);
  font-weight: 600;
  color: var(--uv-text);
  line-height: 1.2;
  transition: color 0.3s var(--uv-ease);
}

.uv-more-card:hover .uv-more-card__title {
  color: var(--uv-cta);
}

.uv-more-card__desc {
  font-size: clamp(14px, 3.2vw, 16px);
  color: var(--uv-text-light);
  line-height: 1.5;
}

.uv-more-card__arrow {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  color: var(--uv-rose);
  transition: transform 0.3s var(--uv-ease), color 0.3s var(--uv-ease);
}

.uv-more-card:hover .uv-more-card__arrow {
  transform: translateX(4px) translateY(-2px);
  color: var(--uv-cta);
}

/* =====================================================
   SECTION: BUY (Купить корм FELLINI)
   ===================================================== */

.uv-buy {
  position: relative;
  background: #fff;
  padding: var(--uv-section-py) var(--uv-content-px);
  overflow: hidden;
}

.uv-buy__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
}

.uv-buy__eyebrow {
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uv-cta);
  margin-bottom: 16px;
}

.uv-buy__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.uv-buy__body {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text-light);
  line-height: 1.75;
  margin-bottom: clamp(24px, 4vw, 32px);
}

.uv-buy .uv-btn {
  display: inline-flex;
}

/* ---------- Фото пачки (вырезана на белом — без рамки) ---------- */

.uv-buy__media {
  position: relative;
  width: min(300px, 72vw);
  margin: 0 auto clamp(28px, 6vw, 40px);
}

.uv-buy__photo {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================================================
   SECTION: FINAL
   ===================================================== */

.uv-final {
  position: relative;
  background: var(--uv-bg-rose);
  padding: var(--uv-section-py) var(--uv-content-px);
  text-align: center;
}

.uv-final__inner {
  max-width: var(--uv-max-w);
  margin: 0 auto;
}

.uv-final__handwritten {
  font-family: var(--uv-hand);
  font-size: clamp(22px, 5vw, 30px);
  color: var(--uv-cta);
  margin-bottom: clamp(16px, 3vw, 24px);
  line-height: 1.4;
}

.uv-final__heading {
  font-family: var(--uv-serif);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--uv-text);
  margin-bottom: clamp(16px, 3vw, 24px) !important;
}

.uv-final__dates {
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--uv-text-light);
  margin-bottom: clamp(28px, 5vw, 40px) !important;
}

.uv-final__inner > .uv-btn {
  display: inline-flex;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.uv-final__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
}

.uv-final__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 18vw, 110px);
  height: clamp(28px, 5.5vw, 38px);
}

.uv-final__logo--uvelka,
.uv-final__logo--fellini {
  object-fit: contain;
}

.uv-final__logo--nika svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.uv-final__logos-sep {
  width: 1px;
  height: 24px;
  background: var(--uv-line);
  opacity: 0.4;
  flex-shrink: 0;
}

.uv-final__credit {
  margin-top: clamp(24px, 5vw, 36px);
  font-family: var(--uv-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--uv-text-muted);
}

.uv-final__credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(154, 141, 133, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s var(--uv-ease), text-decoration-color 0.3s var(--uv-ease);
}

.uv-final__credit a:hover {
  color: var(--uv-text);
  text-decoration-color: var(--uv-text);
}

/* =====================================================
   DESKTOP OVERRIDES (>= 768px)
   ===================================================== */

@media (min-width: 768px) {
  .uv-donate__heading, .uv-donate__eyebrow, .uv-donate__ways,
  .uv-results__heading, .uv-results__eyebrow, .uv-news-feed,
  .uv-more__heading, .uv-more__eyebrow,
  .uv-final__heading, .uv-final__dates, .uv-final__handwritten {
    max-width: 640px;
    margin: 0 auto;
  }

  .uv-more__grid {
    flex-direction: row;
    max-width: 1040px;
    margin: 0 auto;
    gap: clamp(40px, 5vw, 60px);
  }

  .uv-more-card {
    flex: 1;
    min-width: 0;
  }

  .uv-opeka__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 60px);
    max-width: 1040px;
  }

  .uv-opeka__content {
    flex: 1;
    max-width: 440px;
    min-width: 380px;
  }

  .uv-opeka__gallery {
    flex: 1;
    min-width: 0;
    position: relative;
  }

  .uv-opeka__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: clamp(28px, 4vw, 40px);
  }

  .uv-opeka__nav {
    display: flex;
    gap: 12px;
  }

  .uv-opeka__nav-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(196, 139, 126, 0.2);
    box-shadow: 0 4px 16px rgba(61, 54, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uv-text);
    cursor: pointer;
    transition: all 0.3s var(--uv-ease);
  }

  .uv-opeka__nav-btn:hover {
    background: var(--uv-cta);
    color: #fff;
    border-color: var(--uv-cta);
    transform: scale(1.05);
  }

  .uv-opeka__carousel {
    margin: 0;
  }
  
  .uv-opeka__track {
    padding: 8px 0 32px 0;
  }
  
  .uv-opeka__gallery .uv-pet-card {
    width: 220px;
  }

  .uv-fund__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 80px);
  }

  .uv-fund__content {
    flex: 1;
    min-width: 440px;
    max-width: 500px;
  }

  .uv-fund__gallery {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: clamp(280px, 35vw, 420px);
    aspect-ratio: 0.85;
  }

  .uv-fund__gallery-img {
    position: absolute;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(35, 71, 33, 0.15);
    transition: transform 0.5s var(--uv-ease-out);
  }

  .uv-fund__gallery:hover .uv-fund__gallery-img {
    transform: scale(1.03);
  }

  .uv-fund__gallery-img--1 {
    width: 85%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 200px 200px 16px 16px;
  }

  .uv-fund__gallery-img--2 {
    width: 55%;
    height: auto;
    aspect-ratio: 1;
    bottom: 5%;
    right: -10%;
    z-index: 2;
    border-radius: 50%;
    border: 8px solid var(--uv-bg-nika-grey);
  }


  .uv-hero__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    max-width: 1040px;
    gap: clamp(32px, 4vw, 60px);
  }

  .uv-hero__content {
    flex: 1;
    max-width: 500px;
  }

  .uv-hero__logos {
    justify-content: flex-start;
  }

  .uv-hero__photos {
    flex-shrink: 0;
    width: clamp(280px, 30vw, 400px);
    height: clamp(280px, 30vw, 400px);
    margin-bottom: 0;
    order: 2;
  }

  .uv-hero__actions {
    flex-direction: row;
    max-width: none;
  }

  .uv-about__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1040px;
  }

  .uv-about__content {
    flex: 1;
    max-width: 480px;
  }

  .uv-about__gallery {
    display: block;
    flex-shrink: 0;
    width: clamp(300px, 36vw, 420px);
    align-self: flex-start;
    will-change: transform;
  }

  .uv-buy__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(48px, 7vw, 90px);
    max-width: 1040px;
  }

  .uv-buy__content {
    flex: 1;
    max-width: 480px;
  }

  .uv-buy__media {
    flex-shrink: 0;
    width: clamp(240px, 28vw, 320px);
    margin: 0;
  }


  .uv-donate__ways {
    flex-direction: row;
  }

  .uv-donate__way {
    flex: 1;
  }

  .uv-news-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: baseline;
    padding: 28px 0;
  }

  .uv-news-item__date {
    text-align: right;
  }

  .uv-sticky-cta {
    display: none;
  }
}

/* =====================================================
   MOBILE OVERRIDES (< 768px)
   ===================================================== */

@media (max-width: 767px) {
  .uv-hero__line {
    display: none;
  }

  .uv-hero__actions .uv-btn {
    width: 100%;
  }

  .uv-fund__photos {
    display: none;
  }

  .uv-final {
    padding-bottom: calc(var(--uv-section-py) + 96px + env(safe-area-inset-bottom));
  }
}

/* =====================================================
   TOUCH HOVER FIX
   ===================================================== */

@media (hover: none) {
  .uv-btn--primary:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(247, 109, 49, 0.25);
  }

  .uv-btn--nika:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(35, 71, 33, 0.25);
  }

  .uv-btn--secondary:hover {
    transform: none;
  }

  .uv-donate__way:hover {
    transform: none;
    box-shadow: none;
  }

  .uv-link-card:hover {
    transform: none;
    box-shadow: none;
  }

  .uv-pet-card:hover {
    transform: none;
  }
}

/* End */


/* Start:/local/components/bustlers/donate_form/templates/.default/style.css?178161995126536*/
.donate-form {
background: #D9D9D9 url('/img/donate-form_bg-2.jpg') top center no-repeat;
background-size: 100%;
border-radius: 1.875rem;
padding: 3.75rem 7.188rem;
margin-bottom: 2.5rem;
width: calc(100% - 14.376rem);
}

.donate-form_cust {
background: var(--green);
color: var(--white);
width: calc(66.18% - 14.376rem);
position: relative;
}

.donate-form_cust 

.donate-form_cust-icon {
position: absolute;
right: 3.5rem;
top:-1.25rem;
}

.donate-form__wrap {
max-width: 34.688rem;
}

.donate-form_cust .donate-form__wrap {
max-width: 100%;
}

.donate-form-text {
font-size: 1.125rem;
padding-top: 0.625rem;
padding-bottom: 2.25rem;
display: none !important; /* Убираем по просьбе арт-дира */
}

.donate-form_cust .donate-form-text, .donate-form_cust .donate-form-text span {
font-size: 1.5rem;
display: block !important;
}

.donate-form_cust .donate-form__checkboxes-group label, .donate-form_cust .donate-form__checkboxes-group label a {
color: var(--white);
}

.donate-form_cust .donate-form__checkboxes-group input:checked ~ .checkmark {
background: var(--orange);
}

.donate-form__body-cust {
padding-top: 0.875rem;
}

.donate-form-text span {
white-space: nowrap;
}

.donate-form__tabs {
display: flex;
flex-wrap: wrap;
background: var(--white);
border-radius: 1.875rem;
margin-bottom: 1.25rem;
}

.donate-form__tabs-item {
height: 2.938rem;
width: 25%;
display: flex;
align-items: center;
justify-content: center;
transition: 300ms;
border-radius: 1.875rem;
}

.donate-form__tabs_req .donate-form__tabs-item {
width: 50%;
}

.donate-form__tabs-item:hover {
background: var(--grey);
cursor: pointer;
}

.donate-form__tabs-item_a, .donate-form__tabs-item_a:hover {
background: var(--green);
color: var(--white);
cursor: default;
}

.donate-form__footer .donate-form__tabs-item_a, .donate-form__footer .donate-form__tabs-item_a:hover {
background: var(--black);
}

.donate-form__body {
display: none;
}

.donate-form__body-sum {
display: flex;
flex-wrap: wrap;
background: var(--white);
border-radius: 1.875rem;
justify-content: space-between;
}

.donate-form__submit:hover {
background: var(--black);
}

.donate-form__footer {
margin-top: 2rem;
}

.donate-form__footer-title {
margin-bottom: 1rem;
}

.form-type-radio__item {
height: 2.938rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
width: calc(25% - 2.5rem);
border-radius: 1.875rem;
}

.form-type-radio__item:hover {
background: var(--grey);
cursor: pointer;
}

.form-type-radio__item_a {
background: var(--green);
color: var(--white);
}

.form-type-radio__item_a, .form-type-radio__item_a:hover {
background: var(--green);
color: var(--white);
cursor: default;
}

.form-type-radio__item_custom {
width: 10rem;
}

.form-type-custom__input {
height: 2.938rem;
font-size: 1.25rem;
padding: 0 0.75rem;
}

.donate-form__body-sum-tooltip {
    font-size: 13px !important;
    color: #555 !important;
    text-align: left !important;
    padding: 6px 0 4px 10px !important;
    line-height: 1.35 !important;
    width: 100%;
    border-left: 3px solid var(--green) !important;
    margin-top: 6px !important;
    box-sizing: border-box;
}

.donate-form__inputs {
display: flex;
flex-direction: column;
background: #f2f2f7 !important;
border-radius: 16px !important;
margin-bottom: 0 !important;
overflow: hidden;
border: none !important;
}

.donate-form__input {
width: 100% !important;
margin: 0 !important;
}

.donate-form__input .input {
width: 100%;
height: 48px !important;
line-height: 48px !important;
border: none !important;
border-bottom: 1px solid rgba(60,60,67,0.15) !important;
background: transparent !important;
padding: 0 16px !important;
margin: 0 !important;
border-radius: 0 !important;
box-sizing: border-box !important;
font-size: 16px !important;
box-shadow: none !important;
}

.donate-form__input:last-child .input {
border-bottom: none !important;
}

.donate-form__input_phone {
margin-top: 0 !important;
}

.donate-form__textarea {
width: 100%;
}

.donate-form__textarea .input {
min-height: 6rem;
padding-top: 1rem;
}

.donate-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
}

.donate-form__checkboxes-group {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    min-height: 20px;
    user-select: none;
}

.donate-form__checkboxes-group label {
    cursor: pointer;
    font-size: 13px !important;
    line-height: 1.3;
    color: #666;
    display: inline-block;
}

.donate-form__checkboxes-group label a {
    font-size: 13px;
    color: #282828;
}

.donate-form__checkboxes-group input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.donate-form__checkboxes-group .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1.5px solid #c7c7cc;
    border-radius: 5px;
    transition: background-color .15s ease, border-color .15s ease;
}

.donate-form__checkboxes-group:hover .checkmark {
    border-color: #9aa0a6;
}

.donate-form__checkboxes-group input:checked ~ .checkmark {
    background-color: var(--green);
    border-color: var(--green);
}

.donate-form__checkboxes-group .checkmark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .15s ease;
}

.donate-form__checkboxes-group input:checked ~ .checkmark:after {
    opacity: 1;
}

.donate-form__sms {
display: none;
}

.donate-form__req, .donate-form__qr, .donate-form__crypto {
display: none;
}

.donate-form__qr-pic {
max-width: 300px;
}

.donate-form__sms h4, .donate-form__req h4, .donate-form__qr h4, .donate-form__crypto h4 {
font-weight: 500;
padding-bottom: 1.25rem;
font-size: 1.5rem;
}

.donate-form__sms p, .donate-form__req p, .donate-form__crypto p {
padding-bottom: 0.5rem;
}

.donate-form__sms strong, .donate-form__req strong {
font-weight: 500;
}

.donate-form__sms strong {
color: var(--orange);
}

.donate-form-item_a {
display: block;
}

/* NEW PREMIUM DONATE FORM STYLES — все размеры в px, чтобы не зависеть от --font-size сайта */
/* Override old layout properties */
.donate-form {
    padding: 48px 80px !important;
    width: 100% !important; 
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
}
.donate-form__wrap {
    max-width: 480px !important;
    width: 100% !important;
}

.donate-form-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 36px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); 
    box-sizing: border-box;
    width: 100%;
}
/* Режим опекунства: карточка прозрачная, текст белый на зелёном фоне */
.donate-form_cust .donate-form-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.donate-form_cust .donate-form-card .donate-form-title {
    color: var(--white);
}
.donate-form_cust .donate-form-card .donate-form-text {
    color: var(--white);
    font-size: 18px !important;
}
.donate-form_cust .donate-form-card .donate-form-text span {
    color: var(--white);
    font-size: 18px !important;
}
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input {
    background: rgba(255,255,255,0.15) !important;
    color: var(--white);
    border-color: rgba(255,255,255,0.3) !important;
}
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input::placeholder {
    color: rgba(255,255,255,0.6);
}
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input:focus {
    background: rgba(255,255,255,0.25) !important;
    border-color: var(--white) !important;
}
.donate-form_cust .donate-form__textarea .input {
    background: rgba(255,255,255,0.15) !important;
    color: var(--white);
    border-color: rgba(255,255,255,0.3) !important;
}
.donate-form_cust .donate-form__textarea .input::placeholder {
    color: rgba(255,255,255,0.6);
}
.donate-form_cust .donate-form__submit {
    background: var(--orange) !important;
    color: var(--white) !important;
}
.donate-form_cust .donate-form__cust-amount {
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.75rem;
}
/* Фикс отступов текста для экономии высоты */
.donate-form-card .donate-form-title {
    font-size: 28px !important;
    margin-bottom: 16px !important;
}
.donate-form-card .donate-form-text {
    padding-top: 4px !important;
    padding-bottom: 16px !important;
    font-size: 15px !important; 
    line-height: 1.4 !important;
}

/* Bento Grid -> Native Chips list */
.bento-grid-sum {
    display: flex !important;
    gap: 6px !important;
    background: transparent !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important;
}

.bento-grid-sum .form-type-radio__item {
    flex: 1 1 calc(25% - 6px) !important;
    min-width: 65px !important;
    height: 44px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px !important;
    border-radius: 12px !important;
    background: #f2f2f7 !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap !important;
}

.bento-grid-sum .form-type-radio__item:hover {
    background: #e5e5ea !important;
}

.bento-grid-sum .form-type-radio__item_a,
.bento-grid-sum .form-type-radio__item_a:hover {
    background: var(--green) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(40,100,60,0.3) !important;
}

.bento-grid-sum .radio-card-sum {
    font-size: 16px !important;
    font-weight: 600;
    margin: 0 !important;
    color: inherit; /* inherit from parent */
    white-space: nowrap !important;
}

.bento-grid-sum .form-type-radio__item_a .radio-card-sum {
    color: #ffffff;
}

.bento-grid-sum .radio-card-desc {
    display: none !important;
}

.bento-grid-sum .form-type-radio__item_custom {
    grid-column: span 1 !important;
    width: 100% !important;
    box-sizing: border-box;
    margin-top: 2px;
}
.bento-grid-sum .form-type-radio__item_custom .form-type-custom__input {
    width: 100% !important;
    height: 48px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    background: #f2f2f7 !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 0 16px !important;
}
.bento-grid-sum .form-type-radio__item_custom .form-type-custom__input:focus {
    background: #fff !important;
    outline: none !important;
    border: 2px solid var(--green) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* Edit donate tabs for segmented control */
.donate-form__tabs_segmented {
    background: #f2f2f7 !important;
    border-radius: 16px !important;
    padding: 4px !important;
    display: flex;
    box-sizing: border-box;
    width: 100% !important;
    margin-bottom: 12px !important;
}
.donate-form__tabs_segmented .donate-form__tabs-item {
    border-radius: 12px !important;
    width: 50% !important;
    height: 40px !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #8e8e93;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* For absolute badge */
    white-space: nowrap;
}
.donate-form__tabs_segmented .donate-form__tabs-item:hover {
    background: #e5e5ea !important;
}
.donate-form__tabs_segmented .donate-form__tabs-item_a {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 3px 1px rgba(0,0,0,0.04);
}

/* Re-style fields */
.donate-form-details-wrapper {
    margin-top: 10px;
}
/* Инпуты внутри details-wrapper наследуют iOS-стиль из основных правил выше */
.donate-form-details-wrapper .donate-form__input_phone {
    width: 100% !important;
}
.donate-form__submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15 !important;
    text-transform: none !important;
    border-radius: 18px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 12px 0 !important;
    height: auto !important;
    min-height: 60px !important;
    width: 100% !important;
    margin-top: 16px;
    background-color: var(--green) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
}

.donate-form-details-wrapper .donate-form__checkboxes-group {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.donate-form-details-wrapper .donate-form__checkboxes-group label,
.donate-form-details-wrapper .donate-form__checkboxes-group label a {
    font-size: 13px !important;
}

/* Other methods toggle */
.donate-form-other-methods {
    margin-top: 28px;
    margin-bottom: 12px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.donate-form-other-methods__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    padding: 8px 0;
}

.donate-form-other-methods__toggle .donate-form__footer-title {
    margin: 0;
    font-size: 18px !important;
    color: var(--black);
    font-weight: 600;
}

.donate-form-other-methods__toggle .toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--green);
}

.donate-form-other-methods__toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile responsive styles for Premium Donate Form */
@media (max-width: 991px) {
    .donate-form {
        padding: 20px 16px !important;
        justify-content: center !important; 
        width: 100% !important; 
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    .donate-form__wrap {
        max-width: 100% !important;
        width: 100% !important;
    }
    .donate-form-card {
        padding: 24px 20px !important;
        border-radius: 24px !important;
        width: 100% !important;
    }
    .donate-form-card .donate-form-title {
        font-size: 24px !important;
    }
    .donate-form-card .donate-form-text {
        font-size: 14px !important;
    }
    .bento-grid-sum {
        gap: 6px !important;
    }
    .bento-grid-sum .form-type-radio__item {
        padding: 0 6px !important;
    }
    .bento-grid-sum .radio-card-sum {
        font-size: 15px !important;
    }
    .bento-grid-sum .radio-card-desc {
        display: none !important;
    }
    .bento-grid-sum .form-type-radio__item_custom .form-type-custom__input {
        font-size: 15px !important;
    }
    .donate-form-details-wrapper .donate-form__input {
        width: 100% !important;
    }
}

/* iPhone SE и подобные (≤390px) — суммы в 2×2 сетку */
@media (max-width: 390px) {
    .bento-grid-sum {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }
    .bento-grid-sum .form-type-radio__item {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
    }
    .bento-grid-sum .form-type-radio__item_custom {
        grid-column: span 2 !important;
    }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.bento-grid-sum .form-type-radio__item,
.donate-form__tabs_segmented .donate-form__tabs-item,
.donate-form__submit {
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}

.bento-grid-sum .form-type-radio__item:active,
.donate-form__tabs_segmented .donate-form__tabs-item:active:not(.donate-form__tabs-item_a),
.donate-form__submit:active {
    transform: scale(0.96) !important;
}

/* FLOATING LABELS MAGIC */
.floating-label-group {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.floating-label-group .floating-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e93;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
    z-index: 2;
    margin: 0;
    line-height: 1;
}

/* Textarea shouldn't use 50% translation */
.floating-label-group textarea.floating-input ~ .floating-label {
    top: 16px;
    transform: none;
}

/* Active State: Move label up */
.floating-label-group .floating-input:focus ~ .floating-label,
.floating-label-group .floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-label-group .floating-input:-webkit-autofill ~ .floating-label {
    top: 14px;
    transform: translateY(-50%) scale(0.75);
    color: #8e8e93;
}

/* Active State for textarea */
.floating-label-group textarea.floating-input:focus ~ .floating-label,
.floating-label-group textarea.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 12px;
    transform: scale(0.75);
}

/* Push text down inside the input to make space for the label */
.donate-form__input .input.floating-input {
    padding-top: 16px !important;
    padding-bottom: 0 !important;
}

/* Autofill Hack styles to match the form */
.floating-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f2f2f7 inset !important;
    background-color: transparent !important;
}

.donate-form__textarea .input.floating-input {
    padding-top: 26px !important;
}

/* GAMIFICATION & GUEST MODE */
/* Effect x12 Badge */
.badge-x12 {
    display: inline-block;
    position: absolute;
    top: -8px;
    right: 2px;
    background: #e6f4ea;
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Added subtle shadow for 3D effect */
    z-index: 5;
}

.donate-form__tabs-item_a .badge-x12 {
    background: #d1efdb;
    color: #1b6329;
}

/* Tooltip upsell link */
.switch-to-monthly {
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    margin-left: 4px;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(45, 140, 60, 0.4);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.switch-to-monthly:hover {
    text-decoration: none !important;
    border-bottom-color: var(--green);
}
.switch-to-monthly span {
    display: inline-block;
    transition: transform 0.2s ease;
}
.switch-to-monthly:hover span {
    transform: translateX(4px);
}

.donate-form-card {
    transition: box-shadow 0.6s ease, border 0.6s ease !important;
}

/* Support span inside button to make value slightly lighter */
.donate-form__submit span.btn-sum {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
    display: block;
}

/* === Унифицированные ошибки формы === */
label.error {
    display: block;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--orange);
    margin: 0;
}

label.error::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    margin-right: 6px;
    vertical-align: 2px;
}

/* Ошибки под инпутами — компактно, не ломая фон серого блока */
.donate-form__input {
    position: relative;
}

.donate-form__input label.error {
    padding: 2px 16px 6px;
    background: rgba(238, 121, 79, 0.06);
}

.donate-form__input .input.error {
    border-bottom-color: var(--orange) !important;
}

/* Невалидный плавающий лейбл — оранжевый */
.donate-form__input .input.error ~ .floating-label {
    color: var(--orange);
}

/* Ошибки под чекбоксами */
.donate-form__checkboxes-group label.error {
    position: absolute;
    top: 100%;
    left: 30px;
    padding: 4px 0 0;
}

/* ============================================================
   Опека (CUST) — вариант B: белая карточка вместо прозрачной
   на зелёном. Перекрывает ранние _cust-правила (позиция в файле).
   ============================================================ */
.donate-form_cust {
    background: #eef4ee !important;
    color: #1c1c1e;
    display: flex;
    justify-content: center !important;
    padding: 28px !important;
    border-radius: 24px;
}
.donate-form_cust .donate-form__wrap {
    max-width: 960px !important;
    width: 100% !important;
}
/* Десктоп: текст слева, форма справа */
.donate-form_cust .donate-form-card {
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
    padding: 40px !important;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: start;
}
.donate-form__cust-aside {
    align-self: center;
}
.donate-form__cust-aside .donate-form__guard-meta {
    margin-bottom: 0;
}
.donate-form__cust-main .donate-form-details-wrapper {
    margin-top: 0;
}
@media (max-width: 991px) {
    .donate-form_cust {
        padding: 16px !important;
    }
    .donate-form_cust .donate-form-card {
        display: block !important;
        padding: 24px 20px !important;
    }
    .donate-form__cust-aside .donate-form__guard-meta {
        margin-bottom: 16px;
    }
}
.donate-form_cust .donate-form-card .donate-form-title {
    color: var(--green) !important;
}
.donate-form_cust .donate-form-card .donate-form-text,
.donate-form_cust .donate-form-card .donate-form-text span {
    color: #1c1c1e !important;
    font-size: 15px !important;
}
/* Декоративную иконку прячем — на белой карточке висела бы криво */
.donate-form_cust .donate-form_cust-icon {
    display: none;
}
/* Поля — штатный светло-серый iOS-стиль (откат translucent-на-зелёном) */
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input,
.donate-form_cust .donate-form__textarea .input {
    background: transparent !important;
    color: #1c1c1e !important;
    border-color: rgba(60, 60, 67, 0.15) !important;
}
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input::placeholder,
.donate-form_cust .donate-form__textarea .input::placeholder {
    color: #8e8e93 !important;
}
.donate-form_cust .donate-form-details-wrapper .donate-form__input .input:focus {
    background: #ffffff !important;
    border-color: var(--green) !important;
}
/* Подписи чекбоксов — тёмные на белом */
.donate-form_cust .donate-form__checkboxes-group label {
    color: #666 !important;
}
.donate-form_cust .donate-form__checkboxes-group label a {
    color: #282828 !important;
}
.donate-form_cust .donate-form__checkboxes-group input:checked ~ .checkmark {
    background: var(--green) !important;
    border-color: var(--green) !important;
}

/* Блок «точки-слоты + цена» над полями */
.donate-form__guard-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.donate-form__guard-slots {
    display: flex;
    gap: 5px;
}
.donate-form__guard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
}
.donate-form__guard-dot.is-on {
    background: var(--orange);
}
.donate-form__guard-price {
    font-weight: 700;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    background: #eef4ee;
    color: var(--green);
}

/* ── Опека: баланс двух колонок, крупная цена, аккуратная textarea ── */
/* Форма ровно под текстом: ширина и левый край = как у текста, без панели */
.donate-form_cust {
    width: 66.18% !important;
    max-width: 66.18% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    display: block;
}
.donate-form_cust .donate-form__wrap {
    max-width: 100% !important;
}
.donate-form_cust .donate-form-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    padding: 36px !important;
}
/* Левую колонку — по верху, не «плавающую» по центру */
.donate-form__cust-aside {
    align-self: start;
}
/* Слоты+цена — вертикально, цена крупнее (визуальный якорь колонки) */
.donate-form_cust .donate-form__guard-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 6px;
    margin-bottom: 0;
}
.donate-form_cust .donate-form__guard-price {
    font-size: 20px;
    padding: 8px 16px;
}
/* Textarea — заподлицо в сером блоке, без вложенной рамки/радиуса */
.donate-form__textarea .input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
@media (max-width: 991px) {
    .donate-form_cust {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .donate-form_cust .donate-form-card {
        display: block !important;
        padding: 22px 18px !important;
    }
    /* мобайл: вернуть отступ между ценой и полями */
    .donate-form_cust .donate-form__guard-meta {
        margin-bottom: 18px;
    }
}

/* ── Карточка формы в тёплой плашке опеки (как баннер), а не белая ── */
.donate-form_cust .donate-form-card {
    background: #fff4ec !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none !important;
}
/* Блок полей — белый, чтобы контрастировал на персиковом фоне */
.donate-form_cust .donate-form__inputs {
    background: #ffffff !important;
}
/* Плашка цены — оранжевая (дизайн-код опеки), белый текст */
.donate-form_cust .donate-form__guard-price {
    background: var(--orange);
    color: #ffffff;
}

/* End */
/* /uvelka-petfood/style.css?178290703034936 */
/* /local/components/bustlers/donate_form/templates/.default/style.css?178161995126536 */
