@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-bengali-400.woff2") format("woff2");
  unicode-range: U+0951-0952, U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8,
    U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}

@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-bengali-600.woff2") format("woff2");
  unicode-range: U+0951-0952, U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8,
    U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}

@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-bengali-700.woff2") format("woff2");
  unicode-range: U+0951-0952, U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8,
    U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}

@font-face {
  font-family: "Hind Siliguri";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/hind-siliguri-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #267c36;
  --deep-green: #06491f;
  --leaf: #12843c;
  --maroon: #67101c;
  --gold: #f0b918;
  --line: #d8d8d8;
  --text: #111111;
  --muted: #616161;
  --soft: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ecefed;
  color: var(--text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Nirmala UI", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.phone-frame {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 16px 46px rgba(8, 51, 28, 0.12);
}

.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.72) 58%, rgba(250, 246, 228, 0.62)),
    #fffdf5;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("/assets/hero-pattern.svg") center top / cover no-repeat;
  opacity: 0.42;
}

.promise-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(19, 87, 47, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(19, 87, 47, 0.035) 87.5%, rgba(19, 87, 47, 0.035)),
    linear-gradient(150deg, rgba(19, 87, 47, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(19, 87, 47, 0.035) 87.5%, rgba(19, 87, 47, 0.035));
  background-size: 18px 31px;
  opacity: 0.55;
}

.hero-border {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 168px;
  overflow: hidden;
  transform: translateX(-50%);
  background-image: url("/assets/top-border-fast.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 168px;
  z-index: 1;
}

.hero-border::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("/assets/hero-pattern.svg") center top / auto 500px no-repeat;
  clip-path: polygon(
    0 43%,
    9% 49%,
    18% 49%,
    28% 40%,
    39% 25%,
    49% 16%,
    58% 23%,
    68% 38%,
    78% 50%,
    85% 49%,
    92% 34%,
    100% 16%,
    100% 100%,
    0 100%
  );
  opacity: 0.42;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 93px 24px 26px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  padding: 5px 14px 4px;
  border-bottom: 3px solid var(--gold);
  border-radius: 4px;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 5px 12px rgba(20, 91, 42, 0.16);
}

.hero-content h1 {
  margin: 0;
  color: #020202;
  font-size: clamp(24px, 6.65vw, 31px);
  font-weight: 800;
  line-height: 1.38;
  text-shadow: 0 1px 0 #ffffff;
}

.hero-offer-label {
  margin: 25px 0 12px;
  color: #050505;
  font-size: 22px;
  font-weight: 800;
}

.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(322px, 100%);
  min-height: 68px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
}

.countdown::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: -96px;
  top: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffc626 24%,
    #fff7cc 43%,
    #ffffff 55%,
    #2b7534 78%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(255, 198, 38, 0.9),
    0 0 11px rgba(43, 117, 52, 0.55);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
  pointer-events: none;
  animation: orbit-border 3s linear infinite;
}

.count-box {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 10px 4px 8px;
  color: #ffffff;
  line-height: 1;
}

@keyframes orbit-border {
  0% {
    left: -96px;
    top: 0;
    transform: translateY(-50%) rotate(0deg);
  }

  24% {
    left: 100%;
    top: 0;
    transform: translate(-8px, -50%) rotate(0deg);
  }

  25% {
    left: 100%;
    top: 0;
    transform: translate(-50%, -8px) rotate(90deg);
  }

  49% {
    left: 100%;
    top: 100%;
    transform: translate(-50%, -8px) rotate(90deg);
  }

  50% {
    left: 100%;
    top: 100%;
    transform: translate(-8px, -50%) rotate(180deg);
  }

  74% {
    left: -96px;
    top: 100%;
    transform: translateY(-50%) rotate(180deg);
  }

  75% {
    left: 0;
    top: 100%;
    transform: translate(-50%, -8px) rotate(270deg);
  }

  99% {
    left: 0;
    top: 0;
    transform: translate(-50%, -8px) rotate(270deg);
  }

  100% {
    left: -96px;
    top: 0;
    transform: translateY(-50%) rotate(0deg);
  }
}

