:root {
  --bg: #f6f2ec;
  --bg-soft: #fffaf5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #2d2231;
  --muted: #695d70;
  --primary: #7f0f67;
  --primary-dark: #5f0a4c;
  --gold: #f0a126;
  --line: rgba(91, 57, 97, 0.12);
  --shadow: 0 18px 45px rgba(70, 31, 76, 0.12);
  --shadow-soft: 0 12px 28px rgba(70, 31, 76, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 161, 38, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(127, 15, 103, 0.08), transparent 30%),
    var(--bg);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin: 0 auto; }
.page-shell { overflow: clip; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 236, 0.82);
  border-bottom: 1px solid rgba(127, 15, 103, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

.brand-logo { width: min(320px, 52vw); }

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-cta {
  padding: 12px 22px;
  color: #fff !important;
}

.hero {
  padding: 78px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

h1, h2, h3 { margin: 0; line-height: 1.04; }

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  max-width: 11ch;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  letter-spacing: -0.03em;
}

h3 { font-size: 1.7rem; }

.hero-text,
.section-heading p,
.about-copy p,
.product-content p,
.mid-cta p,
.site-footer p,
.contact-box p,
.about-stat p,
.trust-grid span,
.cta-note {
  color: var(--muted);
}

.hero-text {
  font-size: 1.12rem;
  max-width: 62ch;
  margin: 18px 0 0;
}

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

.cta-note {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(127, 15, 103, 0.08);
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 560px;
  box-shadow: var(--shadow-soft);
}

.cta-note strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.floating-whatsapp-label:hover,
.nav-cta:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9b1d7f);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255,255,255,0.7);
  color: var(--primary);
  border: 1px solid rgba(127, 15, 103, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  border: 1px solid rgba(127, 15, 103, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-main {
  inset: 50px 120px 0 0;
  padding: 30px;
}

.hero-card-small {
  width: 230px;
  height: 280px;
  padding: 18px;
}

.hero-card-small.top { top: 0; right: 0; }
.hero-card-small.bottom { right: 0; bottom: 32px; }

.trust-strip { padding: 10px 0 52px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid > div {
  border-radius: 22px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(127, 15, 103, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.products-section, .about-section, .contact-section { padding: 78px 0; }

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 38px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.products-grid-five .product-card { grid-column: span 4; }
.products-grid-five .featured-last-row { grid-column: 5 / span 4; }

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.76));
  border: 1px solid rgba(127, 15, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  padding: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-content { padding: 0 24px 24px; }

.product-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(127, 15, 103, 0.09);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.product-content h3 { margin-bottom: 10px; }
.product-content p { margin: 0 0 12px; font-size: 1.02rem; }

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-footer small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.product-footer strong {
  font-size: 1.75rem;
  line-height: 1;
}

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

.product-amount {
  font-size: 1.2rem !important;
  color: var(--text);
}

.accent-orange .product-image-wrap { background: linear-gradient(180deg, rgba(255, 120, 31, 0.1), rgba(255,255,255,0)); }
.accent-red .product-image-wrap { background: linear-gradient(180deg, rgba(172, 30, 45, 0.1), rgba(255,255,255,0)); }
.accent-lime .product-image-wrap { background: linear-gradient(180deg, rgba(167, 203, 20, 0.18), rgba(255,255,255,0)); }
.accent-green .product-image-wrap { background: linear-gradient(180deg, rgba(82, 109, 90, 0.16), rgba(255,255,255,0)); }
.accent-purple .product-image-wrap { background: linear-gradient(180deg, rgba(127, 15, 103, 0.12), rgba(255,255,255,0)); }

.products-cta-strong {
  padding: 34px 0 0;
}

.mid-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff9f2, #fff, #f8f0fb);
  border: 1px solid rgba(127, 15, 103, 0.1);
  box-shadow: var(--shadow);
}

.mid-cta-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #1ea85b, #23c463);
  color: white;
  box-shadow: 0 16px 36px rgba(33, 161, 84, 0.28);
}

.whatsapp-btn.large {
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding: 18px 28px;
  max-width: 380px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.about-panel {
  display: grid;
  gap: 16px;
}

.about-stat {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(127, 15, 103, 0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(70, 31, 76, 0.07);
}

.about-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-box-strong {
  max-width: 860px;
  padding: 44px 48px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  border: 1px solid rgba(127, 15, 103, 0.1);
  box-shadow: var(--shadow);
}

.contact-box-strong h2 { margin-bottom: 12px; }
.contact-box-strong p { margin: 0 0 18px; }
.contact-actions { margin-bottom: 16px; }
.contact-main-btn {
  min-width: 280px;
  font-size: 1.02rem;
}
.contact-phone { font-size: 1.06rem; }

.site-footer {
  padding: 24px 0 100px;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-logo { width: min(280px, 70vw); }

.floating-whatsapp-label {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ea85b, #23c463);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(33, 161, 84, 0.34);
  z-index: 50;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; }

  .hero-visual { min-height: 560px; }

  .products-grid-five .product-card,
  .products-grid-five .featured-last-row { grid-column: span 6; }

  .mid-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .main-nav { display: none; }

  .hero { padding-top: 42px; }

  .trust-grid,
  .products-grid { grid-template-columns: 1fr; }

  .products-grid-five .product-card,
  .products-grid-five .featured-last-row { grid-column: auto; }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-card-main {
    grid-column: 1 / -1;
    padding: 18px;
  }

  .hero-card-small { height: 250px; }
  .site-header { position: static; }
  .contact-box-strong { padding: 30px 24px; }
}

@media (max-width: 560px) {
  .brand-logo { width: min(240px, 70vw); }
  h1 { max-width: 100%; }

  .hero-actions,
  .mid-cta-card { align-items: stretch; }

  .btn,
  .whatsapp-btn.large,
  .contact-main-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-visual { grid-template-columns: 1fr; }
  .hero-card-small { height: auto; }

  .mid-cta-card,
  .product-content,
  .about-stat,
  .trust-grid > div,
  .contact-box-strong { padding-inline: 20px; }

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

  .floating-whatsapp-label {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }
}


.hero-actions .btn-primary {
  text-align: center;
}

@media (max-width: 560px) {
  .whatsapp-btn.large {
    max-width: 100%;
    padding: 18px 20px;
  }
}
