/* Современные стили для "Праздник сУтками" */

/* Fallback стили для иконок до загрузки Font Awesome */
.mobile-nav__link i:before {
  content: "•";
  font-style: normal;
  font-weight: bold;
}

/* Fallback стили для всех иконок Font Awesome */
.fas:before, .fab:before {
  content: "•";
  font-style: normal;
  font-weight: bold;
}

/* Специфичные fallback для часто используемых иконок */
.fa-home:before { content: "🏠"; }
.fa-user:before { content: "👤"; }
.fa-users:before { content: "👥"; }
.fa-star:before { content: "⭐"; }
.fa-phone:before { content: "📞"; }
.fa-calendar-plus:before { content: "📅"; }
.fa-list:before { content: "📋"; }
.fa-images:before { content: "🖼️"; }
.fa-user-friends:before { content: "👥"; }
.fa-times:before { content: "✕"; }
.fa-search-plus:before { content: "🔍"; }
.fa-magic:before { content: "✨"; }
.fa-map-marker-alt:before { content: "📍"; }
.fa-clock:before { content: "🕐"; }
.fa-heart:before { content: "❤️"; }
.fa-gift:before { content: "🎁"; }
.fa-eye:before { content: "👁️"; }
.fa-paper-plane:before { content: "✈️"; }
.fa-share-alt:before { content: "📤"; }

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 32px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.logo__svg {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo:hover .logo__svg {
  transform: scale(1.1);
}

.logo__brand-accent {
  color: #FF6B35;
}

.nav {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  flex-shrink: 1;
}

.nav__link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 1.1rem;
  padding: 8px 0;
}

.nav__link:hover,
.nav__link.active {
  color: #FF6B35;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header__phone--bright {
  min-width: 220px;
  max-width: 270px;
  font-size: 1.08rem;
  padding: 12px 18px;
  border-radius: 32px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.18);
}

.header__phone--bright:hover {
  transform: translateY(-2px);
  color: #FF6B35;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.10);
}

.social-link:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Анимация кнопки-гамбургера при открытии */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* --- МОБИЛЬНОЕ МЕНЮ: форсированное перекрытие всех стилей --- */
.mobile-menu {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: #fff !important;
  z-index: 2000 !important;
  padding: 40px 20px 40px 20px !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
  transform: translateX(-100%) !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  transition: transform 0.3s ease-in-out !important;
}

.mobile-menu.active {
  transform: translateX(0) !important;
}

/* Кнопка закрытия мобильного меню */
.mobile-menu__close {
  position: absolute !important;
  top: 35px !important;
  right: 25px !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 107, 53, 0.15) !important;
  border: 2px solid rgba(255, 107, 53, 0.3) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: #FF6B35 !important;
  z-index: 2001 !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2) !important;
}

.mobile-menu__close:hover,
.mobile-menu__close:active {
  background: rgba(255, 107, 53, 0.2) !important;
  border-color: rgba(255, 107, 53, 0.4) !important;
  transform: scale(1.1) !important;
}

.mobile-menu__close svg {
  width: 22px !important;
  height: 22px !important;
}

