:root {
  --bg: #f6f0e7;
  --surface: rgba(255, 250, 244, 0.78);
  --surface-strong: rgba(255, 250, 244, 0.92);
  --ink: #1f1a16;
  --muted: #6d6257;
  --line: rgba(72, 56, 41, 0.12);
  --gold: #b88739;
  --walnut: #2b211b;
  --shadow: 0 28px 80px rgba(54, 39, 24, 0.12);
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 135, 57, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(78, 53, 24, 0.14), transparent 20%),
    linear-gradient(180deg, #fbf5ed 0%, #f3eadf 52%, #efe4d5 100%);
  color: var(--ink);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), 1280px);
  margin: 20px auto 40px;
}

.hero,
.section,
.cta-banner {
  backdrop-filter: blur(16px);
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.92), rgba(245, 232, 214, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  border: 1px solid rgba(120, 87, 38, 0.12);
  border-radius: 40px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
}

.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(184, 135, 57, 0.14);
  right: -60px;
  top: 40px;
}

.hero::after {
  width: 180px;
  height: 180px;
  background: rgba(59, 43, 28, 0.12);
  left: -60px;
  bottom: 40px;
}

.topbar {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 180px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c69443, #a26f2e);
  color: #fff8ef;
  font-weight: 700;
  border: 1px solid rgba(94, 59, 18, 0.18);
  box-shadow: 0 18px 30px rgba(166, 111, 46, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 35px rgba(166, 111, 46, 0.26);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(71, 48, 22, 0.15);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-content {
  max-width: var(--container);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.trust-strip,
.benefits,
.steps-grid,
.assurance-grid,
.product-grid,
.testimonial-grid,
.stats-panel {
  display: grid;
  gap: 20px;
}

.trust-strip {
  max-width: var(--container);
  margin: 22px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(128, 98, 55, 0.1);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px;
  color: #8e6a33;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.8rem;
}

.hero-text,
.showcase-panel p,
.benefit-card p,
.step-card p,
.assurance-card p,
.product-card p,
.testimonial-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(128, 98, 55, 0.1);
  color: var(--walnut);
  font-size: 0.94rem;
}

.hero-card {
  min-height: 620px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 229, 173, 0.22), transparent 22%),
    linear-gradient(180deg, #211813 0%, #2b1f18 100%);
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(234, 211, 166, 0.09);
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(243, 221, 181, 0.34), transparent 12%),
    radial-gradient(circle at 40% 55%, rgba(165, 115, 43, 0.22), transparent 28%);
}

.hero-bottle {
  position: absolute;
  bottom: 145px;
  border-radius: 44px 44px 22px 22px;
}

.hero-bottle::before,
.hero-bottle::after {
  content: "";
  position: absolute;
}

.hero-bottle-main {
  left: 22%;
  width: 180px;
  height: 300px;
  background: linear-gradient(180deg, rgba(247, 214, 157, 0.96), rgba(162, 102, 28, 0.8));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.24),
    inset 0 0 30px rgba(255, 250, 237, 0.26);
}

.hero-bottle-main::before {
  width: 80px;
  height: 54px;
  top: -48px;
  left: 50px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #f2dba8, #b38137);
}

.hero-bottle-main::after {
  width: 108px;
  height: 10px;
  top: 108px;
  left: 36px;
  border-radius: 999px;
  background: rgba(255, 247, 228, 0.4);
}

