@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --premium-bg: #f6f8f9;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text-strong: #0f1720;
  --text-muted: #53606d;
  --line-soft: rgba(15, 23, 32, 0.1);
  --hero-shadow: 0 20px 45px rgba(9, 18, 28, 0.2);
  --card-shadow: 0 14px 34px rgba(17, 31, 25, 0.1);
}

.product-page {
  font-family: "Hind Siliguri", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, hsl(var(--base) / 0.2), transparent 38%),
    radial-gradient(circle at 90% 5%, hsl(var(--base) / 0.12), transparent 45%),
    var(--premium-bg);
  color: var(--text-strong);
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page h4,
.product-page h5,
.product-page h6,
.product-page .btn {
  font-family: "Sora", "Hind Siliguri", sans-serif;
}

.product-page .header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--base) / 0.12);
}

.product-page .header-content {
  padding: 14px 0;
}

.product-page .btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.product-page .btn--base {
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  background-blend-mode: multiply;
  box-shadow: 0 10px 24px hsl(var(--base) / 0.35);
}

.product-page .banner-section {
  background:
    linear-gradient(135deg, rgba(5, 14, 24, 0.86), rgba(5, 14, 24, 0.76)),
    linear-gradient(
      120deg,
      color-mix(in srgb, hsl(var(--base)) 82%, #000 18%) 0%,
      color-mix(in srgb, hsl(var(--base)) 62%, #fff 38%) 100%
    );
  position: relative;
  overflow: hidden;
}

.product-page .banner-section::before,
.product-page .banner-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.product-page .banner-section::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.product-page .banner-section::after {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: -110px;
  background:
    radial-gradient(
      circle at 45% 45%,
      color-mix(in srgb, hsl(var(--base)) 70%, #000 30%),
      hsl(var(--base) / 0.12)
    );
}

.product-page .banner-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  margin: 0 auto;
  max-width: 940px;
  text-align: center;
}

.product-page .banner-content__title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.product-page .banner-content__desc {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 780px;
  margin: 0 auto 24px;
}

.product-page .banner-content__highlight {
  background: hsl(var(--base) / 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 1rem;
  padding: 12px 18px;
  box-shadow: var(--hero-shadow);
}

.product-page .price-callout {
  background: var(--surface);
  border: 1px solid hsl(var(--base) / 0.18);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: clamp(20px, 3vw, 30px);
}

.product-page .deal-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

.product-page .deal-card__media {
  height: 100%;
  background: linear-gradient(140deg, hsl(var(--base) / 0.08), rgba(255, 255, 255, 0.6));
}

.product-page .deal-card__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.product-page .deal-card__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 42px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.92));
}

