:root {
  --red: #a50000;
  --deep-red: #760000;
  --gold: #f7c431;
  --gold-dark: #d9a20f;
  --ink: #251111;
  --muted: #6c5b54;
  --paper: #fffdf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans Bengali", "Hind Siliguri", "SolaimanLipi", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 85, 34, 0.88), rgba(18, 85, 34, 0.08) 14%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 72%, rgba(18, 85, 34, 0.08) 86%, rgba(18, 85, 34, 0.88)),
    var(--page-bg);
}

html,
body {
  overflow-x: hidden;
}

.page-shell {
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 32px rgba(33, 24, 12, 0.24);
}

.top-ribbon {
  background: var(--deep-red);
  color: #ffd967;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 74px 18px 76px;
  color: #fff9dc;
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 214, 111, 0.24), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(255, 110, 66, 0.22), transparent 30%),
    linear-gradient(135deg, var(--deep-red) 0%, var(--red) 48%, var(--deep-red) 100%);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: auto;
  content: "";
}

.hero-section::before {
  top: -90px;
  left: -110px;
  inline-size: 420px;
  block-size: 420px;
  border: 1px solid rgba(255, 211, 96, 0.16);
  border-radius: 50%;
}

.hero-section::after {
  right: -130px;
  bottom: -160px;
  inline-size: 520px;
  block-size: 520px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(28deg);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255, 224, 132, 0.34);
  border-radius: 999px;
  color: #ffe58a;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.hero-title {
  margin: 0;
  color: #ffe084;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.title-break {
  display: inline;
}

.hero-copy {
  margin-top: 18px;
  font-size: clamp(15px, 2.6vw, 18px);
  line-height: 1.6;
  color: #fff3ca;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 224, 132, 0.42);
  border-radius: 999px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

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

.cta-outline {
  padding: 12px 22px;
  border: 1px solid rgba(255, 224, 132, 0.45);
  border-radius: 4px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.cta-outline:hover {
  color: #250e00;
  background: #fff8d8;
}

.product-stage {
  display: flex;
  justify-content: center;
  position: relative;
}

.product-stage::before {
  position: absolute;
  inset: 8% 6% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 225, 132, 0.36), transparent 64%);
  content: "";
}

.product-card {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: min(100%, 460px);
  padding: 34px 26px 26px;
  border: 1px solid rgba(255, 224, 132, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 70px rgba(35, 0, 0, 0.32);
  backdrop-filter: blur(6px);
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2b0f00;
  background: linear-gradient(180deg, #ffe877, var(--gold));
  font-size: 12px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  max-inline-size: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(28, 0, 0, 0.34));
}

.hero-stats {
  position: absolute;
  right: 18px;
  bottom: -26px;
  display: flex;
  gap: 10px;
}

.hero-stats div {
  min-inline-size: 112px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 224, 132, 0.35);
  border-radius: 14px;
  color: #fff7d2;
  background: rgba(58, 0, 0, 0.56);
  box-shadow: 0 16px 30px rgba(35, 0, 0, 0.28);
  backdrop-filter: blur(7px);
}

.hero-stats strong {
  display: block;
  color: #ffe084;
  font-size: 20px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 800;
}

.cta-main,
.cta-small,
.cta-dark {
  border: 0;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 4px 0 rgba(40, 16, 0, 0.28);
}

