:root {
  --bg: #edf3e8;
  --surface: #fdfdf8;
  --surface-2: #ffffff;
  --card: #fbfbf7;
  --line: #d9e8df;
  --line-strong: #c3ddd2;
  --text: #566764;
  --title: #0b6b69;
  --accent: #1da17a;
  --accent-dark: #0e746d;
  --shadow: 0 18px 40px rgba(16, 73, 67, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(169, 214, 181, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(245, 221, 161, 0.16), transparent 24%),
    linear-gradient(180deg, #eef4e9 0%, #f4f7ef 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.main-page {
  padding-top: 92px;
}

.lang-page {
  display: none;
}

.lang-page.is-active {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(183, 209, 198, 0.55);
}

.header-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--title);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(14, 77, 72, 0.08);
  gap: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--title);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, #1fba8d 0%, #18856a 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(19, 136, 106, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--title);
  border-radius: 999px;
}

/* HERO */
.hero {
  padding: 24px 0 10px;
}

.hero-shell {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(249,248,240,0.94));
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  align-items: stretch;
}

.hero-card {
  width: 100%;
  border-radius: 30px;
  padding: 30px 34px 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(11, 105, 101, 0.05);
}

.hero-card h1 {
  margin: 0 0 18px;
  color: var(--title);
  font-size: clamp(34px, 4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #f3f9f5;
  border: 1px solid var(--line-strong);
  color: #0f6460;
  font-weight: 800;
  font-size: 14px;
}

.hero-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f47b34;
  flex: 0 0 9px;
}

.hero-media {
  display: flex;
  align-items: stretch;
}

.hero-media-box {
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f6ed 0%, #fffdf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-media-box img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 82% center;
  transform: none;
}

/* Sections */
.section {
  padding: 14px 0;
}

.section-last {
  padding-bottom: 34px;
}

.panel {
  background: var(--card);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.panel-support {
  overflow: hidden;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0 0 10px;
  color: var(--title);
  font-size: clamp(30px, 3vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.panel-head p,
.section-lead,
.section-end-text,
.content-narrow p,
.panel p {
  font-size: 16px;
  line-height: 1.66;
  color: var(--text);
}

.section-lead {
  margin: 0 0 18px;
}

.section-end-text {
  margin: 18px 0 0;
}

.content-narrow {
  max-width: 1040px;
}

.content-narrow p:last-child {
  margin-bottom: 0;
}

/* Support block */
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.support-text p {
  margin: 0 0 18px;
}

.support-text-banner {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #fffdf5;
  box-shadow: inset 0 0 0 1px rgba(10, 99, 93, 0.03);
}

.support-text-banner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 82% center;
}

.support-banner-note {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dcebe5;
  color: #24413e;
  font-weight: 700;
}

.support-visual-wrap {
  display: flex;
  align-items: flex-start;
}

.support-visual {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 28px;
  background: #edf6f1;
  border: 1px solid var(--line-strong);
  padding: 20px;
  display: block;
}

.support-product-frame {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf6 100%);
  border: 1px solid #d9ece2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 520px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(10, 99, 93, 0.03);
}

.support-product-frame img {
  width: 100%;
  max-width: 310px;
  height: auto;
  object-fit: contain;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.support-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  background: #fff;
  border: 1px solid #dcebe5;
  border-radius: 18px;
  color: #234441;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.support-list li + li {
  margin-top: 0;
}

.support-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(29, 161, 122, 0.14);
}

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.ingredient-card,
.how-card,
.faq-item,
.disclaimer-panel,
.two-col-grid .panel {
  border: 1px solid #e2ece6;
}

.info-card {
  position: relative;
  background: #fffefb;
  padding: 24px 20px;
  border-radius: 24px;
  overflow: hidden;
}

.info-card::after,
.ingredient-card::after {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(184, 232, 208, 0.26);
}

.info-card h3,
.ingredient-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #167c59;
  font-size: 24px;
  line-height: 1.16;
}

.info-card p,
.ingredient-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.64;
  color: var(--text);
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-card {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: 24px;
  background: #fffefb;
  overflow: hidden;
}

/* How */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.how-card {
  background: #fffefb;
  border-radius: 24px;
  padding: 24px;
}

