:root {
  --navy: #11182f;
  --header: #20273f;
  --hero-top: #0c1329;
  --hero-bottom: #11172d;
  --red: #ef233c;
  --red-dark: #c9152a;
  --white: #ffffff;
  --surface: #f5f6f8;
  --text: #172033;
  --muted: #606778;
  --line: #e7e9ee;
  --shadow: 0 18px 45px rgba(17, 24, 47, 0.1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-family: "Hind Siliguri", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.review-viewport:focus-visible {
  outline: 3px solid rgba(239, 35, 60, 0.38);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
}

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

.english-text,
.flash-sale-title,
.countdown-value,
.product-price,
.price,
.sale-eyebrow,
.package-price,
.package-qty-row,
#buttonTotal {
  font-family: "Inter", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #20273f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.header-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.header-wordmark {
  display: block;
  justify-self: center;
  width: clamp(150px, 24vw, 290px);
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.header-spacer {
  justify-self: end;
  width: 52px;
}

.header-logo img,
.header-wordmark {
  object-fit: contain;
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse at 40% 115%,
      rgba(239, 35, 60, 0.24) 0%,
      rgba(239, 35, 60, 0.14) 35%,
      transparent 70%
    ),
    linear-gradient(180deg, var(--hero-top) 0%, var(--hero-bottom) 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -31%;
  width: min(1100px, 120vw);
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%) rotate(-5deg);
  z-index: 0;
}

.hero-section::before {
  background: rgba(119, 31, 58, 0.38);
}

.hero-section::after {
  bottom: -38%;
  width: min(980px, 112vw);
  height: 360px;
  background: rgba(67, 24, 55, 0.42);
  transform: translateX(-42%) rotate(7deg);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 64px 0 58px;
}

.hero-copy {
  text-align: center;
}

.eyebrow,
.sale-eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title,
.description-copy h2,
.review-heading h2,
.order-heading h2 {
  margin: 0;
  font-family: "Hind Siliguri", Arial, sans-serif;
  line-height: 1.25;
  letter-spacing: normal;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.08;
  text-align: center;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title-primary {
  color: var(--white);
}

.hero-title-accent {
  margin-top: 8px;
  color: #ff233f;
  text-shadow:
    0 0 12px rgba(255, 35, 63, 0.38),
    0 0 26px rgba(255, 35, 63, 0.2);
}

.hero-text,
.description-copy > p:not(.eyebrow),
.order-heading > p {
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}

.hero-text {
  max-width: 680px;
  margin: 22px auto 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.primary-btn,
.submit-btn {
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(239, 35, 60, 0.28);
}

.primary-btn:hover,
.submit-btn:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.hero-visual {
  width: min(100%, 480px);
  justify-self: end;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.hero-visual img,
.product-card img,
.package-image,
.review-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature-strip {
  padding-block: 30px;
  background: var(--surface);
}

.service-grid,
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.benefits article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 190px;
  padding: 24px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.benefits article:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 35, 60, 0.4);
  box-shadow: 0 10px 24px rgba(17, 24, 47, 0.08);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f3;
  border-radius: 50%;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: "Hind Siliguri", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.25;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-family: "Hind Siliguri", Arial, sans-serif;
  line-height: 1.55;
}

.description-section,
.products-section,
.review-section,
.order-section {
  padding-block: 56px;
}

.description-section,
.products-section,
.order-section {
  background: var(--white);
}

.description-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.description-copy h2,
.review-heading h2,
.order-heading h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.description-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.benefit-list li {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font: 800 14px/1 "Inter", Arial, sans-serif;
}

.sale-header {
  margin-bottom: 28px;
}

.sale-title-group {
  width: 100%;
}

.sale-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sale-main-row h2 {
  margin: 0;
}

.flash-sale-title {
  color: var(--navy);
  font-size: clamp(2.15rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.sale-countdown {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
  text-align: right;
}

.sale-countdown span {
  color: #687084;
  font-family: "Hind Siliguri", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
}

.sale-countdown strong {
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.product-image-link {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background: var(--white);
}

.product-card img {
  height: 100%;
  transition: transform 250ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-title {
  display: block;
  margin: 11px 12px 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.product-card:hover .product-title,
.product-title:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.product-price {
  display: block;
  margin: 0 12px 14px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.review-section {
  background: var(--surface);
}

.review-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.review-carousel {
  --review-visible: 3;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
}

.review-viewport {
  overflow: hidden;
  min-width: 0;
}

.review-track {
  display: flex;
  gap: 16px;
  transition: transform 420ms ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - (16px * (var(--review-visible) - 1))) / var(--review-visible));
  min-width: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 24, 47, 0.08);
}

.review-slide img {
  border-radius: 10px;
}

.review-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  font: 700 28px/1 "Inter", Arial, sans-serif;
}

.review-arrow:hover {
  background: var(--red);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9ced8;
}

.review-dots button.is-active {
  background: var(--red);
}

.order-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.order-heading > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.checkout-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-selection-card,
.customer-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-section-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.form-section-title > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 700;
}

.form-section-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.form-section-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.order-form {
  display: contents;
}

fieldset {
  border: 0;
  margin: 0 0 18px;
  padding: 0;
}

.size-selector-list legend {
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}

.required {
  color: var(--red);
}

.size-selector-list {
  display: grid;
  gap: 8px;
}

.size-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
}

.size-list-item input {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.package-options {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.package-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid #d9dde5;
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.package-card:has(input:checked) {
  border-color: var(--red);
  background: #fff7f8;
  box-shadow: 0 10px 22px rgba(239, 35, 60, 0.1);
}

.package-card > input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--red);
}

.package-card-body {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.package-image-stack {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 6px;
  background: var(--surface);
  border-radius: 8px;
}

.package-content {
  min-width: 0;
}

.package-content h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.package-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 6px;
}

.package-qty-row button,
.package-qty-row output {
  width: 40px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd0d8;
  border-radius: 7px;
  background: #f1f2f4;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
}

.package-qty-row output {
  background: var(--white);
}

.package-qty-row button:hover {
  color: var(--white);
  background: var(--navy);
}

.package-price {
  margin: 0;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 800;
}

.change-product-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

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

.form-group,
.form-field,
.input-group,
.field-wrapper,
.field {
  border: 0;
  display: block;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.form-group:focus-within,
.form-field:focus-within,
.input-group:focus-within,
.field-wrapper:focus-within,
.field:focus-within {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.form-group::before,
.form-group::after,
.form-field::before,
.form-field::after,
.input-group::before,
.input-group::after,
.field-wrapper::before,
.field-wrapper::after,
.field::before,
.field::after {
  content: none;
}

.field span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #d8dde6;
  border-radius: 8px;
  outline: none;
  outline-width: 0;
  outline-style: none;
  outline-offset: 0;
  box-shadow: none;
  resize: vertical;
}

.field textarea {
  min-height: 90px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  outline: none;
  outline-width: 0;
  outline-style: none;
  outline-offset: 0;
  box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
}

.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: var(--red);
}

body.form-was-validated .field input:invalid,
body.form-was-validated .field textarea:invalid,
body.form-was-validated .field select:invalid {
  border-color: var(--red);
}

.full-width {
  grid-column: 1 / -1;
}

.order-summary {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
}

.order-summary-card {
  width: 100%;
  margin-top: 24px;
}

.customer-info-card + .order-summary-card {
  margin-top: 24px;
}

.order-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}

.order-summary strong {
  text-align: right;
}

.order-summary .grand-total {
  margin-top: 6px;
  padding-top: 12px;
  font-size: 20px;
  border-top: 1px solid var(--line);
}

.order-summary .grand-total strong {
  color: var(--red);
}

.order-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.terms-check input {
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--red);
}

