/* ========== Глобальные переменные ========== */
    :root {
      --text-light: #FAF4E5;
      --text-dark: #021131;
      --btn-bg: rgba(153, 151, 151, 0.66);
      --green: #757C5F;
      --green-bg: rgba(252, 252, 252, 0.64);
      --border-gray: #D7D7D7;
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      background-color: var(--text-light);
      font-family: 'Inter', sans-serif;
      /* scroll-behavior: smooth; — дублируется в JS для надёжности */
    }
    /* ========== Утилиты ========== */
    .section-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .section-title-left {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 64px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
      text-align: left;
      margin-bottom: 40px;
    }

    .section-title-right {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 64px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
      text-align: left;
      margin-bottom: 40px;
      margin-left: auto;
      width: 660px;
    }

    .btn-record {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 231px;
      height: 68px;
      padding: 20px 40px;
      gap: 10px;
      background: var(--btn-bg);
      border: 1px solid var(--text-light);
      backdrop-filter: blur(9.45px);
      -webkit-backdrop-filter: blur(9.45px);
      border-radius: 40px;
      font-family: 'Ysabeau', sans-serif;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-light);
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-record:hover {
      background: rgba(153, 151, 151, 0.85);
      color: white;
      transform: translateY(-2px);
    }

    a {
      transition: var(--transition);
    }

    a:hover {
      opacity: 0.85;
    }

    /* ========== Герой ========== */
    .hero {
      position: relative;
      width: 100vw;
      min-height: 900px;
      overflow: hidden;
	  background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .content-wrapper {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      min-height: 900px;
      padding: 0 60px;
    }

    /* ========== Хедер ========== */
    .header {
      position: absolute;
      top: 30px;
      left: 0;
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      height: 105px;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 10px 60px;
      gap: 93px;
      background: rgba(255, 255, 255, 0.13);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 25px;
      z-index: 10;
    }

    .frame-21184 {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 225px;
      width: 568px;
      height: 28px;
    }

    .frame-21180 {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 60px;
      width: 568px;
      height: 28px;
    }

    .menu-item {
      font-family: 'Ysabeau', sans-serif;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-light);
      text-decoration: none;
      white-space: nowrap;
      transition: var(--transition);
    }

    .menu-item:hover {
      color: rgba(250, 244, 229, 0.9);
    }

    /* ========== Блок текста ========== */
    .hero-content-block {
      position: absolute;
      top: 374px;
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      height: 385px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      z-index: 5;
    }

    .hero-text-and-button {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 60px;
      width: 436px;
      height: 385px;
    }

    .logo-hero {
      width: 222px;
      height: 106px;
      display: block;
    }

    .hero-slogan {
      width: 436px;
      height: 111px;
      margin: 0;
      font-family: 'Ysabeau', sans-serif;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-light);
    }

    .hero-studio-name {
      height: 28px;
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 24px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      text-transform: capitalize;
      color: var(--text-light);
      white-space: nowrap;
    }

    /* ========== Направления ========== */
    .directions-header-wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 60px 40px;
      display: flex;
      justify-content: space-between;
      gap: 670px;
    }

    .directions-header-content {
      width: 720px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .directions-intro-text,
    .directions-title {
      text-align: left;
      margin: 0;
    }

    .directions-intro-text {
      font-family: 'Ysabeau', sans-serif;
      font-size: 32px;
      font-weight: normal;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 30px;
    }

    .directions-title {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 64px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      text-transform: capitalize;
      color: var(--text-dark);
    }

    .directions-grid {
      max-width: 1440px;
      margin: 0 auto 40px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
    }

    .direction-card {
      height: 720px;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--bg-img);
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .direction-card-inner {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      padding: 60px;
      height: 100%;
      color: var(--text-light);
      box-sizing: border-box;
    }

    .direction-content {
      width: 100%;
    }

    .direction-title {
      font-family: 'Ysabeau', sans-serif;
      font-weight: 500;
      font-size: 42px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 0 20px 0;
    }

    .direction-desc {
      font-family: 'Ysabeau', sans-serif;
      font-weight: normal;
      font-size: 24px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0;
    }

    .direction-card .btn-record {
      margin-left: auto;
    }

    /* ========== Ценности ========== */
    .values-section {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 60px 40px;
    }

    .values-grid {
      display: flex;
      gap: 20px;
    }

    .value-card {
      width: 315px;
      height: 350px;
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--img-url);
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      color: var(--text-light);
    }

    .value-number {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 42px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      text-transform: capitalize;
      width: 275px;
    }

    .value-text {
      font-family: 'Ysabeau', sans-serif;
      font-weight: normal;
      font-size: 24px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0;
      width: 275px;
    }

    /* ========== Чай ========== */
    .tea-section {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 60px 40px;
    }

    .tea-content {
      display: flex;
      gap: 20px;
    }

    .tea-image img {
      width: 650px;
      height: 594px;
      object-fit: cover;
      border-radius: 25px;
    }

    .tea-text-block {
      max-width: 649px;
    }

    .tea-intro {
      font-family: 'Ysabeau', sans-serif;
      font-weight: normal;
      font-size: 24px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 32px;
      margin-top:0;
    }

    .tea-items {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .tea-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .tea-number {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 42px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
    }

    .tea-item p {
      font-family: 'Ysabeau', sans-serif;
      font-weight: normal;
      font-size: 24px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-dark);
      margin: 0;
    }

    /* ========== Расписание ========== */
    .schedule-section {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 60px 40px;
    }

    .schedule-widget-container {
      width: 100%;
      background: rgba(250, 244, 229, 0.05);
      border-radius: 25px;
      overflow: hidden;
    }

    /* ========== Цены ========== */
