:root {
  --green-950: #0a3826;
  --green-900: #0d4b31;
  --green-800: #0f5e3b;
  --green-700: #16744b;
  --leaf: #75ad45;
  --lime: #e7f3b7;
  --lime-soft: #f4f8e7;
  --orange: #ef8722;
  --orange-dark: #d97412;
  --cream: #fbf8ef;
  --white: #ffffff;
  --text: #173a2d;
  --muted: #61756c;
  --line: #dce5dc;
  --warning-bg: #fff4eb;
  --warning: #8d472f;
  --shadow: 0 22px 60px rgba(13, 75, 49, 0.12);
  --shadow-soft: 0 12px 30px rgba(13, 75, 49, 0.07);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 2%, rgba(117, 173, 69, 0.13), transparent 26rem),
    radial-gradient(circle at 96% 10%, rgba(239, 135, 34, 0.09), transparent 28rem),
    var(--cream);
  font-family: "Noto Sans Devanagari", "Mangal", "Kohinoor Devanagari", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 239, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 75, 49, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 228px;
  max-height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.78;
  transition: 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--green-700);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-btn,
.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.lang-btn {
  color: var(--green-800);
  background: #fff;
  border: 1px solid rgba(13, 75, 49, 0.16);
}

.lang-btn:hover {
  background: var(--lime-soft);
}