.count-box strong {
  display: block;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.count-box span {
  display: block;
  margin-top: 3px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
}

.count-days {
  background: #247b35;
}

.count-hours {
  background: #ffc626;
  color: #000000;
}

.count-seconds {
  background: #670000;
}

.small-cta,
.payment-cta,
.confirm-btn {
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 91, 42, 0.16);
}

.custom-order-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  min-height: 50px;
  background-color: #2b7534;
  color: #ffffff;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 5px;
  line-height: 1;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.custom-order-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate3d(0, 0, 0) skewX(-20deg);
  will-change: transform;
  animation: port_buffer_swipe_v712 1.5s ease 0.5s infinite;
}

.custom-order-button:hover {
  background-color: #235d2a;
}

.main-cta {
  margin-top: 24px;
}

.scroll-double-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px 0;
  pointer-events: none;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.round-arrow {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-right: 2.5px solid #111111;
  border-bottom: 2.5px solid #111111;
  border-radius: 3px;
  animation: double-bounce 1.8s infinite ease-in-out;
}

.arrow-2 {
  animation-delay: 0.2s;
}

@keyframes port_buffer_swipe_v712 {
  0% {
    transform: translate3d(0, 0, 0) skewX(-20deg);
  }

  100% {
    transform: translate3d(400%, 0, 0) skewX(-20deg);
  }
}

@keyframes double-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.2;
  }

  50% {
    transform: translateY(10px) rotate(45deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-order-button::before,
  .round-arrow {
    animation: none;
  }
}

.promise-section {
  position: relative;
  padding: 18px 10px 16px;
  background: #ffffff;
  text-align: center;
}

.promise-section,
.poster-section,
.orchard-section,
.reviews-section,
.video-section,
.contact-section,
.checkout-panel {
  content-visibility: auto;
}

.promise-section {
  contain-intrinsic-size: auto 130px;
}

.poster-section {
  contain-intrinsic-size: auto 760px;
}

.orchard-section {
  contain-intrinsic-size: auto 760px;
}

.reviews-section {
  contain-intrinsic-size: auto 620px;
}

.video-section {
  contain-intrinsic-size: auto 350px;
}

.contact-section {
  contain-intrinsic-size: auto 750px;
}

.checkout-panel {
  contain-intrinsic-size: auto 1300px;
}

.promise-section h2,
.orchard-section h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #030303;
  font-size: clamp(24px, 6.4vw, 29px);
  font-weight: 800;
  line-height: 1.22;
}

.orchard-section h2 {
  font-size: clamp(22px, 6.1vw, 27px);
}

.promise-section h2::after,
.orchard-section h2::after {
  content: "";
  display: block;
  width: min(292px, 86%);
  height: 14px;
  margin: 5px auto 0;
  border-top: 4px solid var(--maroon);
  border-radius: 50%;
}

.promise-section span,
.orchard-section span {
  color: #195c37;
}

.poster-section {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 14px 12px 26px;
  background: #ffffff;
}

.poster-section[hidden] {
  display: none;
}

.package-showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 565px;
  padding: 24px 14px 18px;
  border: 2px solid #8fbb75;
  border-radius: 7px;
  background:
    repeating-radial-gradient(ellipse at 50% 0%, transparent 0 15px, rgba(60, 139, 42, 0.07) 16px 17px),
    linear-gradient(180deg, #dff7cc 0%, #f7faea 62%, #fffdf4 100%);
  text-align: center;
  isolation: isolate;
}

.default-showcase-content {
  display: contents;
}

.custom-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.package-showcase.has-custom-image {
  min-height: 0;
  padding: 0;
  border-color: #19833f;
  background: #ffffff;
}

.package-showcase.has-custom-image::before,
.package-showcase.has-custom-image::after,
.package-showcase.has-custom-image .default-showcase-content {
  display: none;
}