.prices-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px 120px;
}

.prices-pre-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.prices-info {
  width: 660px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.price-info-text {
  font-family: 'Ysabeau', sans-serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0;
}

.prices-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  background: var(--green-bg);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.price-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.price-group-header {
  display: flex;
}

.price-group-title {
  width: 600px;
  font-family: 'Ysabeau', sans-serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0;
}

.price-group-subtitle {
  width: 600px;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0;
}

.price-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 3px solid var(--border-gray);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
}

.price-item strong {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green);
}

.btn-buy-left {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green);
  padding: 20px 40px;
  gap: 10px;
  border: 1px solid var(--text-light);
  backdrop-filter: blur(9.45px);
  -webkit-backdrop-filter: blur(9.45px);
  border-radius: 40px;
  font-family: 'Ysabeau', sans-serif;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 20px;
  transition: var(--transition);
}

.btn-buy-left:hover {
  background: #656c4f;
  transform: translateY(-2px);
}


/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СКИДОК (НОВЫЕ) === */

.price-item {
  /* Перезаписываем, чтобы убрать <strong>, теперь используем гибкую вёрстку */
  align-items: center;
}

.price-item span:first-of-type {
  /* Сохраняем внешний вид описания (например, "Разовое занятие") */
  font-weight: normal;
}

/* Обёртка для старой и новой цены */
.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

/* Старая цена — перечёркнутая */
.old-price {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: normal;
}