.how-label {
  font-weight: 800;
  color: var(--title);
  margin-top: 0;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.how-list li + li {
  margin-top: 12px;
}

.how-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Two columns */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefits-list li {
  position: relative;
  padding: 14px 14px 14px 40px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #deebe5;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
  color: #24413e;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(29, 161, 122, 0.12);
}

.use-panel {
  display: flex;
  flex-direction: column;
}

.use-favicon-circle {
  width: 148px;
  height: 148px;
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eef8f3 62%, #dcefe7 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 32px rgba(16, 73, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.use-favicon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.full-width-banner {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #fffdf6;
  box-shadow: var(--shadow);
}

.full-width-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: #fffefb;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  color: #126f67;
  font-size: 20px;
  line-height: 1.3;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 30px;
  background: #eef8f3;
  color: var(--title);
  font-weight: 900;
  font-size: 18px;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.disclaimer-panel {
  background: linear-gradient(135deg, #fffdf8 0%, #f6fbf7 100%);
}

/* Responsive */
@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .support-layout {
    grid-template-columns: 1fr;
  }


  .ingredients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .header-row {
    grid-template-columns: auto auto auto;
    gap: 14px;
    min-height: 78px;
  }

  .site-logo {
    width: 112px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 16px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lang-switch {
    justify-self: end;
  }

  .main-page {
    padding-top: 84px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-shell {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-card {
    padding: 18px 16px 14px;
    border-radius: 22px;
  }

  .hero-card h1 {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .hero-card p {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .hero-meta {
    gap: 10px;
    margin-top: 10px;
  }

  .hero-pill {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero-media-box {
    min-height: 240px;
    padding: 10px;
  }

  .hero-media-box img {
    width: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 82% center;
    transform: none;
  }

  .panel {
    padding: 20px 16px;
    border-radius: 26px;
  }

  .panel-head h2 {
    font-size: clamp(26px, 6vw, 40px);
  }

  .panel-head p,
  .section-lead,
  .section-end-text,
  .content-narrow p,
  .panel p {
    font-size: 14px;
    line-height: 1.58;
  }

  .support-visual {
    padding: 14px;
  }

  .support-text-banner img {
    height: 210px;
  }

  .use-favicon-circle {
    width: 118px;
    height: 118px;
    padding: 18px;
    margin-top: 20px;
  }

  .full-width-banner img {
    height: auto;
  }

  .support-list li {
    font-size: 14px;
    padding: 14px 14px 14px 40px;
  }

  .support-list li::before {
    top: 19px;
  }

  .info-grid,
  .ingredients-grid,
  .how-grid,
  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .info-card,
  .ingredient-card,
  .how-card {
    padding: 20px 16px;
  }

  .info-card h3,
  .ingredient-card h3 {
    font-size: 22px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .header-row {
    grid-template-columns: auto auto auto;
  }

  .site-logo {
    width: 96px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-card h1 {
    font-size: 25px;
  }

  .hero-media-box {
    min-height: 200px;
  }

  .support-text-banner img {
    height: 190px;
  }

  .full-width-banner img {
    height: auto;
  }
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .support-banner-note {
    font-size: 14px;
    line-height: 1.55;
  }

  .use-favicon-circle {
    margin-top: 34px;
    margin-bottom: 6px;
  }
}

/* Footer */
.site-footer {
  padding: 8px 0 34px;
}

.footer-panel {
  background:
    radial-gradient(circle at 8% 0%, rgba(244, 123, 52, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(180px, 0.75fr));
  gap: 24px;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo {
  width: 136px;
  height: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-note p,
.footer-bottom p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.footer-col h2 {
  margin: 0 0 14px;
  color: var(--title);
  font-size: 18px;
  line-height: 1.25;
}

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

.footer-links a {
  color: #24413e;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  padding: 18px;
  border-radius: 22px;
  background: #fffefb;
  border: 1px solid #deebe5;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #deebe5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 991px) {
  .site-footer {
    padding: 4px 0 24px;
  }

  .footer-panel {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 116px;
  }
}


/* Static order form before footer */
.order-section {
  padding: 20px 0 18px;
}

.order-section__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 4% 10%, rgba(244, 123, 52, 0.12), transparent 28%),
    radial-gradient(circle at 96% 0%, rgba(29, 161, 122, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.order-section__media {
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background: #fffdf6;
  border: 1px solid #deebe5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.order-section__media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: contain;
  object-position: center;
}

.order-section__content {
  padding: 8px 4px;
}

.order-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef8f3;
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-section__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f47b34;
  flex: 0 0 9px;
}

.order-section__content h2 {
  margin: 0 0 12px;
  color: var(--title);
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.order-section__text {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
}

.order-section__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.order-section__field {
  display: grid;
  gap: 8px;
}

.order-section__field label {
  color: #24413e;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.order-section__field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #ffffff;
  color: #24413e;
  font-size: 16px;
  line-height: 1.2;
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(10, 99, 93, 0.02);
}

.order-section__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(29, 161, 122, 0.14);
}

.order-section__submit {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fba8d 0%, #18856a 100%);
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(19, 136, 106, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-section__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(19, 136, 106, 0.30);
}

@media (max-width: 991px) {
  .order-section {
    padding: 14px 0 14px;
  }

  .order-section__panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 26px;
  }

  .order-section__media {
    min-height: 260px;
    border-radius: 22px;
    padding: 12px;
  }

  .order-section__media img {
    min-height: 230px;
  }

  .order-section__content {
    padding: 0;
  }

  .order-section__content h2 {
    font-size: clamp(27px, 7vw, 40px);
  }

  .order-section__text {
    font-size: 14px;
    line-height: 1.58;
  }

  .order-section__form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-section__field input {
    min-height: 50px;
    font-size: 15px;
  }

  .order-section__submit {
    min-height: 54px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .order-section__eyebrow {
    font-size: 12px;
  }

  .order-section__media {
    min-height: 220px;
  }

  .order-section__media img {
    min-height: 200px;
  }
}

/* Order popup v2 */
.order-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-popup.is-visible {
  display: flex;
}

.order-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 39, 36, 0.62);
  backdrop-filter: blur(7px);
}

.order-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid var(--line-strong, #c3ddd2);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(5, 39, 36, 0.32);
}

.order-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(195, 221, 210, 0.9);
  border-radius: 50%;
  background: #ffffff;
  color: var(--title, #0b6b69);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(14, 77, 72, 0.12);
}

.order-popup__media {
  min-height: 430px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 18%, rgba(244, 123, 52, 0.12), transparent 30%),
    linear-gradient(180deg, #f9fbf4 0%, #eef8f3 100%);
  border-radius: 32px 0 0 32px;
}

.order-popup__media img {
  width: 100%;
  height: 100%;
  max-height: 395px;
  object-fit: contain;
}

.order-popup__content {
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-popup__eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef8f3;
  border: 1px solid var(--line-strong, #c3ddd2);
  color: var(--accent-dark, #0e746d);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-popup__content h2 {
  margin: 0 0 12px;
  color: var(--title, #0b6b69);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.order-popup__text {
  margin: 0 0 22px;
  color: var(--text, #566764);
  font-size: 16px;
  line-height: 1.56;
}

.order-popup__form {
  display: grid;
  gap: 12px;
}

.order-popup__form label {
  color: #24413e;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.order-popup__form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #cfe2d9;
  border-radius: 16px;
  background: #ffffff;
  color: #24413e;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-popup__form input:focus {
  border-color: var(--accent, #1da17a);
  box-shadow: 0 0 0 4px rgba(29, 161, 122, 0.14);
}

.order-popup__submit {
  margin-top: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fba8d 0%, #18856a 100%);
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 26px rgba(19, 136, 106, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-popup__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(19, 136, 106, 0.34);
}

.order-popup-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .order-popup {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .order-popup__dialog {
    grid-template-columns: 1fr;
    max-height: none;
    border-radius: 26px;
  }

  .order-popup__media {
    min-height: 220px;
    padding: 16px 16px 0;
    border-radius: 26px 26px 0 0;
  }

  .order-popup__media img {
    max-height: 220px;
  }

  .order-popup__content {
    padding: 22px 18px 20px;
  }

  .order-popup__content h2 {
    font-size: 30px;
  }

  .order-popup__text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .order-popup__close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    font-size: 27px;
  }
}