.product-page .deal-card .price-callout {
  width: 100%;
  max-width: 460px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.product-page .discount-content__price {
  margin-bottom: 20px;
  gap: 10px;
  flex-direction: column;
}

.product-page .discount-content__price span {
  color: #12212e;
  color: color-mix(in srgb, hsl(var(--base)) 72%, #12212e 28%);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.2;
}

.product-page .discount-content__price small {
  margin-top: 6px;
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  color: color-mix(in srgb, hsl(var(--base)) 60%, #000 40%);
}

.product-page .deal-card__cta {
  min-width: 190px;
  min-height: 54px;
  font-size: 1.06rem;
}

.product-page .video-item {
  border-radius: 18px;
  border: 1px solid hsl(var(--base) / 0.12);
  box-shadow: var(--card-shadow);
  background: linear-gradient(
    145deg,
    hsl(var(--base) / 0.06),
    color-mix(in srgb, hsl(var(--base)) 26%, #fff 74%)
  );
}

.product-page .common-section .container > .row {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid hsl(var(--base) / 0.12);
  box-shadow: var(--card-shadow);
  border-radius: 20px;
  padding: clamp(14px, 2.5vw, 28px);
}

.product-page .section-title-highlight {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.product-page .common-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-page .common-section ul li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  padding: 10px 0;
  border-bottom: 1px dashed hsl(var(--base) / 0.2);
}

.product-page .common-section ul li:last-child {
  border-bottom: 0;
}

.product-page .ularrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  margin-top: 1px;
}

.product-page .benefits-section {
  position: relative;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, hsl(var(--base)) 42%, #000 58%),
      color-mix(in srgb, hsl(var(--base)) 54%, #000 46%)
    ) !important;
  overflow: hidden;
}

.product-page .benefits-section.bg-img {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, hsl(var(--base)) 42%, #000 58%),
      color-mix(in srgb, hsl(var(--base)) 54%, #000 46%)
    ) !important;
}

.product-page .benefits-section::before,
.product-page .benefits-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.product-page .benefits-section::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -90px;
  background: rgba(255, 255, 255, 0.12);
}

.product-page .benefits-section::after {
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: -110px;
  background: rgba(0, 0, 0, 0.14);
}

.product-page .benefits-section .container {
  position: relative;
  z-index: 2;
}

.product-page .benefits-section .container > .row {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.product-page .benefits-section .section-title-highlight {
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.product-page .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.product-page .benefits-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  padding: clamp(15px, 2vw, 20px) 12px 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease;
}

.product-page .benefits-list li:last-child {
  border-bottom: 0;
}

.product-page .benefits-list li:hover {
  transform: translateX(4px);
}

.product-page .benefits-list .ularrow {
  min-width: 28px;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.product-page .order-section {
  scroll-margin-top: 90px;
}

.product-page .order-section h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-page .order-unified-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  box-shadow: 0 16px 34px rgba(6, 20, 16, 0.12);
  padding: clamp(14px, 2vw, 22px);
}

.product-page .order-unified-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.08);
  transform: translate(-40%, -45%);
  z-index: -1;
}

.product-page .order-layout {
  margin: 0;
}

.product-page .order-pane {
  height: 100%;
  padding: clamp(2px, 0.8vw, 10px);
}

.product-page .order-pane--summary {
  border-left: 1px solid hsl(var(--base) / 0.14);
  padding-left: clamp(18px, 2.8vw, 30px);
}

.product-page .form--label {
  color: #1b2833;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-page .form--control {
  border-radius: 14px;
  border: 1px solid hsl(var(--base) / 0.2);
  background: linear-gradient(145deg, hsl(var(--base) / 0.06), #ffffff);
  min-height: 52px;
  font-size: 0.98rem;
  padding-inline: 14px;
}

.product-page textarea.form--control {
  min-height: 120px;
  padding-top: 14px;
}

.product-page .form--control:focus {
  border-color: hsl(var(--base));
  box-shadow: 0 0 0 4px hsl(var(--base) / 0.18);
}

.product-page .list-group .list-group-item {
  border-bottom: 1px solid hsl(var(--base) / 0.14);
  padding-inline: 0;
}

.product-page .counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: auto;
  min-width: 126px;
  border: 1px solid hsl(var(--base) / 0.2);
  border-radius: 12px;
  padding: 4px;
  background: #fff;
  gap: 6px;
}

.product-page .counter__btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid hsl(var(--base) / 0.3);
  background: hsl(var(--base) / 0.08);
  color: #12212e;
  color: color-mix(in srgb, hsl(var(--base)) 68%, #12212e 32%);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-page .counter .form--control {
  width: 44px;
  height: 36px;
  min-height: 36px;
  border-radius: 10px;
  text-align: center;
  padding: 0;
}

.product-page .order-pane--summary .list-group .list-group-item:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.product-page .order-pane--summary .list-group .list-group-item:first-child .product {
  width: 100%;
  min-width: 0;
  padding-right: 0;
}

.product-page .order-pane--summary .list-group .list-group-item:first-child .counter {
  justify-self: end;
}

.product-page .summary-row--shipping {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  align-items: start;
  column-gap: 16px;
}

.product-page .summary-row--shipping > h6 {
  margin-bottom: 0;
  line-height: 1.35;
}

.product-page .summary-row--shipping .form-group {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  justify-self: end;
  display: grid;
  gap: 12px;
}

.product-page .summary-row--shipping .form--radio {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  min-height: 28px;
}

.product-page .summary-row--shipping .form-check-input {
  margin-top: 0;
  flex: 0 0 auto;
}

.product-page .summary-row--shipping .form-check-label {
  display: inline-block;
  line-height: 1.45;
  white-space: normal;
}

.product-page input[name="order_quantity"]::-webkit-outer-spin-button,
.product-page input[name="order_quantity"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-page input[name="order_quantity"] {
  -moz-appearance: textfield;
}

.product-page .form--radio {
  margin-bottom: 8px;
}

.product-page .form-check-input {
  margin-top: 0.25rem;
}

.product-page .form-check-label {
  color: var(--text-muted);
}

.product-page .summary-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #12212e;
  color: color-mix(in srgb, hsl(var(--base)) 70%, #12212e 30%);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.product-page .checkout-btn {
  min-height: 50px;
  font-size: 1rem;
  font-weight: 700;
}

.product-page .more-products-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base) / 0.08) 100%
  );
}