/* Новая цена — крупнее и красная */
.new-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #e60000; /* или используйте var(--red), если определена */
  line-height: 1.15;
}

    /* ========== Футер ========== */
    .contacts-footer {
      background-color: var(--green);
      color: var(--text-light);
      padding: 0;
      width: 100%;
    }

    .footer-container {
      max-width: 1440px;
      margin: 0 auto;
      height: 680px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 3fr;
      gap: 60px;
      padding: 60px 60px;
      box-sizing: border-box;
      position: relative;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-col-title.small {
      font-family: 'Inter', sans-serif;
      font-size: 24px;
      font-weight: normal;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: #A5A5A5;
      text-transform: capitalize;
      margin: 0;
      padding-top: 121px;
    }

    .footer-col-title.large {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 64px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-light);
      text-transform: capitalize;
      margin: 0;
      padding-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-family: 'Ysabeau', sans-serif;
      font-size: 24px;
      font-weight: normal;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: rgba(250, 244, 229, 0.9);
    }

    .footer-contact-short,
    .footer-contact-full {
      font-family: 'Inter', sans-serif;
      margin: 0;
      color: var(--text-light);
    }

    .footer-contact-short {
      font-size: 24px;
      line-height: 1.45;
      letter-spacing: -0.02em;
    }

    .footer-contact-full {
      font-size: 16px;
      line-height: 1.15;
      font-style: normal;
    }

    .footer-contact-short a,
    .footer-contact-full a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-contact-short a:hover,
    .footer-contact-full a:hover {
      color: rgba(250, 244, 229, 0.9);
    }
	
	/* ========== Адаптация под планшеты ========== */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Общие контейнеры */
  .section-container,
  .content-wrapper,
  .directions-header-wrapper,
  .values-section,
  .tea-section,
  .schedule-section,
  .prices-section,
  .prices-container,
  .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* Заголовки */
  .section-title-left,
  .section-title-right,
  .directions-title,
  .prices-pre-header .section-title-right {
    font-size: 52px;
    width: auto;
    margin-left: 0;
  }

  /* Хедер */
  .header {
    top: 20px;
    height: auto;
    padding: 14px 40px;
    gap: 60px;
    border-radius: 20px;
  }

  .frame-21184,
  .frame-21180 {
    gap: 40px;
  }

  .menu-item {
    font-size: 20px;
  }

  /* Герой */
  .hero {
    min-height: 800px;
  }

  .content-wrapper {
    min-height: 800px;
  }

  .hero-content-block {
    top: 320px;
    padding: 0 40px;
    gap: 50px;
    height: auto;
  }

  .hero-text-and-button {
    width: 400px;
    height: auto;
    gap: 40px;
  }

  .hero-slogan {
    font-size: 28px;
    width: 400px;
  }

  .hero-studio-name {
    font-size: 22px;
  }

  .logo-hero {
    width: 200px;
    height: auto;
  }

  .btn-record {
    width: 220px;
    height: 64px;
    font-size: 22px;
    padding: 18px 36px;
  }

  /* Направления */
  .directions-header-wrapper {
    gap: 300px;
    padding-top: 70px;
    padding-bottom: 35px;
  }

  .directions-intro-text {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    margin-bottom: 100px;
  }

  .direction-card {
    height: 620px;
  }

  .direction-card-inner {
    padding: 40px;
  }

  .direction-title {
    font-size: 36px;
  }

  .direction-desc {
    font-size: 22px;
  }

  /* Ценности */
  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }

  .value-card {
    width: calc(50% - 10px);
    height: 320px;
  }

  .value-number,
  .value-text {
    font-size: 22px;
  }

  /* Чай */
  .tea-content {
    gap: 30px;
  }

  .tea-image img {
    width: 600px;
    height: auto;
    max-height: 500px;
  }

  .tea-text-block {
    max-width: 600px;
  }

  .tea-intro,
  .tea-item p {
    font-size: 22px;
  }

  .tea-number {
    font-size: 36px;
  }

  .tea-items {
    gap: 28px;
  }

  /* Расписание */
  .schedule-widget-container {
    height: 800px;
  }

  /* Цены */
  .prices-pre-header {
    gap: 300px;
    margin-bottom: 50px;
  }

  .prices-info {
    width: 600px;
  }

  .price-info-text {
    font-size: 22px;
  }

  .prices-container {
    padding: 60px 40px;
    gap: 60px;
    border-radius: 40px;
  }

  .price-group-title {
    font-size: 38px;
    width: 100%;
  }

  .price-group-subtitle {
    font-size: 28px;
    width: 100%;
  }

  .price-item {
    font-size: 28px;
    padding: 28px 0;
  }

  .price-item strong {
    font-size: 28px;
  }

  .btn-buy-left {
    font-size: 22px;
    padding: 18px 36px;
    align-self: flex-start;
  }

  /* === Дополнение для новых цен на планшетах === */
  .old-price {
    font-size: 24px;
  }

  .new-price {
    font-size: 30px;
  }

  /* Футер */
  .footer-container {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 40px;
  }

  .footer-col-title.large {
    font-size: 52px;
  }

  .footer-col-title.small {
    font-size: 22px;
  }

  .footer-links a,
  .footer-contact-short,
  .footer-contact-full {
    font-size: 20px;
  }

  .footer-contact-short {
    font-size: 22px;
  }
}
	/* ========== Мобильная адаптация ========== */