.package-showcase.has-custom-image .custom-showcase-image {
  display: block;
}

.package-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 70px;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 255, 249, 0.94);
  transform: translateX(-50%);
}

.package-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -30px;
  top: -16px;
  width: 150px;
  height: 110px;
  background:
    radial-gradient(ellipse at 62% 50%, rgba(70, 153, 39, 0.28) 0 15%, transparent 16%),
    radial-gradient(ellipse at 28% 28%, rgba(48, 130, 37, 0.2) 0 13%, transparent 14%);
  transform: rotate(-18deg);
}

.showcase-gi-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-content: center;
  width: 72px;
  height: 72px;
  border: 4px double #b4832a;
  border-radius: 50%;
  background: #fffefa;
  color: #9a6a1c;
  box-shadow: 0 4px 12px rgba(97, 91, 39, 0.14);
  line-height: 1;
}

.showcase-gi-badge span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 800;
}

.showcase-gi-badge small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
}

.package-showcase-copy span {
  color: #151515;
  font-size: 26px;
  font-weight: 600;
}

.package-showcase-copy h2 {
  margin: 0;
  color: #4aa913;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.02;
}

.package-showcase-copy h2 small {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
}

.package-showcase-copy p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: #111111;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.package-showcase-copy p i {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px 10px 12px 12px;
  background: #58c634;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
}

.showcase-mango-stage {
  position: relative;
  width: min(340px, 92%);
  margin: -2px auto 0;
}

.showcase-mango-stage::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  height: 20px;
  border-radius: 50%;
  background: rgba(52, 85, 28, 0.22);
  filter: blur(9px);
}

.package-showcase .showcase-mango {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 12px 12px rgba(31, 92, 43, 0.16));
}

.showcase-call {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  justify-items: end;
  color: #173d1c;
  line-height: 1;
}

.showcase-call span {
  font-size: 14px;
  font-weight: 700;
}

.showcase-call a {
  margin-top: 5px;
  color: #3aa422;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
}

.small-cta {
  margin-top: 34px;
  margin-bottom: 34px;
}

.orchard-section {
  padding: 23px 8px 26px;
  background: #ffffff;
  text-align: center;
}

.orchard-carousel {
  width: 100%;
  margin-top: 20px;
}

.orchard-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 4px solid #267c36;
  border-radius: 6px;
  background: #e9f3df;
}

.orchard-slider-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.45s ease;
  touch-action: pan-y;
  cursor: grab;
}

.orchard-slider-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.orchard-slider-track.no-transition {
  transition: none;
}

.orchard-slide {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(430px, 108vw, 460px);
  margin: 0;
  overflow: hidden;
  background: #e9f3df;
}

.orchard-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.orchard-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.orchard-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8d6bc;
  cursor: pointer;
}

.orchard-slider-dots button[aria-current="true"] {
  width: 25px;
  background: #267c36;
}

.delivery-strip {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 28px;
}

.delivery-order-cta {
  margin-top: 46px;
  margin-bottom: 18px;
}

.reviews-section {
  overflow: hidden;
  padding: 0 7px 28px;
  border: 1px solid #dedede;
  border-radius: 7px;
  background: #ffffff;
  text-align: center;
}

.review-trust-intro {
  position: relative;
  z-index: 2;
  padding: 30px 12px 0;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(38, 124, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 124, 54, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}

.review-trust-intro h2 {
  max-width: 360px;
  margin: 0 auto;
  color: #333333;
  font-size: clamp(28px, 7.2vw, 34px);
  font-weight: 800;
  line-height: 1.08;
}

.review-trust-intro h2 span {
  color: #2c8b2f;
}

.review-trust-badge {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 62px minmax(84px, 1fr);
  align-items: center;
  width: min(100%, 358px);
  min-height: 72px;
  margin: 22px auto -36px;
  padding: 7px 14px 7px 10px;
  border: 1px solid #65a928;
  border-radius: 999px;
  background: #efffd5;
  box-shadow: 0 8px 20px rgba(32, 104, 38, 0.12);
}

.review-trust-avatars {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.review-trust-avatars img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid #efffd5;
  border-radius: 50%;
  object-fit: cover;
}

.review-trust-avatars img:first-child {
  margin-left: 0;
}

.review-rating-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: -4px;
  border-radius: 50%;
  background: #2e8b11;
  color: #ffffff;
  line-height: 1;
}

