:root {
  /* Base */
  --bg-main: #FFFDF9;
  --bg-soft: #FFF3EE;
  --bg-section: #FFF6F3;
  --bg-card: #FFFFFF;

  /* Text */
  --text-main: #2B2B2B;
  --text-soft: #6A6A6A;

  /* Accent */
  --accent: #E07A7A;
  --accent-soft: #F6C1C1;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

.nav {
  background: var(--bg-main);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-main);
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text-main);
}
.nav-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.hero {
  position: relative;
  text-align: center;
  padding: 96px 20px 88px;
  background: linear-gradient(
    180deg,
    #FFFDF9 0%,
    #FFF3EE 100%
  );
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-brand {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-soft);
  display: block;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 520px;
  margin: 0 auto 36px;
  margin-top: 16px;
}
.hero-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}
.hero-trust {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-soft);
}
.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(224, 122, 122, 0.08);
  border-radius: 50%;
  z-index: -1;
}


.products {
  background: var(--bg-section);
  padding: 64px 20px;
}
.product-name {
  font-size: 17px;
  font-weight: 600;
}
.products-inner {
  max-width: 960px;
  margin: 0 auto;
}
.products h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-main);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.04),
    0 2px 6px rgba(0,0,0,0.03);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card img {
  border-radius: 14px;
  margin-bottom: 20px;
  background: #f4f4f4;
  transition: transform 0.4s ease;
}
.product-content {
  margin-bottom: 20px;
}
.product-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 18px;
  margin-bottom: 8px;
}
.product-meta {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 4px;
  color: #777;
}
.product-price {
  font-size: 14px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-price::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: rgba(0,0,0,0.05);
  margin: 8px 0;
}

.product-cta {
  margin-top: auto;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(224, 122, 122, 0.9);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}


.brand-story {
  background: var(--bg-main);
  border-radius: 20px;
  padding: 48px 32px;
}
.brand-story-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.brand-story h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-main);
}
.brand-story p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.trust-points {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.trust-item {
  background: var(--bg-section);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-main);
}


.faq {
  background: var(--bg-section);
  padding: 64px 20px;
  max-width: 680px;
  margin: 0 auto;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-main);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.faq-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
.faq-order-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  text-align: center;
}
  
.footer {
  background: var(--bg-main);
  padding: 48px 20px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.footer-copy {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.footer-meta {
  font-size: 12px;
  color: var(--text-soft);
}

.nav-cta,
.hero-cta,
.product-cta,
.faq-cta,
.final-cta-btn {
  transition: background-color 0.2s ease, transform 0.2s ease;
}


.products::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  background: rgba(0,0,0,0.04);
  transform: translateX(-50%);
}


.nav-cta:active,
.hero-cta:active,
.product-cta:active,
.faq-cta:active,
.final-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(224, 122, 122, 0.35);
}
.product-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(224, 122, 122, 0.35);
}
.products,
.faq,
.final-cta {
  position: relative;
}

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
body {
  font-family: var(--font-body);
}
h1, h2, h3 {
  font-family: var(--font-heading);
}

.section-divider {
  width: 48px;
  height: 2px;
  background-color: #e27d7d;
  margin: 32px auto;
  opacity: 0.6;
}

.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--accent-soft);
  margin: 10px auto 0;
}


.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover img {
  transform: scale(1.02);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: var(--accent);
  color: #ffffff;

  padding: 14px 28px;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;
  border: none;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cta-button:focus-visible {
  outline: 3px solid rgba(224, 122, 122, 0.45);
  outline-offset: 4px;
}
.cta-button + .cta-button {
  margin-left: 12px;
}


@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }
  /* Hero */
  .hero {
    padding: 48px 20px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    margin-bottom: 24px;
  }
  .hero-cta,
  .final-cta-btn {
    width: 100%;
    max-width: 360px;
    padding: 16px 0;
  }
  /* Products */
  .products {
    padding: 48px 20px;
  }
  .product-grid {
    gap: 28px;
  }
  .product-cta {
    padding: 14px 0;
    font-size: 15px;
  }
  .mobile-trust {
    display: block;
  }
  /* Brand story */
  .brand-story {
    padding: 48px 20px;
  }
  /* FAQ */
  .faq-item {
    margin-bottom: 20px;
  }
}

@media (hover: hover) {
  .nav-cta:hover,
  .hero-cta:hover,
  .product-cta:hover {
    transform: translateY(-1px);
  }
}
@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 8px 20px rgba(0,0,0,0.06),
      0 3px 8px rgba(0,0,0,0.04);
  }
}
@media (hover: hover) {
  .product-card:hover img {
    transform: scale(1.02);
  }
}
@media (hover: hover) {
  .product-cta:hover {
    transform: translateY(-1px);
  }
}
@media (max-width: 768px) {
  .cta-button {
    width: 100%;
    max-width: 360px;
  }

  .cta-button + .cta-button {
    margin-left: 0;
    margin-top: 12px;
  }
}