.submit-btn {
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--red);
  font-size: 16px;
}

.security-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

footer {
  display: grid;
  place-items: center;
  padding: 20px 16px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(9, 13, 26, 0.78);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(480px, 100%);
  position: relative;
  padding: 34px 26px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 28px;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
}

.modal-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
}

.modal-card p {
  color: var(--muted);
}

.reveal {
  animation: fadeUp 0.55s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .description-card,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-carousel {
    --review-visible: 2;
  }
}

@media (max-width: 768px) {
  .description-section,
  .products-section,
  .review-section,
  .order-section {
    padding-block: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 46px 0 42px;
  }

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

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

  .full-width {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 66px;
    width: min(100% - 24px, 1180px);
    gap: 10px;
  }

  .header-logo img {
    height: 42px;
  }

  .header-wordmark {
    width: clamp(150px, 24vw, 290px);
  }

  .header-spacer {
    width: 42px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .hero-title {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .hero-title-accent {
    margin-top: 8px;
  }

  .description-section,
  .products-section,
  .review-section,
  .order-section {
    padding-block: 34px;
  }

  .feature-strip {
    padding-block: 24px;
  }

  .service-grid,
  .benefits,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card,
  .benefits article {
    min-height: 178px;
    padding: 18px 14px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .benefits h3 {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
  }

  .benefits p {
    font-size: 0.86rem;
  }

  .description-card,
  .product-selection-card,
  .customer-panel {
    padding: 16px;
    border-radius: 14px;
  }

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

  .sale-main-row {
    gap: 12px;
  }

  .sale-main-row h2 {
    font-size: 2rem;
  }

  .sale-countdown {
    display: block;
    text-align: right;
  }

  .sale-countdown span {
    display: block;
    font-size: 0.8rem;
  }

  .sale-countdown strong {
    font-size: 1.45rem;
  }

  .product-image-link {
    padding: 8px;
  }

  .product-title {
    margin-inline: 8px;
    font-size: 13px;
  }

  .product-price {
    font-size: 14px;
  }

  .review-carousel {
    --review-visible: 1;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .review-arrow {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .package-card {
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .package-card-body {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .sale-main-row {
    gap: 8px;
  }

  .sale-main-row h2 {
    font-size: 1.72rem;
  }

  .sale-countdown strong {
    font-size: 1.25rem;
  }

  .service-card,
  .benefits article {
    min-height: 174px;
    padding: 16px 12px;
  }

  .package-card-body {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .package-qty-row button,
  .package-qty-row output {
    width: 36px;
    height: 36px;
  }
}

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

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

  .service-card,
  .benefits article {
    padding-inline: 9px;
  }

  .benefits h3 {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .benefits p {
    font-size: 0.8rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }
}

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

@media (min-width: 1024px) {
  .header-inner {
    min-height: 108px;
    grid-template-columns: 1fr auto 1fr;
  }

  .header-logo img {
    width: auto;
    height: 92px;
    max-width: 120px;
    object-fit: contain;
  }

  .description-section .container {
    width: min(1720px, calc(100% - 32px));
  }

  .description-card {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.6fr);
    align-items: center;
    gap: 48px;
  }

  .benefit-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
  }

  .benefit-list li {
    width: 100%;
    min-width: 0;
    min-height: 180px;
    padding: 28px 22px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 16px;
    font-size: 1.15rem;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .benefit-list li::before {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin-right: 0;
  }
}