.hero-bottle-accent {
  right: 16%;
  width: 142px;
  height: 250px;
  background: linear-gradient(180deg, rgba(250, 242, 232, 0.92), rgba(151, 138, 123, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: rotate(8deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero-bottle-accent::before {
  width: 58px;
  height: 48px;
  top: -44px;
  left: 42px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, #f5e3bf, #8a6b42);
}

.price-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(300px, calc(100% - 68px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(250, 244, 236, 0.92);
  color: var(--walnut);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.price-card strong,
.price-card .price-value {
  display: block;
}

.price-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184, 135, 57, 0.12);
  color: #875d1d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card strong {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.price-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section {
  margin-top: 22px;
  padding: 44px;
  background: rgba(255, 250, 244, 0.72);
  border-radius: 34px;
  border: 1px solid rgba(125, 91, 45, 0.1);
  box-shadow: var(--shadow);
}

.section-grid {
  display: grid;
  gap: 32px;
}

.section-heading {
  max-width: 760px;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.benefits,
.steps-grid,
.assurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.step-card,
.assurance-card,
.product-card,
.testimonial-card,
.stat-card,
.faq-list details {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.benefit-card,
.step-card,
.assurance-card {
  padding: 24px;
}

.benefit-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(184, 135, 57, 0.12);
  color: #8b6224;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid rgba(118, 88, 45, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: linear-gradient(135deg, #c69443, #a26f2e);
  color: #fff8ef;
}

.product-grid,
.testimonial-grid,
.stats-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(72, 54, 31, 0.12);
}

.product-card.is-hidden {
  display: none;
}

.product-visual {
  height: 220px;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.product-visual.has-image {
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 16px;
  padding: 0;
  border-radius: 20px;
  background: #efe6d8;
}

.product-visual.has-image::before,
.product-visual.has-image::after {
  display: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.product-visual.is-asad-card img {
  object-fit: contain;
  object-position: center;
  background: #120d08;
}

.product-visual.is-tall-card {
  aspect-ratio: 3 / 4;
}

.product-visual.is-slim-card {
  aspect-ratio: 853 / 1280;
}

.product-visual.is-tall-card img,
.product-visual.is-slim-card img {
  object-fit: cover;
  object-position: center top;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
}

.product-visual::before {
  width: 96px;
  height: 132px;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  border-radius: 28px 28px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(226, 215, 200, 0.24));
  box-shadow: 0 16px 30px rgba(20, 14, 8, 0.18);
}

.product-visual::after {
  width: 38px;
  height: 34px;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #efd9ac, #9f763b);
}

.visual-onyx {
  background: linear-gradient(135deg, #302117, #050505);
}

.visual-amber {
  background: linear-gradient(135deg, #4b2812, #d48d32);
}

.visual-rose {
  background: linear-gradient(135deg, #3f1926, #df8c96);
}

.visual-pearl {
  background: linear-gradient(135deg, #d7c4b7, #f6ecdf);
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #896124;
  background: rgba(184, 135, 57, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.product-highlights li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(184, 135, 57, 0.08);
  color: #75501b;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.product-footer strong {
  font-size: 1.35rem;
}

.product-footer a {
  color: #82571d;
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.showcase-panel,
.cta-banner {
  background:
    radial-gradient(circle at top left, rgba(184, 135, 57, 0.18), transparent 20%),
    linear-gradient(140deg, #201812 0%, #30241d 100%);
  color: #f8efe1;
  border-radius: 28px;
  padding: 30px;
}

.showcase-panel p,
.cta-banner p {
  color: rgba(248, 239, 225, 0.76);
}

.stats-panel {
  grid-template-columns: 1fr;
}

.stat-card {
  min-height: 130px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(246, 239, 228, 0.76));
}

.stat-card strong {
  font-size: 2.3rem;
  font-family: "Cormorant Garamond", serif;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
}

.faq-section {
  display: grid;
  gap: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-banner {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ca64b, #11893b);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(17, 137, 59, 0.28);
}

@media (max-width: 1080px) {
  .hero-content,
  .trust-strip,
  .showcase,
  .benefits,
  .steps-grid,
  .assurance-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), 1280px);
  }

  .topbar,
  .trust-strip,
  .section-heading-inline,
  .cta-banner,
  .hero-content,
  .showcase,
  .benefits,
  .steps-grid,
  .assurance-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    justify-items: start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-card {
    min-height: 540px;
  }

  .hero-bottle-main {
    left: 12%;
  }

  .hero-bottle-accent {
    right: 8%;
  }

  .section,
  .hero,
  .cta-banner {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: none;
    line-height: 1;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-actions,
  .filters {
    display: grid;
  }

  .hero-card {
    min-height: 470px;
    padding: 22px;
  }

  .hero-bottle-main {
    width: 132px;
    height: 228px;
    left: 8%;
    bottom: 132px;
  }

  .hero-bottle-main::before {
    width: 58px;
    height: 42px;
    left: 36px;
  }

  .hero-bottle-accent {
    width: 112px;
    height: 200px;
    right: 6%;
    bottom: 148px;
  }

  .hero-bottle-accent::before {
    width: 44px;
    height: 36px;
    left: 34px;
  }

  .price-card {
    position: absolute;
    width: calc(100% - 44px);
    right: 22px;
    bottom: 22px;
  }

  .product-footer {
    flex-direction: column;
    align-items: start;
  }

  .product-visual.has-image {
    height: auto;
    margin: -18px -18px 16px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }
}