.review-rating-mark strong {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.review-rating-mark small {
  margin-top: -5px;
  font-size: 14px;
  font-weight: 700;
}

.review-trust-copy {
  display: grid;
  justify-items: start;
  padding-left: 8px;
  color: #172313;
  line-height: 1;
}

.review-trust-copy strong {
  font-size: 17px;
  font-weight: 800;
}

.review-trust-copy span {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 500;
}

.review-carousel {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 54px 7px 26px;
  border: 1px solid #a8cf74;
  border-radius: 22px 22px 7px 7px;
  background: #f3ffe2;
}

.review-carousel h3 {
  max-width: 330px;
  margin: 0 auto 18px;
  color: #101010;
  font-size: clamp(23px, 6.2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}

.review-carousel h3 span {
  color: #1f6c42;
}

.review-slider-viewport {
  overflow: hidden;
  border: 1px solid #dde5ea;
  border-radius: 6px;
  background: #ffffff;
}

.review-slider-track {
  display: grid;
  transform: none;
}

.review-slider-track.no-transition {
  transition: none;
}

.review-slide {
  grid-area: 1 / 1;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px);
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease,
    visibility 0s linear 0.38s;
}

.review-slide[aria-hidden="false"] {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.review-card {
  min-height: 126px;
  text-align: left;
}

.review-head {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 17px 20px 10px;
  border-bottom: 1px solid #e8edf0;
}

.review-head img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.review-head strong {
  display: block;
  color: #333333;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.review-head span {
  display: block;
  margin-top: 2px;
  color: #ffa322;
  font-size: 18px;
  letter-spacing: 1px;
}

.review-head i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #3568b9;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  padding: 9px 18px 20px;
  color: #545454;
  font-size: 19px;
  line-height: 1.32;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 22px;
}

.review-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfcfcf;
  cursor: pointer;
}

.review-slider-dots button[aria-current="true"] {
  width: 24px;
  background: #267c36;
}

@media (max-width: 380px) {
  .review-trust-badge {
    grid-template-columns: auto 54px minmax(72px, 1fr);
    padding-right: 10px;
  }

  .review-trust-avatars img {
    width: 36px;
    height: 36px;
  }

  .review-rating-mark {
    width: 52px;
    height: 52px;
  }

  .review-trust-copy strong {
    font-size: 15px;
  }

  .review-trust-copy span {
    font-size: 19px;
  }
}

.video-section {
  padding: 28px 12px 34px;
  background: #ffffff;
  text-align: center;
}

.video-section[hidden] {
  display: none;
}

.video-section h2 {
  margin: 0 0 16px;
  color: var(--deep-green);
  font-size: clamp(24px, 6vw, 29px);
  font-weight: 800;
  line-height: 1.2;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid #267c36;
  border-radius: 8px;
  background: #0c1b10;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-order-cta {
  margin-top: 24px;
}

.contact-section {
  padding: 0 1px 10px;
  background: #ffffff;
}

.contact-card {
  margin: 0 0 17px;
  padding: 14px 18px 17px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  text-align: center;
}

