:root {
  --ink: #183422;
  --deep: #0d2116;
  --green: #40724b;
  --lime: #a8c96d;
  --cream: #f7f4eb;
  --paper: #fffcf5;
  --gold: #c7a35b;
  --line: #d8ddc8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.5rem, 6.8vw, 7.2rem);
}
h2 {
  font-size: clamp(2.7rem, 4.6vw, 5.3rem);
}
em {
  font-weight: 700;
  color: #92b959;
}
a {
  text-decoration: none;
  color: inherit;
}
.topbar {
  height: 38px;
  width: 100%;
  background: #edf6d8;
  color: #305a37;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.ticker {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-group span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 70px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.site-header {
  position: absolute;
  z-index: 3;
  top: 35px;
  left: 0;
  width: 100%;
  height: 89px;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
}
.brand b {
  color: #a8cf73;
}
.brand-mark {
  height: 29px;
  width: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #9cbe6e;
  border-radius: 50%;
  color: #bdde85;
  font:
    700 18px "Playfair Display",
    serif;
}
.site-header nav {
  display: flex;
  gap: 37px;
  margin-left: auto;
  margin-right: 45px;
}
.site-header nav a {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}
.button {
  background: #88b852;
  color: #142b1c;
  border: 1px solid #88b852;
  padding: 15px 21px;
  border-radius: 5px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-weight: 700;
  transition: 0.25s;
}
.button:hover {
  background: #b6d77d;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 12px;
}
.button-small {
  padding: 11px 17px;
  color: #fff;
  background: #3f794b;
  border-color: #5e975c;
  font-size: 14px;
}
.menu-button {
  display: none;
}
.hero {
  background:
    radial-gradient(
      circle at 73% 37%,
      #576f33 0,
      rgba(65, 91, 43, 0.6) 16%,
      transparent 38%
    ),
    linear-gradient(120deg, #0b1d13, #1d3620 55%, #263c20);
  color: #fff;
  /* position: relative; */
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(400px, 1fr);
  grid-template-areas:
    "copy product"
    "actions product"
    "points product";
  grid-template-rows: auto auto auto;

  column-gap: 60px;
  align-content: center;

  min-height: 760px;
  padding: 150px max(7vw, 38px) 70px;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;

  width: 100%;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 22px;
}

.hero-price strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.hero-price .price-mrp {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7d67e;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  max-width: 620px;
}
.hero-text {
  color: #d9e3d6;
  max-width: 500px;
  margin: 25px 0 31px;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-weight: 700;
  border-bottom: 1px solid #9fba9b;
  padding-bottom: 3px;
}
.text-link span {
  margin-left: 9px;
}

.hero-product {
  grid-area: product;

  position: relative;
  top: auto;
  right: auto;

  width: 100%;
  height: 600px;

  align-self: center;
}
.hero-product img {
  height: 470px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

.hero-actions {
  grid-area: actions;

  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 25px;
}

.hero-points {
  grid-area: points;

  position: relative;
  z-index: 3;

  display: flex;
  gap: 25px;
  flex-wrap: wrap;

  margin-top: 30px;
}

.sun {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  position: absolute;
  background: radial-gradient(
    circle,
    #dfc986 0,
    rgba(203, 173, 93, 0.55) 18%,
    rgba(172, 172, 76, 0.12) 52%,
    transparent 70%
  );
}
.leaf {
  position: absolute;
  color: #cfe18a;
  font-size: 45px;
  opacity: 0.7;
}
.leaf-one {
  top: 90px;
  right: 4%;
}
.leaf-two {
  bottom: 75px;
  left: 3%;
  transform: rotate(45deg);
}
.roundel {
  height: 120px;
  width: 120px;
  border: 1px solid #a8c96d;
  border-radius: 50%;
  background: rgba(19, 48, 25, 0.78);
  position: absolute;
  right: 4%;
  bottom: 68px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #d3e6a2;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.35;
}
.roundel b {
  color: white;
  font:
    700 22px "Playfair Display",
    serif;
  margin-top: 3px;
}
/* .hero-note {
  position: absolute;
  z-index: 1;
  bottom: 36px;
  left: max(7vw, 38px);
  display: flex;
  gap: 10px;
  align-items: center;
  color: #abc39b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.hero-note i {
  height: 38px;
  width: 1px;
  background: #a5bd83;
} */
.section-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 70px);
  padding-right: clamp(24px, 6vw, 70px);
}
.intro {
  padding-top: 126px;
  padding-bottom: 120px;
}
.section-label {
  color: #7c9d50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label span {
  color: #8d9480;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.75fr;
  gap: 12%;
  margin-top: 30px;
}
.intro-grid p,
.ingredients-heading p,
.for-you-grid p {
  font-size: 17px;
  color: #647061;
  align-self: end;
  padding-bottom: 8px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 85px;
}
.benefit-grid img {
  width: 100%;
  border-radius: 25px;
}

