:root {
  --bg: #fffdf9;
  --bg-soft: #fff4e8;
  --surface: #ffffff;
  --surface-2: #fff9f2;
  --ink: #3d2d22;
  --muted: #7f6756;
  --line: #f7e4d2;
  --primary: #e07a45;
  --primary-dark: #c8642f;
  --accent: #f4b266;
  --success: #5aa56a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hind Siliguri", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #fff7ee 0%, transparent 48%),
    radial-gradient(circle at top right, #fff3e7 0%, transparent 42%),
    linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ffd9b0;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
}

.top-header__inner,
.landing-wrap {
  width: min(1040px, 94vw);
  margin: 0 auto;
}

.top-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-logo {
  text-decoration: none;
  color: var(--primary-dark);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
}

.top-header__contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.top-header__contacts a {
  text-decoration: none;
  color: #5c3d2d;
  border: 1px solid #f4c89f;
  background: #fff7ed;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.top-header__contacts a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.landing-wrap {
  margin: 18px auto 30px;
}

.info-block {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface) 0%, #fff9f2 100%);
  box-shadow: 0 16px 36px rgba(195, 97, 36, 0.11);
}

.info-block--media {
  display: grid;
  grid-template-columns: minmax(330px, 47%) 1fr;
  gap: 20px;
  align-items: stretch;
}

.info-block__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 1px solid #f3d3b0;
}

.info-block h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.info-block h3 {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary-dark);
}

.info-block ul,
.info-block ol {
  margin: 0;
  padding-left: 20px;
}

.info-block li {
  margin-bottom: 9px;
  line-height: 1.55;
  color: #523d2f;
}

.info-block p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #533f31;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.strong {
  font-weight: 700;
  color: var(--primary-dark);
}

.mt-1 {
  margin-top: 10px;
}

.dots {
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  margin: 10px 0 16px;
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #dfbb97;
}

.dot.active {
  background: var(--primary);
}

.order-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--primary), #ff7b39);
  box-shadow: 0 10px 20px rgba(217, 72, 15, 0.26);
}

.order-btn:hover {
  transform: translateY(-1px);
}

.products-section {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fffdf9 0%, var(--surface-2) 100%);
}

.promo-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.promo-grid .promo-left,
.promo-grid .promo-right {
  margin-top: 0;
  width: 100%;
}

.products-section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 34px);
}

.line {
  display: block;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  margin: 10px auto 20px;
  background: linear-gradient(90deg, #f59f00, #d9480f);
}

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

.product-card {
  border: 1px solid #f0d3b3;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(89, 48, 18, 0.08);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #7a4c2f;
  background: #ffebd3;
  padding: 3px 9px;
  border-radius: 999px;
}

.product-card img {
  width: 100%;
  margin-top: 8px;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.product-card h3 {
  margin: 8px 0 4px;
  font-size: 18px;
}

.product-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.offer-box,
.checkout,
.info-block:not(.info-block--media) {
  border-radius: 22px;
}

.offer-box {
  margin: 30px auto 0;
  width: min(780px, 100%);
  border: 1px solid #ffbf8d;
  padding: 30px 22px;
  text-align: center;
  background:
    radial-gradient(circle at top right, #fff1df 0%, transparent 45%),
    linear-gradient(165deg, #fffefc 0%, #fff3e6 100%);
  box-shadow: 0 14px 28px rgba(191, 93, 30, 0.12);
}

.offer-box h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: clamp(24px, 2.9vw, 34px);
  line-height: 1.25;
}

.offer-box p {
  margin: 0;
  color: #5a3b2a;
  font-size: 17px;
  line-height: 1.6;
}

.price-box {
  width: fit-content;
  margin: 18px auto;
  border-radius: 14px;
  border: 1px solid #ffbe87;
  background: #fff;
  padding: 12px 24px;
  box-shadow: 0 8px 18px rgba(217, 72, 15, 0.12);
}

.price-box small {
  display: block;
  color: #705443;
}

.price-box strong {
  font-size: 34px;
  color: #c92b00;
}

.note {
  display: block;
  margin-top: 12px;
  color: #8f4d25;
  font-weight: 600;
}

.checkout {
  margin-top: 30px;
  border: 1px solid #f3d3ad;
  background:
    radial-gradient(circle at top left, #fff6ea 0%, transparent 45%),
    linear-gradient(145deg, #fffdf9 0%, #fff6ee 100%);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(114, 57, 24, 0.08);
}

.checkout h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  color: #4c2f1f;
}

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

.left,
.right {
  background: #fff;
  border: 1px solid #efd2b1;
  border-radius: 16px;
  padding: 16px;
}

.left label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #5c3e2c;
}

.left input,
.left textarea,
.left select {
  width: 100%;
  margin-bottom: 11px;
  padding: 11px;
  border: 1px solid #e5c8a7;
  border-radius: 10px;
  background: #fffdfa;
  color: #3f2c1f;
}

.left input:focus,
.left textarea:focus,
.left select:focus {
  outline: 2px solid #ffd7a8;
  border-color: #d67f4b;
}

.triple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.right h4 {
  margin: 0 0 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #ebd2ba;
  padding: 11px 0;
}

.summary-row.total {
  border-bottom: 0;
  color: #c92b00;
  font-size: 26px;
  font-weight: 700;
}

.place-order {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 14px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--success), #52b788);
  box-shadow: 0 10px 22px rgba(43, 138, 62, 0.28);
}

.page-footer {
  margin-top: 28px;
  text-align: center;
  color: #fff;
  padding: 26px 10px;
  background:
    radial-gradient(circle at top center, rgba(255, 228, 197, 0.24) 0%, transparent 38%),
    linear-gradient(120deg, #8d5638, #b8744d);
}

.page-footer a {
  text-decoration: none;
  color: #ffe8cc;
  margin: 0 8px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.page-footer a:hover {
  border-bottom-color: #ffd7aa;
}

.page-footer p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #ffe7ce;
}

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

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

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

@media (max-width: 768px) {
  .info-block--media {
    grid-template-columns: 1fr;
  }

  .info-block__image img {
    min-height: 300px;
  }

  .top-header__inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .top-header__contacts {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .brand-logo {
    font-size: 24px;
  }

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

@media (max-width: 640px) {
  .landing-wrap,
  .top-header__inner {
    width: 95vw;
  }

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

  .info-block,
  .products-section,
  .checkout {
    padding: 14px;
  }
}