.order-btn {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 10px 24px rgba(15, 94, 59, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

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

.hero {
  padding: 42px 0 28px;
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 46px 52px;
  border: 1px solid rgba(13, 75, 49, 0.09);
  border-radius: 40px;
  background:
    radial-gradient(circle at 88% 18%, rgba(231, 243, 183, 0.82), transparent 20rem),
    linear-gradient(135deg, #fffdfa 0%, #f7fae9 100%);
  box-shadow: var(--shadow);
}

.hero-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--lime-soft);
  border: 1px solid rgba(117, 173, 69, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--green-950);
}

.hero-content p {
  margin: 0 0 16px;
  font-size: 18px;
  color: #3f5d51;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 13px 30px rgba(15, 94, 59, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--green-800);
  background: #fff;
  border: 1px solid rgba(13, 75, 49, 0.15);
}

.hero-image {
  width: min(100%, 440px);
  justify-self: end;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13, 75, 49, 0.08);
  box-shadow: 0 24px 52px rgba(13, 75, 49, 0.15);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.banner-section {
  padding: 20px 0;
}

.wide-banner {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(13, 75, 49, 0.1);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 76px 0;
}

.soft-section {
  background: linear-gradient(180deg, rgba(235, 246, 216, 0.52), rgba(255, 253, 248, 0.25));
  border-block: 1px solid rgba(13, 75, 49, 0.05);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.section-title span,
.section-heading span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.section-title h2,
.section-heading h2,
.content-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--green-950);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.content-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.content-card p {
  margin: 0 0 18px;
  color: #465f54;
}

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

.small-card {
  margin-top: 20px;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 19px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e8eee8;
}

th {
  color: var(--green-900);
  background: linear-gradient(180deg, #eef7dc, #e8f2ce);
  font-size: 14px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: #fffaf4;
}

td:nth-child(2) {
  white-space: nowrap;
  color: var(--green-800);
  font-weight: 800;
}

.nutrition-table {
  max-width: 820px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.card-number {
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(117, 173, 69, 0.14);
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding-right: 55px;
  color: var(--green-900);
  font-size: 23px;
  line-height: 1.28;
}

.benefit-card p {
  margin: 0;
  color: #526a60;
}

.two-column-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dose-card {
  background: linear-gradient(145deg, #f4f9e2, #fff8ed);
}

.highlight-text {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(117, 173, 69, 0.24);
  color: var(--green-900) !important;
}

.warning-card {
  background: var(--warning-bg);
  border-color: rgba(141, 71, 47, 0.15);
}

.warning-card h2 {
  color: var(--warning);
}

.warning-card ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.warning-card li {
  margin: 6px 0;
}

.warning-card li::marker {
  color: var(--orange);
}

.india-card {
  max-width: 960px;
  margin-inline: auto;
  background: linear-gradient(145deg, #fff, #f5f9e7);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 7px 18px rgba(13, 75, 49, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 22px;
  color: var(--green-700);
  font-size: 30px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: #526a60;
}

.order-section {
  padding: 78px 0 94px;
}

.order-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.order-image {
  min-height: 500px;
  background: var(--lime-soft);
}

.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-content {
  padding: 48px;
  display: flex;
  align-items: center;
}

.order-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: var(--green-900);
  font-size: 13px;
  font-weight: 850;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d7e1d8;
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.form-field input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(117, 173, 69, 0.13);
}

.full-btn {
  width: 100%;
  margin-top: 15px;
}

.site-footer {
  padding: 38px 0 120px;
  background: linear-gradient(180deg, rgba(246,248,248,.55), rgba(241,247,250,.88));
  border-top: 1px solid rgba(13, 75, 49, 0.06);
}

.footer-card {
  padding: 34px 34px 22px;
  border: 1px solid #d8e0e6;
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 40px rgba(35,67,87,.06);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr .8fr 1.35fr;
  gap: 38px;
  align-items: start;
}

.footer-brand {
  padding-top: 8px;
}

.footer-logo {
  width: 210px;
  max-height: 58px;
  object-fit: contain;
}

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

.footer-column h3,
.footer-info h3 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 18px;
  line-height: 1.3;
}

.footer-column a {
  color: #314e43;
  font-size: 14px;
  font-weight: 650;
}

.footer-column a:hover {
  color: var(--green-700);
}

.footer-info {
  padding: 18px 20px;
  border: 1px solid #d8e0e6;
  border-radius: 20px;
  background: rgba(255,255,255,.62);
}

.footer-info p {
  margin: 0;
  color: #4d6269;
  font-size: 14px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #d8e0e6;
}

.footer-bottom p {
  margin: 0;
  color: #52666d;
  font-size: 13px;
}

.footer-bottom p:last-child {
  text-align: right;
  max-width: 560px;
}

.fixed-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 65px rgba(10, 56, 38, 0.23);
  transform: translateY(calc(100% - 62px));
  transition: 0.25s ease;
}

.fixed-order.open {
  transform: translateY(0);
}

.fixed-toggle {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  font-weight: 900;
}

.fixed-order.open .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: 0.2s ease;
}

.fixed-body {
  padding: 16px;
}

.fixed-product {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.fixed-product img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
}

.fixed-body .form-field {
  margin-bottom: 10px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(6, 32, 22, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

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

.popup-window {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green-900);
  font-size: 25px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.13);
}

.popup-image {
  min-height: 500px;
  background: var(--lime-soft);
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-form-wrap {
  padding: 46px;
  display: flex;
  align-items: center;
}

.popup-form-wrap form {
  width: 100%;
}

.popup-form-wrap .form-field {
  margin-bottom: 12px;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-order-btn {
    display: none;
  }

  .hero-grid,
  .split-section,
  .order-box,
  .popup-window {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding: 36px;
  }

  .hero-image {
    width: min(100%, 430px);
    justify-self: center;
  }

  .order-image {
    min-height: 320px;
    max-height: 430px;
  }

  .popup-window {
    max-width: 620px;
  }

  .popup-image {
    min-height: 220px;
    max-height: 270px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .logo img {
    width: 170px;
  }

  .lang-btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 16px 0 18px;
  }

  .hero-grid {
    padding: 22px;
    gap: 24px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .banner-section {
    padding: 12px 0;
  }

  .wide-banner {
    border-radius: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title h2,
  .section-heading h2,
  .content-card h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .content-card {
    padding: 22px;
    border-radius: 22px;
  }

  .benefit-grid,
  .two-column-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    padding: 23px;
  }

  .order-section {
    padding: 54px 0 80px;
  }

  .order-content,
  .popup-form-wrap {
    padding: 26px 20px;
  }

  .order-image {
    min-height: 270px;
  }

  .footer-card {
    padding: 24px 20px 18px;
    border-radius: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
  }

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

  .footer-logo {
    width: 175px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .fixed-order {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .site-footer {
    padding-bottom: 95px;
  }

  .popup-window {
    border-radius: 22px;
  }

  .popup-image {
    min-height: 190px;
    max-height: 220px;
  }
}

@media (max-width: 460px) {
  .logo img {
    width: 145px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .section-title h2,
  .section-heading h2,
  .content-card h2 {
    font-size: 27px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-info {
    grid-column: auto;
  }
}


/* ===== Revision: compact content block, updated order form ===== */

.about-block {
  width: 100%;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.about-block .section-title {
  margin-bottom: 18px;
}

.about-block .section-title h2 {
  margin-bottom: 0;
}

.about-text {
  max-width: 100%;
  color: #465f54;
  font-size: 17px;
}

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

.about-text p:last-child {
  margin-bottom: 0;
}

/* No promotional CTA buttons in the header/hero. */
.desktop-order-btn,
.hero-actions {
  display: none !important;
}

.order-box {
  grid-template-columns: 0.92fr 1.08fr;
  background: #fffafb;
}

.order-image {
  min-height: 510px;
}

.order-content {
  padding: 42px 46px;
  align-items: center;
}

.order-inner,
.popup-inner {
  width: 100%;
}

.order-copy {
  margin-bottom: 22px;
}

.order-badge {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #edf3ff;
  color: #244d8c;
  font-size: 12px;
  font-weight: 800;
}

.order-copy h2 {
  margin: 0 0 14px;
  color: #173c72;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.order-copy p {
  margin: 0;
  color: #586b82;
  font-size: 16px;
  line-height: 1.7;
}

.order-points {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
  color: #536478;
  font-size: 14px;
}

.order-points li {
  position: relative;
  padding-left: 30px;
}

.order-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #d81d3b;
  font-size: 22px;
  font-weight: 900;
}

.order-section .btn-primary,
.popup-window .btn-primary {
  background: linear-gradient(135deg, #d90e32, #b90928);
  box-shadow: 0 13px 30px rgba(196, 14, 46, 0.22);
}

.popup-form-wrap {
  align-items: center;
}

.popup-form-wrap .order-copy h2 {
  font-size: clamp(29px, 3.1vw, 41px);
}

.popup-points {
  margin-top: 12px;
}

@media (max-width: 1020px) {
  .about-block {
    padding: 30px;
  }

  .order-content {
    padding: 34px 30px;
  }
}

@media (max-width: 720px) {
  .about-block {
    padding: 22px;
    border-radius: 22px;
  }

  .about-text {
    font-size: 16px;
  }

  .order-content {
    padding: 26px 20px 28px;
  }

  .order-copy h2 {
    font-size: 31px;
  }

  .order-copy p {
    font-size: 15px;
  }

  .order-points {
    font-size: 13px;
  }

  .popup-form-wrap {
    padding: 24px 20px 26px;
  }

  .popup-form-wrap .order-copy h2 {
    font-size: 29px;
  }
}


/* ===== Berberine form palette ===== */
.order-content,
.popup-form-wrap {
  background:
    radial-gradient(circle at 100% 0, rgba(231, 243, 183, 0.58), transparent 18rem),
    linear-gradient(145deg, #fffdf8 0%, #f7fae9 100%);
}

.order-badge {
  background: var(--lime-soft);
  color: var(--green-800);
  border: 1px solid rgba(117, 173, 69, 0.22);
}

.order-copy h2,
.popup-form-wrap .order-copy h2 {
  color: var(--green-950);
}

.order-copy p {
  color: var(--muted);
}

.form-field label {
  color: var(--green-900);
}

.form-field input {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(13, 75, 49, 0.18);
  color: var(--text);
}

.form-field input::placeholder {
  color: #819087;
}

.form-field input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(117, 173, 69, 0.14);
}

.order-section .btn-primary,
.popup-window .btn-primary,
.fixed-order .btn-primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 13px 30px rgba(15, 94, 59, 0.22);
}

.order-section .btn-primary:hover,
.popup-window .btn-primary:hover,
.fixed-order .btn-primary:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
}

.order-points {
  color: #526a60;
}

.order-points li::before {
  color: var(--orange);
}

.fixed-order {
  background: var(--paper, #fffdf8);
  border-color: rgba(13, 75, 49, 0.16);
}

.fixed-body {
  background:
    radial-gradient(circle at 100% 0, rgba(231, 243, 183, 0.42), transparent 12rem),
    #fffdf8;
}

.fixed-toggle {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.popup-window {
  border: 1px solid rgba(13, 75, 49, 0.14);
}

.popup-close {
  color: var(--green-900);
  border: 1px solid rgba(13, 75, 49, 0.1);
}

.popup-close:hover {
  background: var(--lime-soft);
}

.order-box {
  border-color: rgba(13, 75, 49, 0.14);
}


/* Slightly shift language switch to the left on desktop */
@media (min-width: 1021px) {
  .header-actions {
    margin-right: 34px;
  }
}


/* English version typography */
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
}