.mobile-menu:not(.active) { display: none !important; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-nav__link {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

/* --- МОБИЛЬНЫЙ ТЕЛЕФОН И СОЦСЕТИ: всегда видимы и крупнее --- */
.mobile-contacts {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border-radius: 18px;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 18px 0 10px 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-contacts .header__phone {
  font-size: 1.18rem;
  font-weight: 800;
  color: #FF6B35;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-contacts .phone-icon i {
  font-size: 1.4em;
  color: #FF6B35;
}
.mobile-contacts .phone-label {
  font-size: 0.95em;
  color: #888;
  font-weight: 500;
}
.mobile-contacts .phone-number {
  font-size: 1.15em;
  color: #FF6B35;
  font-weight: 900;
}
.mobile-social {
  display: flex !important;
  gap: 18px;
  justify-content: center;
  margin-top: 6px;
}
.mobile-social .social-link {
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

/* Main */
.main {
  min-height: 100vh;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO BUTTONS */
.hero__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn--primary {
  background: linear-gradient(90deg, #FF6B35 0%, #FFD93D 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.18rem;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.18);
  padding: 20px 44px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  transition: all 0.25s cubic-bezier(.4,1.3,.6,1);
}

.btn--primary:hover {
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B35 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.22);
}

.btn--outline {
  background: rgba(255,255,255,0.85);
  color: #FF6B35;
  border: 2.5px solid #FF6B35;
  font-weight: 900;
  font-size: 1.18rem;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.10);
  padding: 20px 44px;
  transition: all 0.25s cubic-bezier(.4,1.3,.6,1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn--outline i.fa-list {
  font-size: 1.1em;
}

.btn--outline:hover {
  background: linear-gradient(90deg, #FF6B35 0%, #FFD93D 100%);
  color: #fff;
  border-color: #FF6B35;
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-header__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: 80px 0;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.section__subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__actions {
  text-align: center;
  margin-top: 40px;
}

.reviews .section__actions {
  margin-top: 50px;
}

/* Grid */
.grid {
  display: grid;
  gap: 30px;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards */
.program-card,
.character-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.program-card:hover,
.character-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card__image,
.character-card__image {
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.program-card__image img,
.character-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Простая обработка изображений */
.program-card__image img,
.character-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

/* Стили для fallback изображений */
.image-fallback {
  opacity: 0.8;
  filter: grayscale(0.3);
}

.image-loaded {
  opacity: 1;
  filter: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.program-card:hover .program-card__image img,
.character-card:hover .character-card__image img {
  transform: scale(1.1);
}

.program-card__badge,
.character-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.program-card__price,
.character-card__price,
.program-card__image::after,
.character-card__image::after {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
}

.character-card__image::after {
  content: "от 3600 ₽";
}

.program-card__image::after {
  content: "от 4700 ₽";
}

.program-card__content,
.character-card__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.program-card__title,
.character-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.program-card__text,
.character-card__text {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-card__features,
.character-card__features {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-card__actions,
.character-card__actions {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.program-card__actions .btn--full,
.character-card__actions .btn--full {
  flex: 1;
  margin: 0;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.program-card__actions .btn--full i,
.character-card__actions .btn--full i {
  margin-right: 8px !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Advantage Cards */
.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.advantage-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.advantage-card__text {
  color: #666;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, #FF6B35 70%, #FF9F1C 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.25);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #FF6B35 90%, #FFD93D 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.30);
}

.btn--outline {
  background: #fff;
  color: #FF6B35;
  border: 2px solid #FF6B35;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.10);
  transition: all 0.3s cubic-bezier(.4,1.3,.6,1);
}

.btn--outline:hover {
  background: linear-gradient(135deg, #FF6B35 80%, #FFD93D 100%);
  color: #fff;
  border-color: #FF6B35;
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.btn--full {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.btn--full i {
  margin-right: 8px !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.btn--large {
  font-size: 1.18rem;
  padding: 18px 38px;
  border-radius: 32px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  text-align: center;
  margin-top: 60px;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.cta__text {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.cta__actions {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal__close:hover {
  background: #FF6B35;
  border-color: #FF6B35;
  color: white;
  transform: scale(1.1);
}

.modal__close:active {
  transform: scale(0.95);
}

.modal__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.modal__text {
  color: #666;
  margin-bottom: 30px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form__label {
  font-weight: 600;
  color: #333;
}

.form__input,
.form__textarea,
.form__select {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: #FF6B35;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD93D;
}

.footer__text {
  color: #ccc;
  line-height: 1.6;
}

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

.footer__link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #FFD93D;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  transform: scale(1.1);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #ccc;
}

/* Gallery */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #FF6B35;
  background: transparent;
  color: #FF6B35;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #FF6B35;
  color: white;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item__image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__zoom {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.gallery-item__zoom:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 4000;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox__caption {
  text-align: center;
  color: white;
  margin-top: 20px;
  font-size: 1.1rem;
}

/* Reviews */
.reviews .grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.review-card__rating {
  display: flex;
  gap: 2px;
  color: #FFD93D;
}

.review-card__text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-size: 0.9rem;
}

.review-card__program {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 600;
}

/* Contacts */
.contact-info__title,
.contact-form__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-info__text,
.contact-form__text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item__content {
  flex: 1;
}

.contact-item__title {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.contact-item__link {
  color: #FF6B35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item__text {
  color: #666;
  margin-top: 5px;
}

.contact-item__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
  background: #f8f9fa;
}

.map-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #666;
}

.map-placeholder i {
  font-size: 4rem;
  color: #FF6B35;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.city {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .header__inner { gap: 12px; }
  .nav { gap: 14px; font-size: 1rem; }
  .header__phone--bright { font-size: 0.95rem; min-width: 120px; max-width: 150px; padding: 8px 8px; }
  .social-link { width: 28px; height: 28px; font-size: 0.95rem; }
}

@media (max-width: 1024px) {
  .header__inner { gap: 6px; }
  .nav { gap: 8px; font-size: 0.95rem; flex-shrink: 1; }
  .header__phone--bright { font-size: 0.88rem; min-width: 60px; max-width: 90px; padding: 6px 4px; }
  .social-link { width: 22px; height: 22px; font-size: 0.85rem; }
}

@media (max-width: 900px) {
  .header__phone--bright {
    min-width: 36px;
    max-width: 36px;
    padding: 4px 2px;
    font-size: 0.01rem;
  }
  .header__phone--bright i { font-size: 1.1rem; }
  .header__phone--bright {
    justify-content: center;
  }
  .header__phone--bright {
    color: transparent;
  }
  .header__phone--bright i {
    color: #fff;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .header__inner { gap: 2px; }
  .nav { gap: 2px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .header__contacts {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .hero__text {
    font-size: 1rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .page-header__title {
    font-size: 2rem;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta {
    margin-top: 40px;
  }
  
  .modal__content {
    padding: 30px 20px;
  }
  
  .modal__close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .mobile-menu__close {
    top: 30px !important;
    right: 20px !important;
    width: 42px !important;
    height: 42px !important;
  }
  
  .gallery__filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .advantage-card {
    padding: 20px;
  }
  
  .advantage-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .header__phone--bright {
    font-size: 0.92rem;
    min-width: 120px;
    max-width: 150px;
    padding: 8px 6px;
  }
  .social-link { width: 30px; height: 30px; font-size: 1rem; }
  .btn--primary, .btn--outline { font-size: 1rem; padding: 14px 18px; border-radius: 28px; }
  
  .btn--full {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    font-size: 0.95rem !important;
  }
  
  .btn--full i {
    font-size: 0.95rem !important;
  }
  .hero__buttons { gap: 12px; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 70px 0 55px;
  }
  
  .hero__title {
    font-size: 2.2rem;
  }
  
  .page-header {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .program-card__content,
  .character-card__content {
    padding: 20px;
  }
  
  .reviews .grid--2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .btn--full {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    font-size: 0.9rem !important;
    padding: 0 16px !important;
  }
  
  .btn--full i {
    font-size: 0.9rem !important;
    margin-right: 6px !important;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .advantage-card {
    padding: 15px;
  }
  
  .modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .mobile-menu__close {
    top: 28px !important;
    right: 18px !important;
  }
  
  .cta {
    margin-top: 30px;
  }
}

/* --- COMPACT HEADER LOGO & GAPS --- */
.logo__svg {
  display: flex;
  align-items: center;
  width: 40px !important;
  height: 40px !important;
  margin-right: 8px !important;
}
.logo__svg svg {
  width: 40px !important;
  height: 40px !important;
}
.logo__text {
  font-size: 1.25rem !important;
  line-height: 1.1;
}
.header__inner {
  gap: 18px !important;
  padding: 10px 0 !important;
}
.nav {
  gap: 18px !important;
}

@media (max-width: 1200px) {
  .logo__svg, .logo__svg svg {
    width: 32px !important;
    height: 32px !important;
  }
  .logo__svg {
    margin-right: 6px !important;
  }
  .logo__text {
    font-size: 1.05rem !important;
  }
  .header__inner {
    gap: 8px !important;
    padding: 7px 0 !important;
  }
  .nav {
    gap: 10px !important;
  }
}
@media (max-width: 1024px) {
  .logo__svg, .logo__svg svg {
    width: 26px !important;
    height: 26px !important;
  }
  .logo__svg {
    margin-right: 4px !important;
  }
  .logo__text {
    font-size: 0.92rem !important;
  }
  .header__inner {
    gap: 4px !important;
    padding: 4px 0 !important;
  }
  .nav {
    gap: 4px !important;
  }
}
@media (max-width: 900px) {
  .logo__svg, .logo__svg svg {
    width: 22px !important;
    height: 22px !important;
  }
  .logo__svg {
    margin-right: 2px !important;
  }
  .logo__text {
    font-size: 0.82rem !important;
  }
}

/* --- ВЫРАВНИВАНИЕ КАРТОЧЕК ПЕРСОНАЖЕЙ --- */
.character-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.character-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.character-card__actions {
  margin-top: auto;
}

/* --- МОБИЛЬНОЕ МЕНЮ: пункты меню ближе к верху --- */
.mobile-menu {
  padding: 10px 10px 30px 10px !important;
}
.mobile-nav {
  margin-bottom: 20px;
  gap: 10px;
}
.mobile-nav__link {
  padding: 10px 0;
  font-size: 1.08rem;
}

/* --- УБРАТЬ ВЕРХНИЙ ПРОБЕЛ В МОБИЛЬНОМ МЕНЮ --- */
.mobile-menu {
  padding-top: 0 !important;
}
.mobile-nav {
  margin-top: 0 !important;
}
.mobile-contacts {
  margin-top: 0 !important;
}

/* --- Растянуть .mobile-contacts на всю ширину экрана --- */
.mobile-menu {
  display: flex !important;
  flex-direction: column !important;
}
.mobile-nav {
  flex-shrink: 0;
}
.mobile-contacts {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100vw !important;
  max-width: 100vw !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 18px 0 10px 0 !important;
  background: #fff !important;
}

/* --- Компактный телефон в мобильном меню --- */
.mobile-contacts .header__phone {
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0 !important;
  white-space: normal !important;
  text-align: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  line-height: 1.2 !important;
}

/* --- АДАПТИВНОЕ МОБИЛЬНОЕ МЕНЮ: всё помещается, нет пустоты --- */
.mobile-menu {
  display: block !important;
  overflow-y: auto !important;
}
.mobile-contacts {
  flex: unset !important;
  justify-content: center;
}

/* --- КНОПКИ-БЛОКИ ДЛЯ МОБИЛЬНОГО МЕНЮ --- */
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border: 2px solid #ffd93d;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.08);
  margin-bottom: 14px;
  padding: 16px 18px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #333;
  transition: background 0.18s, border 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  min-height: 48px;
}
.mobile-nav__link i {
  margin-right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  font-size: 1.4rem !important;
  color: #FF6B35;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.mobile-nav__link:active,
.mobile-nav__link:hover {
  background: linear-gradient(90deg, #ffd93d 0%, #ff6b35 100%);
  color: #fff;
  border-color: #ff6b35;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.18);
}
.mobile-nav__link:active i,
.mobile-nav__link:hover i {
  color: #fff;
  transform: scale(1.1);
}

/* --- ЕЩЁ БОЛЕЕ КОМПАКТНЫЕ КНОПКИ-БЛОКИ ДЛЯ МОБИЛЬНОГО МЕНЮ --- */
.mobile-nav__link {
  margin-bottom: 3px;
  padding: 8px 8px;
  font-size: 1rem;
  min-height: 32px;
  border-radius: 12px;
}
.mobile-nav__link i {
  margin-right: 7px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 1.1rem !important;
}

/* --- Калькулятор программ --- */
.calculator-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin: 48px 0 32px 0;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFD93D, #3B82F6);
}

#programCalculator {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Заголовок калькулятора */
.calc-header {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.calc-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calc-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
}

/* Основной контент калькулятора */
.calc-content {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-height: 500px;
}

/* Левая колонка - выбор типа */
.calc-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.calc-section:hover {
  border-color: #e2e8f0;
  transform: translateY(-2px);
}

.calc-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-section-title i {
  color: #FF6B35;
  font-size: 1.1rem;
}

/* Кнопки выбора типа */
.calc-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.calc-type-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.calc-type-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.calc-type-btn:hover::before {
  left: 100%;
}

.calc-type-btn:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.15);
}

.calc-type-btn.active {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  border-color: #FF6B35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.25);
}

.calc-type-btn i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.calc-type-btn .type-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.calc-type-btn .type-desc {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.3;
}

/* Правая колонка - программы и результат */
.calc-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Список программ */
.calc-programs {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}

.calc-program-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.calc-program-item:hover {
  border-color: #FF6B35;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.1);
}

.calc-program-item.selected {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  border-color: #FF6B35;
  color: white;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.2);
}

.calc-program-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-program-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.calc-program-info {
  flex: 1;
}

.calc-program-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.calc-program-desc {
  font-size: 0.85rem;
  opacity: 0.8;
}

.calc-program-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: #FF6B35;
}

.calc-program-item.selected .calc-program-price {
  color: white;
}

/* Дополнительные услуги */
.calc-extras {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
}

.calc-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.calc-extra-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-extra-item:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.calc-extra-item.selected {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  border-color: #FF6B35;
  color: white;
}

.calc-extra-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.calc-extra-item.selected .calc-extra-checkbox {
  background: white;
  border-color: white;
}

.calc-extra-checkbox::after {
  content: '✓';
  color: #FF6B35;
  font-weight: bold;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.calc-extra-item.selected .calc-extra-checkbox::after {
  opacity: 1;
}

.calc-extra-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
  font-size: 1rem;
  margin-right: 8px;
}

.calc-extra-item.selected .calc-extra-icon {
  color: white;
}

.calc-extra-info {
  flex: 1;
}

.calc-extra-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.calc-extra-desc {
  font-size: 0.75rem;
  opacity: 0.7;
}

.calc-extra-price {
  font-weight: 700;
  color: #FF6B35;
  font-size: 0.9rem;
}

.calc-extra-item.selected .calc-extra-price {
  color: white;
}

/* Количество аниматоров */
.calc-animators {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.calc-animators-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.calc-animator-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  background: white;
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-animator-btn:hover:not(:disabled) {
  border-color: #FF6B35;
  color: #FF6B35;
  transform: scale(1.1);
}

.calc-animator-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.calc-animator-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.calc-animator-count span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6B35;
}

.calc-animator-label {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
}

.calc-animator-price {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  min-height: 20px;
}

/* Итоговая сумма */
.calc-total-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.calc-total-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.calc-total-amount {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.calc-total-breakdown {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.4;
}

.calc-order-btn {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.calc-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

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

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .calc-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .calc-type-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .calc-extras-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .calculator-section {
    margin: 32px 0 24px 0;
    padding: 24px 0;
  }
  
  #programCalculator {
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .calc-header {
    padding: 24px 20px;
  }
  
  .calc-header h3 {
    font-size: 1.5rem;
  }
  
  .calc-header p {
    font-size: 1rem;
  }
  
  .calc-content {
    padding: 20px;
    gap: 16px;
  }
  
  .calc-section {
    padding: 20px;
  }
  
  .calc-type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .calc-type-btn {
    padding: 12px 8px;
  }
  
  .calc-type-btn i {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .calc-type-btn .type-name {
    font-size: 0.8rem;
  }
  
  .calc-type-btn .type-desc {
    font-size: 0.7rem;
  }
  
  .calc-program-item {
    padding: 16px;
  }
  
  .calc-extras-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .calc-extra-item {
    padding: 12px;
  }
  
  .calc-extra-icon {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    margin-right: 6px;
  }
  
  .calc-animators-control {
    gap: 12px;
  }
  
  .calc-animator-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .calc-animator-count span:first-child {
    font-size: 1.3rem;
  }
  
  .calc-total-amount {
    font-size: 2rem;
  }
  
  .calc-order-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .calc-type-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-type-btn {
    padding: 16px 12px;
  }
  
  .calc-type-btn i {
    font-size: 1.4rem;
  }
  
  .calc-type-btn .type-name {
    font-size: 0.9rem;
  }
  
  .calc-type-btn .type-desc {
    font-size: 0.75rem;
  }
  
  .calc-program-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .calc-program-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .calc-extra-icon {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
    margin-right: 4px;
  }
}