:root {
  --sage: #c8d5b9;
  --lavender: #b4a7d6;
  --cream: #fdf6e3;
  --warm-pink: #e8b4b8;
  --brown: #6b5344;
  --brown-deep: #4e3a30;
  --white: #fffdf8;
  --shadow: 0 18px 45px rgba(107, 83, 68, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Tajawal", sans-serif;
  color: var(--brown-deep);
  background:
    radial-gradient(circle at top left, rgba(180, 167, 214, 0.24), transparent 26%),
    radial-gradient(circle at bottom right, rgba(232, 180, 184, 0.18), transparent 25%),
    linear-gradient(180deg, #fffdf7 0%, var(--cream) 44%, #f7f0e1 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 24px 24px, rgba(200, 213, 185, 0.2) 0 8px, transparent 9px),
    radial-gradient(circle at 74px 74px, rgba(180, 167, 214, 0.16) 0 6px, transparent 7px),
    radial-gradient(circle at 120px 24px, rgba(232, 180, 184, 0.18) 0 7px, transparent 8px);
  background-size: 148px 148px;
  opacity: 0.55;
}

body::after {
  background:
    linear-gradient(135deg, transparent 47%, rgba(107, 83, 68, 0.05) 48%, transparent 49%) 0 0 / 28px 28px,
    linear-gradient(225deg, transparent 47%, rgba(107, 83, 68, 0.05) 48%, transparent 49%) 0 0 / 28px 28px;
  opacity: 0.18;
}

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

button,
input,
a {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

input {
  border: 0;
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  padding: 28px 0 48px;
}

.hero,
.section-panel,
.products-section,
.footer {
  position: relative;
}

.hero {
  padding: 18px 0 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  margin-bottom: 36px;
  border: 1px solid rgba(107, 83, 68, 0.16);
  border-radius: 999px;
  background: rgba(253, 246, 227, 0.72);
  box-shadow: 0 8px 26px rgba(107, 83, 68, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brown-deep);
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(200, 213, 185, 0.85), rgba(232, 180, 184, 0.75));
  border-radius: 18px;
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(107, 83, 68, 0.12);
}

.brand strong {
  display: block;
  font-size: 1.35rem;
}

.brand small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.72;
}

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

.nav-links a,
.footer a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--brown-deep);
  transform: translateY(-1px);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.hero-text,
.hero-card,
.section-panel,
.products-section {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(107, 83, 68, 0.14);
  box-shadow: var(--shadow);
}

.hero-text {
  padding: 44px;
  border-radius: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown);
  font-family: "Caveat", cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.hero h1,
.section-heading h2,
.about h2,
.newsletter h2,
.hero-card h2 {
  margin: 0;
  color: var(--brown-deep);
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
}

.hero-description,
.section-copy,
.benefit-grid p,
.product-info p,
.about p,
.newsletter p,
.hero-card p,
.footer p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(78, 58, 48, 0.88);
}

.hero-description {
  max-width: 62ch;
  margin: 18px 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button,
.product-meta button,
.newsletter-form button {
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.product-meta button:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
}

.button.primary,
.product-meta button,
.newsletter-form button {
  background: linear-gradient(135deg, var(--sage), #d8e4c6);
  color: var(--brown-deep);
  box-shadow: 0 10px 24px rgba(200, 213, 185, 0.45);
}

.button.secondary {
  color: var(--brown-deep);
  background: rgba(180, 167, 214, 0.18);
  box-shadow: inset 0 0 0 1px rgba(107, 83, 68, 0.14);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(253, 246, 227, 0.96);
  border: 1px dashed rgba(107, 83, 68, 0.18);
}

.frame-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.frame-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(107, 83, 68, 0.15);
  border-radius: 24px;
  pointer-events: none;
}

.frame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 14px 14px, rgba(255, 255, 255, 0.65) 0 3px, transparent 4px) 0 0 / 28px 28px,
    radial-gradient(circle at calc(100% - 14px) 14px, rgba(255, 255, 255, 0.45) 0 3px, transparent 4px) 0 0 / 28px 28px;
  opacity: 0.45;
}