@media (max-width: 768px) {
  /* Глобальные корректировки */
  :root {
    --transition: all 0.2s ease;
  }

  .section-container,
  .content-wrapper,
  .directions-header-wrapper,
  .values-section,
  .tea-section,
  .schedule-section,
  .prices-section,
  .prices-container,
  .footer-container {
    padding:30px;
  }

  .section-title-left,
  .section-title-right,
  .directions-title,
  .prices-pre-header .section-title-right {
    font-size: 40px;
    line-height: 1.2;
    width: auto;
    margin-left: 0;
    text-align: left;
  }

  /* Хедер */
  .header {
    top: 15px;
    height: auto;
    padding: 12px 20px;
    gap: 20px;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .frame-21184,
  .frame-21180 {
    gap: 24px;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-item {
    font-size: 18px;
  }

  /* Герой */
  .hero {
    min-height: 700px;
  }

  .content-wrapper {
    min-height: 700px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content-block {
    top: 240px;
    padding: 0 30px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    height: auto;
  }

  .hero-text-and-button {
    width: 100%;
    height: auto;
    text-align: center;
    gap: 30px;
  }

  .hero-slogan,
  .hero-studio-name {
    width: 100%;
    text-align: left;
  }

  .hero-slogan {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-studio-name {
    font-size: 20px;
  }

  .logo-hero {
    width: 160px;
    height: auto;
  }

  .btn-record {
    width: 200px;
    height: 56px;
    font-size: 20px;
    padding: 16px 32px;
  }

  /* Направления */
  .directions-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .directions-header-content {
    width: 100%;
  }

  .directions-intro-text {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .direction-card {
    height: 500px;
  }

  .direction-card-inner {
    padding: 30px;
  }

  .direction-title {
    font-size: 32px;
  }

  .direction-desc {
    font-size: 20px;
  }

  /* Ценности */
  .values-grid {
    flex-direction: column;
    gap: 20px;
  }

  .value-card {
    width: 100%;
    height: 280px;
  }

  .value-number,
  .value-text {
    font-size: 20px;
    width: 100%;
  }

  /* Чай */
  .tea-content {
    flex-direction: column;
    align-items: center;
  }

  .tea-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
  }

  .tea-text-block {
    max-width: 100%;
  }

  .tea-intro,
  .tea-item p {
    font-size: 20px;
  }

  .tea-number {
    font-size: 32px;
  }

  .tea-items {
    gap: 24px;
  }

  /* Цены */
  .prices-pre-header {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }

  .prices-info {
    width: 100%;
  }

  .price-info-text {
    font-size: 20px;
  }

  .prices-container {
    padding: 40px 20px;
    gap: 40px;
    border-radius: 40px; /* на случай, если в десктопной версии он есть, а здесь не указан — можно оставить или убрать */
  }

  .price-group-title {
    font-size: 32px;
    width: 100%;
  }

  .price-group-subtitle {
    font-size: 24px;
    width: 100%;
  }

  .price-item {
    font-size: 20px;
    padding: 20px 0;
    gap: 8px 0;
  }

  .price-item > span:first-child {
    width: 100%;
  }

  .price-item strong {
    font-size: 20px;
  }

  .btn-buy-left {
    font-size: 20px;
    padding: 16px 32px;
    align-self: center;
  }

  /* === Дополнение для новых цен на мобильных === */
  .price-wrapper {
    align-items: flex-end;
    width: 100%;
  }

  .old-price {
    font-size: 18px;
  }

  .new-price {
    font-size: 22px;
  }

  /* Футер */
  .footer-container {
    height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .footer-col {
    gap: 16px;
  }

  .footer-col-title.large {
    font-size: 32px;
    padding-bottom: 12px;
  }

  .footer-col-title.small {
    padding-top: 0;
    font-size: 20px;
  }

  .footer-links a,
  .footer-contact-short,
  .footer-contact-full {
    font-size: 18px;
  }

  .footer-contact-short {
    font-size: 20px;
  }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
  .section-title-left,
  .section-title-right,
  .directions-title {
    font-size: 32px;
  }

  .hero-content-block {
    top: 200px;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .btn-record,
  .btn-buy-left {
    height: 50px;
    font-size: 18px;
  }

  .direction-card {
    height: 420px;
  }

  .direction-title {
    font-size: 26px;
  }

  .direction-desc {
    font-size: 18px;
  }

  .value-card {
    height: 240px;
  }

  .value-number,
  .value-text,
  .tea-number,
  .tea-item p {
    font-size: 18px;
  }

  .price-group-title {
    font-size: 28px;
  }

  .price-group-subtitle {
    font-size: 20px;
  }

  .price-item {
    font-size: 18px;
    padding: 16px 0;
  }

  .price-item strong {
    font-size: 18px;
  }

  /* === Дополнение для новых цен === */
  .old-price {
    font-size: 16px;
  }

  .new-price {
    font-size: 20px;
  }

  /* Улучшение компоновки на очень узких экранах */
  .price-item {
    gap: 6px 0;
  }

  .price-item > span:first-child {
    width: 100%;
  }

  .price-wrapper {
    width: 100%;
    align-items: flex-end;
  }

  .footer-col-title.large {
    font-size: 28px;
  }

  .footer-links a,
  .footer-contact-short,
  .footer-contact-full {
    font-size: 16px;
  }
}

/* Кастомизация хедера */
    .payment-header {
      position: relative;
      background-color: var(--green); /* заменён фон */
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      margin-bottom: 60px;
    }

    .payment-header .content-wrapper {
      /* Убираем min-height, чтобы не было пустого пространства */
      min-height: auto;
      padding: 0;
	  margin: 0;
    }

    /* Основной контент */
    .payment-section {
      margin-bottom: 80px;
    }

    .payment-block {
      margin-bottom: 60px;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      line-height: 1.6;
      color: var(--text-dark);
    }

    .payment-block-title {
      font-family: 'Spectral', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 36px;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: var(--text-dark);
      margin: 40px 0 24px 0;
    }

    .payment-steps {
      margin: 20px 0 24px 0;
      padding-left: 24px;
      font-size: 20px;
      line-height: 1.6;
    }

    .payment-steps li {
      margin-bottom: 16px;
    }

    .payment-sublist {
      margin-top: 12px;
      padding-left: 20px;
    }

    .payment-sublist li {
      margin-bottom: 8px;
    }

    .payment-code-list {
      margin: 16px 0;
      padding-left: 24px;
    }

    .payment-link {
      color: var(--green);
      text-decoration: underline;
    }

    .payment-link:hover {
      opacity: 0.8;
    }

    /* Адаптив */
    @media (max-width: 768px) {
      .payment-header .content-wrapper {
        padding: 0 30px;
      }

      .payment-block, .payment-steps, .payment-sublist, .payment-code-list {
        font-size: 18px;
      }

      .payment-block-title {
        font-size: 28px;
      }

      .payment-steps {
        padding-left: 20px;
      }

      .payment-sublist {
        padding-left: 16px;
      }
    }

    @media (max-width: 480px) {
      .payment-block-title {
        font-size: 24px;
      }
    }