.contact-card p {
  margin: 0;
  color: #181818;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.48;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}

.contact-actions a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-actions a:first-child {
  background: #e2a208;
}

.contact-actions a:last-child {
  background: var(--green);
}

.price-promise-heading {
  margin: 25px 10px 20px;
  color: #030303;
  font-size: clamp(23px, 6.2vw, 28px);
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.price-promise-heading span {
  color: #195c37;
}

.price-promise-heading::after {
  content: "";
  display: block;
  width: min(292px, 86%);
  height: 14px;
  margin: 5px auto 0;
  border-top: 4px solid var(--maroon);
  border-radius: 50%;
}

.price-table-panel {
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid #bdd4bd;
  border-radius: 7px;
  background: #f9fcf7;
}

.price-table-panel h2 {
  margin: 3px 0 11px;
  color: #0b5428;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.price-table-head,
.price-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 1fr 0.9fr;
  align-items: center;
  gap: 3px;
}

.price-table-head {
  padding: 8px 4px;
  border-radius: 5px 5px 0 0;
  background: #126f31;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.price-table-row {
  min-height: 76px;
  padding: 7px 4px;
  border-right: 1px solid #d9e4d7;
  border-bottom: 1px solid #d9e4d7;
  border-left: 1px solid #d9e4d7;
  background: #ffffff;
  text-align: center;
}

.price-table-row.featured {
  background: #edf9e8;
}

.price-package {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-package strong {
  font-family: Arial, sans-serif;
  font-size: 18px;
  white-space: nowrap;
}

.price-table-row del {
  color: #242424;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration-color: #e52323;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}

.price-table-row .current-price {
  color: #075124;
  font-family: Arial, sans-serif;
  font-size: 19px;
  white-space: nowrap;
}

.price-table-row .price-saving {
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  min-width: 52px;
  padding: 7px 5px;
  border: 2px solid #e9ad07;
  border-radius: 999px;
  background: linear-gradient(#ffd94c, #ffc320);
  color: #553900;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(139, 98, 0, 0.18);
}

.payment-cta {
  display: block;
  width: 100%;
  min-height: 55px;
  margin: 17px 0 10px;
  padding: 12px 14px;
  border-radius: 2px;
  font-size: 19px;
}

.checkout-entry-cta {
  display: flex;
  margin: 24px auto 20px;
}

.checkout-panel {
  padding: 24px 12px 32px;
  background: #ffffff;
}

.checkout-intro {
  margin: 0 0 24px;
  padding: 24px 18px 28px;
  border-radius: 10px 10px 0 0;
  background: #087844;
  color: #ffffff;
  text-align: center;
}

.checkout-intro-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #ffffff;
  color: #087844;
  font-family: Arial, sans-serif;
  font-size: 29px;
  line-height: 1;
}

.checkout-panel .checkout-intro h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.checkout-intro p {
  max-width: 370px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.checkout-panel h2 {
  margin: 0 0 20px;
  color: #222222;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.product-block h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.form-block {
  margin: 0 0 38px;
  padding: 0 10px;
}

.product-block {
  padding: 0;
}

.product-options {
  display: grid;
  gap: 12px;
}

.product-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 38px auto;
  align-items: center;
  min-height: 112px;
  padding: 14px 14px 14px 10px;
  gap: 10px;
  border: 2px solid #dce5ee;
  border-radius: 10px;
  background: #ffffff;
  color: #222222;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-row.selected {
  border-color: #08a66d;
  background: #effaf6;
  box-shadow: 0 8px 20px rgba(8, 133, 85, 0.08);
}

.product-radio {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.product-select {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  cursor: pointer;
}

.product-thumb {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 4px;
  background: #e8f3de;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.25);
}

.product-name {
  min-width: 0;
  line-height: 1.3;
}

.product-name strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.product-name small {
  display: block;
  margin-top: 4px;
  color: #303a34;
  font-size: 14px;
  font-weight: 700;
}

.quantity-control {
  display: grid;
  grid-template-rows: repeat(3, 28px);
  width: 38px;
  overflow: hidden;
  border: 1px solid #ccd5d0;
  border-radius: 5px;
  background: #ffffff;
}

.quantity-control button,
.quantity-control output {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #ffffff;
  color: #34423a;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:hover {
  background: #eef7f2;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.quantity-control output {
  border-top: 1px solid #e1e6e3;
  border-bottom: 1px solid #e1e6e3;
  font-size: 15px;
}

.product-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 42px;
  padding: 8px 9px;
  border-radius: 5px;
  background: #087844;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #242424;
}

.field-label span {
  color: #d41111;
}

.checkout-panel input[type="text"],
.checkout-panel input[type="tel"] {
  display: block;
  width: 100%;
  height: 52px;
  margin: 0 0 22px;
  padding: 10px 14px;
  border: 1px solid #87b99f;
  border-radius: 5px;
  color: #222222;
  background: #f5fbf8;
  font-size: 15px;
}

.checkout-panel input[type="text"]:focus,
.checkout-panel input[type="tel"]:focus,
.search-input:focus,
.setting-input:focus {
  border-color: var(--green);
  outline: 2px solid rgba(38, 124, 54, 0.18);
}

.order-block {
  margin-top: 48px;
}

.order-block h2 {
  margin-bottom: 14px;
  font-size: 17px;
}

.order-table {
  font-size: 14px;
}

.order-head,
.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #d4d4d4;
}

.order-head {
  border-top: 1px solid #b9b9b9;
  font-weight: 500;
}

.summary-product {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px dashed #d2d2d2;
  border-bottom: 1px dashed #d2d2d2;
}

.summary-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
}

.summary-product strong,
.total-line strong {
  white-space: nowrap;
}

.delivery-fee-line strong {
  color: #087844;
  font-weight: 800;
  text-transform: uppercase;
}

.total-line {
  font-weight: 700;
}

.payment-box {
  margin: 22px 0 8px;
  padding: 16px 14px;
  background: #f4f4f4;
  font-size: 15px;
}

.payment-box p {
  margin: 0 0 10px;
}

.payment-box div {
  padding: 14px;
  background: #e9e9e9;
  color: #223245;
  line-height: 1.5;
}

.form-message {
  min-height: 20px;
  margin: 6px 0;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-message.error {
  color: #b71219;
}

.confirm-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 1px solid #12551f;
  border-radius: 5px;
  font-size: 17px;
}

.confirm-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.thank-you-body {
  min-height: 100vh;
  background: #eef2ee;
}

.thankyou-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px 12px 28px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 16px 46px rgba(8, 51, 28, 0.12);
}

.thankyou-hero {
  padding: 28px 16px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #267c36, #0a4e22);
  color: #ffffff;
  text-align: center;
}

.thankyou-check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.thankyou-hero h1 {
  margin: 0;
  font-size: clamp(25px, 7vw, 32px);
  font-weight: 800;
  line-height: 1.18;
}

.thankyou-hero p {
  margin: 10px 0 12px;
  font-size: 16px;
  font-weight: 500;
}

.thankyou-hero strong {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  word-break: break-all;
}

.thankyou-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #dce5db;
  border-radius: 8px;
  background: #fbfdfb;
}