.hero-card {
  min-height: 100%;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(253, 246, 227, 0.95), rgba(255, 255, 255, 0.88)),
    linear-gradient(145deg, rgba(180, 167, 214, 0.25), rgba(200, 213, 185, 0.22));
}

.note-title {
  margin: 0 0 8px;
  font-family: "Caveat", cursive;
  font-size: 2rem;
  color: var(--brown);
}

.hero-card h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.bundle-price span,
.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown-deep);
}

.bundle-price small {
  color: rgba(78, 58, 48, 0.68);
}

.flower {
  position: absolute;
  width: 82px;
  aspect-ratio: 1;
  opacity: 0.7;
  filter: drop-shadow(0 5px 10px rgba(107, 83, 68, 0.12));
}

.flower::before,
.flower::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.flower::before {
  background:
    radial-gradient(circle at 50% 16%, rgba(232, 180, 184, 0.9) 0 18%, transparent 19%),
    radial-gradient(circle at 82% 42%, rgba(232, 180, 184, 0.82) 0 18%, transparent 19%),
    radial-gradient(circle at 70% 78%, rgba(232, 180, 184, 0.78) 0 18%, transparent 19%),
    radial-gradient(circle at 30% 78%, rgba(180, 167, 214, 0.78) 0 18%, transparent 19%),
    radial-gradient(circle at 18% 42%, rgba(200, 213, 185, 0.86) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, rgba(253, 246, 227, 0.95) 0 14%, transparent 15%);
}

.flower::after {
  background: linear-gradient(180deg, transparent 58%, rgba(200, 213, 185, 0.88) 59% 65%, transparent 66%);
  transform: translateY(54px) rotate(12deg);
}

.flower-a {
  top: 12px;
  left: 18px;
  transform: rotate(-14deg) scale(0.95);
}

.flower-b {
  right: 12px;
  top: 70px;
  transform: rotate(18deg) scale(0.78);
}

.flower-c {
  left: 40px;
  bottom: 8px;
  transform: rotate(-6deg) scale(0.72);
}

.section-panel,
.products-section {
  margin-top: 28px;
  border-radius: 34px;
  padding: 32px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading.center {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.section-heading h2,
.about h2,
.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-copy {
  max-width: 48ch;
  margin: 0;
}

.benefit-grid,
.product-grid,
.about {
  display: grid;
  gap: 20px;
}

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

.benefit-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(253, 246, 227, 0.9));
  border: 1px dashed rgba(107, 83, 68, 0.16);
}

.benefit-grid span {
  font-size: 2rem;
}

.benefit-grid h3,
.product-info h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
}

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

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 246, 227, 0.96));
}

.product-card img {
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}

.product-info {
  padding: 20px 20px 22px;
}

.product-info p {
  margin-top: 0;
  margin-bottom: 16px;
  min-height: 96px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta button {
  padding-inline: 18px;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 180, 184, 0.92);
  color: var(--brown-deep);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(232, 180, 184, 0.35);
}

.badge.alt {
  background: rgba(180, 167, 214, 0.92);
}

.about {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.quote-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(180, 167, 214, 0.16), rgba(255, 255, 255, 0.85));
}

.quote-mark {
  font-family: "Caveat", cursive;
  font-size: 4rem;
  line-height: 0.7;
  margin: 0 0 8px;
  color: var(--brown);
}

.quote-text {
  margin: 0 0 18px;
  font-size: 1.2rem;
  line-height: 1.9;
}

.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(107, 83, 68, 0.14);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  padding: 0 12px;
  color: var(--brown-deep);
}

.newsletter-form input::placeholder {
  color: rgba(78, 58, 48, 0.55);
}

.footer {
  margin-top: 28px;
  padding: 22px 10px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

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

  .hero-content,
  .about,
  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
    padding-top: 16px;
  }

  .topbar {
    border-radius: 30px;
    padding: 18px;
  }

  .topbar,
  .section-heading,
  .product-meta,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-text,
  .section-panel,
  .products-section {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .hero-card {
    padding: 28px 20px 24px;
  }

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

  .product-info p {
    min-height: auto;
  }

  .newsletter-form {
    border-radius: 24px;
  }

  .newsletter-form button,
  .product-meta button,
  .button {
    width: 100%;
    text-align: center;
  }
}