.product-page .more-products-title {
  color: #16242f;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-page .more-products-section .more-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.16);
  background: #fff;
  box-shadow: 0 14px 32px rgba(6, 20, 16, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-page .more-products-section .more-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(6, 20, 16, 0.2);
}

.product-page .more-products-section .more-product-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f8f5;
}

.product-page .more-products-section .more-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-page .more-products-section .more-product-card:hover .more-product-card__image img {
  transform: scale(1.03);
}

.product-page .more-products-section .more-product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.product-page .more-products-section .more-product-card__name {
  display: -webkit-box;
  color: #10241c;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.7em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-page .more-products-section .more-product-card__btn {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    120deg,
    color-mix(in srgb, hsl(var(--base)) 84%, #000 16%),
    hsl(var(--base))
  );
}

.product-page .footer-section {
  background:
    linear-gradient(120deg, rgba(5, 13, 22, 0.92), rgba(5, 13, 22, 0.88)),
    linear-gradient(
      120deg,
      color-mix(in srgb, hsl(var(--base)) 84%, #000 16%),
      color-mix(in srgb, hsl(var(--base)) 62%, #fff 38%)
    );
  border: 0;
}

.product-page .footer-section p {
  color: rgba(255, 255, 255, 0.86);
}

.product-page .wa-float {
  box-shadow: 0 12px 26px hsl(var(--base) / 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  bottom: 20px;
}

@media (max-width: 991px) {
  .product-page .order-unified-card {
    padding: 14px;
  }

  .product-page .order-pane--summary {
    border-left: 0;
    border-top: 1px solid hsl(var(--base) / 0.14);
    padding-left: clamp(2px, 0.8vw, 10px);
    padding-top: 16px;
  }

  .product-page .summary-row--shipping .form-group {
    gap: 8px;
  }

  .product-page .deal-card {
    border-radius: 20px;
  }

  .product-page .deal-card__media img {
    min-height: 360px;
  }

  .product-page .deal-card__content {
    padding: 20px 18px 24px;
  }

  .product-page .video-item {
    height: 430px;
  }
}

@media (max-width: 767px) {
  .product-page .benefits-section .section-title-highlight {
    margin-bottom: 14px;
    font-size: 1.12rem;
  }

  .product-page .benefits-list li {
    gap: 9px;
    padding: 12px 8px 12px 0;
    line-height: 1.45;
  }

  .product-page .benefits-list .ularrow {
    min-width: 24px;
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .product-page .deal-card {
    border-radius: 16px;
  }

  .product-page .deal-card__media img {
    min-height: 260px;
  }

  .product-page .discount-content__price {
    margin-bottom: 14px;
  }

  .product-page .deal-card__cta {
    min-width: 170px;
    min-height: 50px;
    font-size: 0.96rem;
  }

  .product-page .header-content {
    gap: 10px;
  }

  .product-page .header-content .btn {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .product-page .banner-section {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  .product-page .banner-content {
    padding: 0.5rem 0;
  }

  .product-page .banner-content__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .product-page .discount-content__price { gap: 6px; }

  .product-page .video-item {
    height: 360px;
  }

  .product-page .order-unified-card {
    border-radius: 16px;
    padding: 12px;
  }

  .product-page .order-pane {
    padding: 0;
  }

  .product-page .order-pane--summary .list-group .list-group-item:first-child {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .product-page .order-pane--summary .list-group .list-group-item:first-child .product {
    align-items: flex-start;
  }

  .product-page .counter {
    width: auto;
    min-width: 118px;
    justify-content: flex-end;
    gap: 6px;
  }

  .product-page .counter__btn,
  .product-page .counter .form--control {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .product-page .counter .form--control {
    width: 38px;
    font-size: 0.98rem;
  }

  .product-page .summary-row--shipping {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .product-page .summary-row--shipping > h6 {
    margin-bottom: 0;
  }

  .product-page .summary-row--shipping .form-group {
    width: 100%;
    margin-left: 0;
    justify-self: start;
  }

  .product-page .list-group .list-group-item {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-page .checkout-btn {
    min-height: 54px;
    font-size: 1.04rem;
  }

  .product-page .more-products-section .more-product-card {
    border-radius: 14px;
  }

  .product-page .checkout-btn {
    position: sticky;
    bottom: 12px;
    z-index: 10;
  }

  .product-page .wa-float {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 12px;
  }

  .product-page .wa-float svg {
    width: 40px;
    height: 40px;
  }
}