.thankyou-card h2 {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 19px;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: start;
}

.detail-list.compact div {
  grid-template-columns: 104px 1fr;
}

.detail-list dt {
  color: #5c665e;
  font-size: 13px;
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  word-break: break-word;
}

.thank-product-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.thank-product-row img {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  object-fit: cover;
  transform: scale(1.06);
}

.thank-product-row strong {
  display: block;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.thank-product-row span {
  display: block;
  margin-top: 4px;
  color: #267c36;
  font-size: 15px;
  font-weight: 800;
}

.thank-total-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 7px;
  background: #eff7ef;
  color: var(--deep-green);
}

.thank-total-line span {
  font-size: 17px;
  font-weight: 800;
}

.thank-total-line strong {
  font-size: 24px;
  font-weight: 800;
}

.thankyou-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  padding: 18px 0 4px;
}

.invoice-download-btn {
  width: min(100%, 220px);
  min-height: 54px;
}

.invoice-download-btn:disabled {
  cursor: wait;
  opacity: 0.62;
}

.thank-home-link {
  justify-content: center;
  width: min(100%, 220px);
}

.admin-body {
  min-height: 100vh;
  background: #f2f5f1;
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--deep-green);
  font-size: 28px;
  line-height: 1.2;
}

.admin-topbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-actions,
.setting-actions {
  display: flex;
  gap: 10px;
}