.benefit-grid article {
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.benefit-grid article:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12); */
  transition: 0.35s;
}

.benefit-grid article:hover img {
  transform: scale(1.05);
  transition: 0.35s;
}

.benefit-grid span {
  font:
    700 14px "Playfair Display",
    serif;
  color: #91ae63;
}
.benefit-grid h3 {
  font:
    700 20px "Playfair Display",
    serif;
  margin: 22px 0 8px;
}
.benefit-grid p {
  font-size: 14px;
  color: #6c766b;
}
.problems {
  background: #e9efda;
  padding: 105px 0;
}
.problems-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8%;
  align-items: start;
}
.problems h2 {
  max-width: 460px;
}
.problems-copy p:not(.eyebrow) {
  color: #57674f;
  font-size: 16px;
  margin: 22px 0 30px;
  max-width: 440px;
}
.feature-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 440px;
}
.feature-badges div {
  background: #f8f8ef;
  border: 1px solid #d3ddc0;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #3a5a34;
  line-height: 1.35;
}
.feature-badges span {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.problems-product {
  margin-top: 38px;
  max-width: 447px;
}
.problems-product img {
  width: 100%;
  display: block;
}
@media (max-width: 850px) {
  .problems-product {
    display: none;
    max-width: 100%;
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pain-grid article {
  background: #f8f8ef;
  border-radius: 14px;
  padding: 0 0 20px;
  position: relative;
  overflow: hidden;
}
.pain-grid article img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
}
.pain-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: var(--deep);
  color: #cfe18a;
  border-radius: 50%;
  font-size: 19px;
  margin: -22px auto 12px;
  border: 3px solid #f8f8ef;
}
.pain-grid h3 {
  font:
    700 18px "Playfair Display",
    serif;
  padding: 0 18px;
  margin-bottom: 8px;
}
.pain-grid p {
  font-size: 13px;
  color: #6c766b;
  padding: 0 18px;
}
.pain-card-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep) !important;
  color: #f5f4e9;
  min-height: 230px;
  padding: 24px !important;
}
.pain-card-more h3 {
  color: #fff;
  padding: 0 !important;
  margin-bottom: 10px;
}
.pain-card-more p {
  color: #b4c2b1;
  padding: 0 !important;
}
.ingredients {
  padding-top: 128px;
  padding-bottom: 118px;
}
.ingredients-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 11%;
  margin-top: 29px;
}
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.ingredient-grid div {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 125px;
  background: #f8f7ef;
}
.ingredient-grid b {
  font:
    700 22px "Playfair Display",
    serif;
  display: block;
}
.ingredient-grid span {
  font-size: 13px;
  color: #738072;
}
.ingredient-note {
  font-size: 12px;
  color: #89907f;
  margin-top: 17px;
  font-style: italic;
}
.ritual {
  background: var(--deep);
  color: #f5f4e9;
  padding: 118px 0;
}
.ritual-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14%;
}
.ritual-copy p:last-child {
  max-width: 370px;
  color: #aebdac;
  margin-top: 25px;
}
.ritual ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ritual li {
  display: flex;
  gap: 23px;
  padding: 23px 0;
  border-top: 1px solid rgba(212, 231, 176, 0.25);
}
.ritual li:last-child {
  border-bottom: 1px solid rgba(212, 231, 176, 0.25);
}
.ritual li > span {
  color: #a8c96d;
  font:
    700 23px "Playfair Display",
    serif;
}
.ritual h3 {
  font:
    700 22px "Playfair Display",
    serif;
  margin-bottom: 5px;
}
.ritual li p {
  color: #b4c2b1;
  font-size: 14px;
}
.for-you {
  padding-top: 126px;
  padding-bottom: 120px;
}
.for-you-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14%;
  margin-top: 28px;
}
.people {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.people span {
  border: 1px solid #d8ddca;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 13px;
  background: #faf9f3;
}
.faq {
  padding-top: 100px;
  padding-bottom: 125px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 15%;
  border-top: 1px solid var(--line);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  font:
    700 20px "Playfair Display",
    serif;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font:
    400 27px "DM Sans",
    sans-serif;
  color: #83a658;
  line-height: 0.8;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: #708070;
  font-size: 14px;
  max-width: 560px;
  margin: 15px 35px 0 0;
}
.order {
  color: #f8f5e9;
  background: #426d40;
  position: relative;
  overflow: hidden;
}
.order-glow {
  height: 600px;
  width: 600px;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(220, 205, 121, 0.4),
    transparent 65%
  );
  right: -180px;
  top: -150px;
}
.order-wrap {
  position: relative;
  z-index: 1;
  min-height: 570px;
  padding-top: 100px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "content product"
    "button  product";
  column-gap: 100px;
  align-items: center;
  justify-content: space-between;
}
.order-content {
  grid-area: content;
}
.order-button {
  grid-area: button;
  justify-self: start;
  margin-top: 32px;
}
.order-wrap > div:first-child {
  max-width: 550px;
}
.order h2 {
  max-width: 530px;
}
.order p:not(.eyebrow) {
  color: #e5eddb;
  max-width: 450px;
  margin: 24px 0 32px;
}
.button-light {
  background: #ecf2d5;
  border-color: #ecf2d5;
  color: #274427;
}
.product-card {
  position: relative;
  width: 285px;
  min-height: 392px;
  padding: 25px 23px;
  background: #f5f3e8;
  color: var(--ink);
  box-shadow: 0 22px 30px rgba(9, 28, 12, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-area: product;
  overflow: hidden;
}
.product-card > span {
  position: absolute;
  top: 20px;
  right: 22px;
  font-weight: 700;
  font-size: 12px;
  color: #759653;
}
.product-card img {
  position: absolute;
  height: 330px;
  top: 15px;
  left: 25px;
  width: 235px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-card div,
.product-card strong {
  position: relative;
  z-index: 1;
}
.product-card b {
  font:
    700 20px "Playfair Display",
    serif;
  display: block;
}
.product-card small {
  color: #7b8879;
  display: block;
  font-size: 11px;
}
.product-card strong {
  margin-top: 12px;
  color: #426d40;
}
.product-card del {
  font:
    400 11px "DM Sans",
    sans-serif;
  color: #849382;
}
footer {
  padding: 35px max(7vw, 35px);
  background: #102517;
  color: #d8e0d0;
  display: flex;
  align-items: center;
  gap: 45px;
  font-size: 13px;
}
footer .brand {
  font-size: 19px;
}
footer .brand-mark {
  height: 25px;
  width: 25px;
  font-size: 15px;
}
footer p {
  margin-right: auto;
}
footer > span {
  color: #9baa99;
  font-size: 11px;
}
@keyframes scroll {
  to {
    transform: translateX(-30%);
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 75px;
    padding: 0 24px;
  }
  .site-header nav,
  .site-header > .button {
    display: none;
  }
  .menu-button {
    display: block;
    background: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    padding: 7px 10px;
    font:
      600 12px "DM Sans",
      sans-serif;
  }
  .site-header nav.open {
    display: flex;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 22px 24px;
    background: #183422;
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    min-height: auto;
    padding: 90px 20px 45px;

    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    position: relative;
    width: 100%;
    max-width: none;
    order: 1;
  }

  .hero-price {
    margin: 16px 0 16px;
  }

  .hero-price strong {
    font-size: 27px;
  }

  .hero-price .price-mrp {
    font-size: 10px;
  }

  .hero-copy {
    width: 100%;
  }
  .hero-content {
    order: 1;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.15rem);
    line-height: 0.9;
    letter-spacing: -1.5px;
    max-width: 360px;
  }

  .hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    align-items: stretch;
  }

  .hero-actions {
    order: 3;

    position: relative;
    top: auto;
    left: auto;

    width: 100%;

    margin-top: 10px;

    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hero-actions .button {
    flex: 1;

    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    font-size: 14px;
    font-weight: 800;
  }

  .hero-actions .text-link {
    white-space: nowrap;
    font-size: 13px;
  }

  /* ORDER NOW - Primary CTA */
  .hero-cta .btn-primary {
    flex: 1.35;
    min-height: 54px;
    font-size: 15px;
    font-weight: 800;
    padding: 0 20px;

    box-shadow: 0 10px 28px rgba(142, 190, 76, 0.28);
  }

  /* Explore Benefits ko secondary rakho */
  .hero-cta .btn-secondary {
    flex: 0.9;
    min-height: 54px;
    font-size: 13px;
    padding: 0 12px;
    opacity: 0.9;
  }

  .hero-text {
    font-size: 15px;
    max-width: 470px;
  }

  .hero-points {
    order: 4;

    position: relative;
    top: auto;
    left: auto;

    width: 100%;

    margin-top: 22px;

    display: flex;
    justify-content: space-between;
    gap: 10px;

    font-size: 11px;
  }

  .hero-note {
    display: none;
  }
  .hero-product {
    order: 2;

    position: relative;
    top: auto;
    right: auto;

    width: 100%;
    height: 300px;

    margin: 10px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-product img {
    width: 100%;
    max-width: 330px;
    height: 100%;
    object-fit: contain;
  }
  .sun {
    width: 300px;
    height: 300px;
  }
  .roundel {
    height: 92px;
    width: 92px;
    right: 15%;
    bottom: 5px;
  }

  .intro-grid,
  .problems-wrap,
  .ingredients-heading,
  .ritual-wrap,
  .for-you-grid,
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-badges {
    max-width: 100%;
  }
  .pain-grid {
    gap: 14px;
  }
  .intro-grid p,
  .ingredients-heading p {
    padding: 0;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
  }
  .problems {
    padding: 80px 0;
  }
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
  }
  .ritual {
    padding: 85px 0;
  }
  .for-you {
    /* padding: 85px 0; */
  }
  .faq {
    /* padding: 80px 24px; */
  }
  .order-wrap {
    padding-top: 80px;
    min-height: 500px;
    align-items: flex-start;
  }
  /* .product-card {
    position: absolute;
    right: 35px;
    top: -59px;
    transform: scale(0.72);
    transform-origin: bottom right;
  } */

  .order-wrap > div:first-child {
    max-width: 430px;
  }

  footer {
    flex-wrap: wrap;
    gap: 15px;
  }
  footer p {
    width: 100%;
    order: 3;
  }
  /* footer > span {
    margin-left: auto;
  } */
}
@media (max-width: 480px) {
  h1 {
    font-size: 3.15rem;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .feature-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    min-height: 810px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-points {
    gap: 10px;
    margin-top: 40px;
    font-size: 11px;
    flex-direction: column;
  }

  .roundel {
    right: 10%;
    bottom: 52px;
  }
  .benefit-grid {
    gap: 14px;
  }
  .benefit-grid h3 {
    font-size: 18px;
  }
  .ingredient-grid div {
    padding: 22px 16px;
    min-height: 108px;
  }
  .ingredient-grid b {
    font-size: 18px;
  }
  .order-wrap {
    min-height: 720px;
  }
  .order .button {
    margin-top: 5px;
  }
  .topbar {
    font-size: 10px;
  }
}
/* .product-card {
  width: 300px;
  height: 425px;
  min-height: 0;
  padding: 0;
  display: block;
} */
.product-card > span {
  z-index: 3;
  top: 16px;
  right: 17px;
  padding: 5px 8px;
  border-radius: 20px;
  background: rgba(255, 252, 245, 0.9);
  color: #406842;
}
.product-card img {
  top: 15px;
  left: 18px;
  width: 264px;
  height: 266px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  filter: saturate(0.88);
}
.product-card div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 48px;
  padding: 17px 20px 0;
  border-top: 1px solid #dde1d3;
  background: #f5f3e8;
}
.product-card strong {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 20px;
  margin: 0;
}
.product-card b {
  font-size: 21px;
}
.site-header {
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    top 0.25s ease;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(13, 33, 22, 0.97);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.18);
}
.order-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 0;
  border-radius: 10px;
  padding: 28px;
  background: #fffcf5;
  color: #183422;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.order-dialog::backdrop {
  background: rgba(8, 24, 13, 0.72);
  backdrop-filter: blur(4px);
}
.order-dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.order-dialog h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 3px;
}
.dialog-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #74974d;
}
.close-order {
  border: 1px solid #d3dac7;
  background: #fffdf7;
  color: #234428;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.order-summary {
  margin: 22px 0;
  padding: 13px 0;
  border-top: 1px solid #dbe1d0;
  border-bottom: 1px solid #dbe1d0;
  color: #657462;
}
.order-summary strong {
  float: right;
  color: #426d40;
}
.order-dialog form {
  display: grid;
  gap: 15px;
}
.order-dialog label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #455946;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.order-dialog input,
.order-dialog textarea {
  width: 100%;
  border: 1px solid #d4ddc9;
  border-radius: 4px;
  background: #fffef9;
  padding: 12px;
  font:
    400 14px "DM Sans",
    sans-serif;
  color: #183422;
  outline: none;
}
.order-dialog input:focus,
.order-dialog textarea:focus {
  border-color: #789d51;
  box-shadow: 0 0 0 3px rgba(120, 157, 81, 0.13);
}
.order-dialog textarea {
  min-height: 82px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: #6d7a6b;
  margin: 2px 0;
}
.form-submit {
  justify-content: center;
  width: 100%;
  margin-top: 3px;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}
@media (max-width: 480px) {
  .order-dialog {
    padding: 22px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .order-dialog h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .order-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .order-content {
    order: 1;
  }

  .product-card {
    order: 2;

    width: min(100%, 300px);
    margin: 30px auto 24px;
  }

  .order-button {
    order: 3;

    width: 100%;
    min-height: 56px;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 22px;
    box-sizing: border-box;
  }
}