.cta-main {
  padding: 12px 24px;
  color: #1e0d00;
  background: linear-gradient(180deg, #ffe877, var(--gold));
}

.cta-small {
  padding: 9px 22px;
  color: #1e0d00;
  background: linear-gradient(180deg, #ffe877, var(--gold));
}

.cta-dark {
  padding: 11px 24px;
}

.icon-strip {
  padding: 42px 16px 44px;
  background:
    linear-gradient(135deg, rgba(118, 0, 0, 0.04) 0 25%, transparent 25% 100%),
    linear-gradient(180deg, #ffffff 0%, #fff8e2 100%);
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 900;
}

.strip-title {
  margin-bottom: 10px;
  color: var(--deep-red);
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.section-copy {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid #edd8a8;
  border-radius: 6px;
  color: var(--deep-red);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(128, 67, 0, 0.08);
}

.benefit-card::before {
  position: absolute;
  inset: 0 0 auto;
  block-size: 4px;
  background: linear-gradient(90deg, var(--deep-red), var(--gold));
  content: "";
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(128, 67, 0, 0.14);
}

.benefit-card i {
  inline-size: 36px;
  block-size: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep-red);
  background: #fff0b6;
  font-size: 18px;
}

.benefit-card h3 {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 58px 16px;
  color: #fff8d8;
  background:
    linear-gradient(135deg, rgba(255, 224, 132, 0.12) 0 20%, transparent 20% 100%),
    radial-gradient(circle at 10% 88%, rgba(255, 224, 132, 0.14), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(247, 196, 49, 0.24), transparent 28%),
    linear-gradient(135deg, var(--deep-red) 0%, var(--red) 54%, var(--deep-red) 100%);
}

.contact-section::after {
  position: absolute;
  right: -90px;
  bottom: -95px;
  inline-size: 240px;
  block-size: 240px;
  border: 1px solid rgba(255, 224, 132, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-title {
  margin-bottom: 12px;
  color: #ffe084;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}

.contact-copy {
  margin: 0;
  color: #fff4c5;
  font-size: 16px;
  line-height: 1.75;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 224, 132, 0.28);
  border-radius: 999px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.contact-highlights i {
  color: #ffe084;
}

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 224, 132, 0.32);
  border-radius: 6px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.contact-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.contact-item i {
  inline-size: 42px;
  block-size: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2a1100;
  background: linear-gradient(180deg, #ffe877, var(--gold));
  font-size: 18px;
  flex: 0 0 auto;
}

.contact-item span {
  display: grid;
  gap: 2px;
  font-size: 15px;
  line-height: 1.35;
}

.contact-item strong {
  color: #ffe084;
  font-size: 17px;
}

.order-form {
  padding: 26px;
  border: 1px solid rgba(255, 224, 132, 0.44);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 235, 0.98));
  box-shadow: 0 26px 52px rgba(32, 0, 0, 0.34);
}

.form-header {
  margin-bottom: 18px;
}

.form-badge {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #6d0000;
  background: #fff0b6;
  font-size: 12px;
  font-weight: 900;
}

.form-header h3 {
  margin: 0;
  color: var(--deep-red);
  font-size: 26px;
  font-weight: 900;
}

.form-header p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-form .form-label {
  color: var(--deep-red);
  font-size: 14px;
  font-weight: 800;
}

.order-form .form-control,
.order-form .form-select {
  min-height: 46px;
  border: 1px solid #e8c98b;
  border-radius: 5px;
  color: var(--ink);
  background-color: var(--paper);
}

.order-form .form-control:focus,
.order-form .form-select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 0.2rem rgba(247, 196, 49, 0.22);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  inline-size: 100%;
  padding: 12px 18px;
  border: 0;
  border-radius: 5px;
  color: #1e0d00;
  background: linear-gradient(180deg, #ffe877, var(--gold));
  font-weight: 900;
  box-shadow: 0 4px 0 rgba(40, 16, 0, 0.28);
}

.details-section {
  padding: 54px 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.detail-block {
  padding: 0;
}

.details-title,
.detail-block h3 {
  color: var(--deep-red);
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-panel {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid #edd8a8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(128, 67, 0, 0.1);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f1e3bf;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list i {
  color: var(--red);
  margin-top: 3px;
}

.detail-product {
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(74, 35, 0, 0.16));
}

.action-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.site-footer {
  padding: 44px 16px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 224, 132, 0.18), transparent 30%),
    linear-gradient(135deg, var(--deep-red), var(--red) 56%, var(--ink));
}

.footer-panel {
  padding: 30px;
  border: 1px solid rgba(255, 224, 132, 0.28);
  border-radius: 12px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(32, 0, 0, 0.22);
}

.footer-kicker {
  margin-bottom: 8px;
  color: #ffe084;
  font-size: 14px;
  font-weight: 900;
}

.footer-panel h2 {
  margin-bottom: 10px;
  color: #ffe084;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
}

.footer-panel p {
  margin: 0;
  color: #fff0bd;
  line-height: 1.7;
}

.footer-badges {
  display: grid;
  gap: 10px;
}

.footer-badges span,
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 224, 132, 0.28);
  border-radius: 8px;
  color: #fff8d8;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-decoration: none;
}

.footer-badges i,
.footer-phone i {
  color: #ffe084;
}

.footer-actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 640px) {
  .hero-section {
    padding: 42px 12px 56px;
  }

  .hero-title {
    margin-inline: auto;
    font-size: 34px;
  }

  .title-break {
    display: block;
  }

  .hero-kicker,
  .hero-copy,
  .strip-title {
    margin-inline: auto;
  }

  .hero-badges {
    justify-content: center;
    gap: 8px;
  }

  .hero-badges span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-actions {
    justify-content: center;
  }

  .product-stage {
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
  }

  .product-card {
    inline-size: min(100%, 340px);
    padding: 28px 16px 18px;
    border-radius: 18px;
  }

  .product-tag {
    top: 10px;
    right: 12px;
    font-size: 11px;
  }

  .hero-product {
    max-height: 290px;
  }

  .hero-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    inline-size: 100%;
    margin-top: 12px;
  }

  .hero-stats div {
    min-inline-size: 0;
    padding: 10px 12px;
  }

  .contact-section {
    padding: 38px 12px;
  }

  .order-form {
    padding: 18px;
  }

  .product-panel {
    padding: 20px;
  }

  .footer-panel {
    padding: 22px;
  }

  .footer-actions .btn,
  .footer-phone {
    justify-content: center;
  }

  .action-stack .col-auto {
    inline-size: 100%;
  }

  .action-stack .btn {
    inline-size: 100%;
  }
}