.admin-button,
.admin-link {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat-card,
.dashboard-card {
  border: 1px solid #d9e1d8;
  border-radius: 8px;
  background: #ffffff;
}

.stat-card {
  padding: 16px;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  color: #173d22;
  font-size: 26px;
  line-height: 1;
}

.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.settings-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.4fr);
  gap: 18px;
  padding: 16px;
}

.telegram-settings-panel,
.auth-settings-panel {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
}

.youtube-settings-panel {
  grid-template-columns: minmax(360px, 1.4fr) minmax(220px, 0.8fr);
}

.showcase-upload-panel {
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 0.7fr);
}

.file-input {
  min-height: 44px;
  padding: 7px;
  background: #ffffff;
}

.showcase-admin-preview {
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  border: 1px dashed #9eb8a2;
  border-radius: 7px;
  background: #f5f9f4;
  color: #667268;
  font-size: 13px;
  text-align: center;
}

.showcase-admin-preview img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.gallery-settings-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1.35fr);
  gap: 18px;
  padding: 16px;
}

.gallery-upload-controls {
  align-self: start;
}

.gallery-admin-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-admin-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  border: 1px solid #dce5dc;
  border-radius: 7px;
  background: #fbfdfb;
}

.gallery-admin-item img {
  display: block;
  width: 86px;
  height: 76px;
  border-radius: 5px;
  object-fit: cover;
}

.gallery-admin-item strong,
.gallery-admin-item small {
  display: block;
}

.gallery-admin-item strong {
  color: #173d22;
  font-size: 13px;
}

.gallery-admin-item small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-admin-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 16px;
  border: 1px dashed #9eb8a2;
  border-radius: 7px;
  color: var(--muted);
  text-align: center;
}

.product-settings-panel {
  padding: 16px;
}

.product-settings-head,
.product-setting-row {
  display: grid;
  grid-template-columns: 90px minmax(190px, 1.2fr) minmax(170px, 1fr) minmax(120px, 0.55fr) 90px;
  gap: 12px;
  align-items: center;
}

.product-settings-head {
  padding: 0 10px 9px;
  color: #315238;
  font-size: 12px;
  font-weight: 800;
}

.product-settings-list {
  display: grid;
  gap: 8px;
}

.product-setting-row {
  padding: 10px;
  border: 1px solid #dce5dc;
  border-radius: 7px;
  background: #fbfdfb;
}

.product-setting-row label {
  min-width: 0;
}

.product-default-choice {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #315238;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-default-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.product-setting-mobile-label {
  display: none;
  margin-bottom: 5px;
  color: #315238;
  font-size: 12px;
  font-weight: 800;
}

.product-remove-action {
  width: 100%;
}

.product-remove-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-settings-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.tracking-settings-card {
  grid-column: 1 / -1;
}

.tracking-settings-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 10px 14px;
  padding: 16px;
}

.tracking-settings-panel .setting-help,
.tracking-settings-panel .setting-actions,
.tracking-settings-panel .setting-status {
  grid-column: 1 / -1;
}

.code-textarea {
  min-height: 96px;
  resize: vertical;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.live-countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 7px;
}

.setting-label {
  display: block;
  margin: 0 0 6px;
  color: #315238;
  font-size: 13px;
  font-weight: 800;
}

.setting-input {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid #cfd8cf;
  border-radius: 5px;
}

.setting-actions {
  flex-wrap: wrap;
  margin-top: 12px;
}

.setting-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 700;
}

.setting-help {
  margin: 8px 0 0;
  color: #5c665e;
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-grid-single {
  grid-template-columns: 1fr;
}

.admin-page-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.admin-page-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #d9e1d8;
  border-radius: 8px;
  background: #fbfdfb;
  color: #143f20;
  text-decoration: none;
}

.admin-page-card:hover {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(8, 51, 28, 0.08);
}

.admin-page-card span {
  font-size: 15px;
  font-weight: 800;
}

.admin-page-card strong {
  font-size: 34px;
  line-height: 1;
}

.admin-page-card small,
.table-count {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.dashboard-card {
  overflow: hidden;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e7e1;
}

.card-title h2 {
  margin: 0;
  color: #143f20;
  font-size: 17px;
}

.search-input {
  width: min(100%, 240px);
  height: 34px;
  padding: 6px 10px;
  border: 1px solid #cfd8cf;
  border-radius: 5px;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #edf0ec;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #fbfcfb;
  color: #315238;
  font-weight: 800;
  white-space: nowrap;
}

.admin-table td {
  color: #212121;
}

.pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e6f4e7;
  color: #166124;
  font-size: 12px;
  font-weight: 700;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 112px;
}

.table-action {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.admin-button:disabled,
.table-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid #e2e7e1;
}

.pagination-bar span {
  min-width: 94px;
  color: #315238;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.edit-action {
  background: #246f35;
}

.delete-action {
  background: #9b1f24;
}

.edit-order-dialog {
  width: min(620px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(8, 37, 18, 0.28);
}

.edit-order-dialog::backdrop {
  background: rgba(6, 30, 16, 0.45);
}

.edit-order-form {
  padding: 18px;
  background: #ffffff;
}

.dialog-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.dialog-title h2 {
  margin: 0;
  color: var(--deep-green);
  font-size: 22px;
  line-height: 1.2;
}

.dialog-title p {
  margin: 4px 0 0;
  color: #657064;
  font-size: 12px;
  word-break: break-all;
}

.icon-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #edf2ed;
  color: #153f20;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.edit-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.edit-form-grid label {
  display: grid;
  gap: 6px;
  color: #315238;
  font-size: 13px;
  font-weight: 800;
}

.edit-wide {
  grid-column: 1 / -1;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.subtle-button {
  background: #5f6d63;
}

.empty-state {
  padding: 32px 16px;
  color: var(--muted);
  text-align: center;
}

.login-body {
  display: grid;
  place-items: center;
  padding: 18px;
}

.login-shell {
  width: min(100%, 420px);
}

.login-card {
  border: 1px solid #d9e1d8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(8, 37, 18, 0.12);
  overflow: hidden;
}

.login-title {
  padding: 22px 24px 14px;
  border-bottom: 1px solid #e2e7e1;
}

.login-title h1 {
  margin: 0;
  color: var(--deep-green);
  font-size: 26px;
  line-height: 1.2;
}

.login-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.login-form {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
}

.login-form label {
  display: grid;
  gap: 6px;
  color: #315238;
  font-size: 13px;
  font-weight: 800;
}

.login-button {
  min-height: 44px;
}

@media (max-width: 760px) {
  .poster-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .admin-topbar,
  .admin-actions,
  .settings-panel,
  .tracking-settings-panel,
  .gallery-settings-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .admin-topbar,
  .admin-actions {
    flex-direction: column;
  }

  .stats-grid,
  .dashboard-grid,
  .admin-page-links {
    grid-template-columns: 1fr;
  }

  .edit-form-grid {
    grid-template-columns: 1fr;
  }

  .product-settings-head {
    display: none;
  }

  .product-setting-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 14px;
  }

  .product-setting-mobile-label {
    display: block;
  }

  .product-remove-action {
    width: auto;
    justify-self: start;
  }

  .product-settings-footer {
    justify-content: stretch;
  }

  .product-settings-footer .admin-button {
    flex: 1 1 170px;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .contact-card p {
    font-size: 18px;
  }

  .product-row {
    grid-template-columns: 22px minmax(0, 1fr) 36px;
    padding: 12px 10px 12px 8px;
    gap: 8px;
  }

  .product-select {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px;
  }

  .product-thumb {
    width: 58px;
    height: 58px;
  }

  .product-price {
    grid-column: 2 / -1;
    justify-self: start;
    min-height: 34px;
    margin-top: -2px;
    font-size: 14px;
  }
}
