:root {
  --yellow: #f8e06c;
  --orange: #ee7d3f;
  --purple: #9260d0;
  --green: #57be87;
  --ink: #183b2b;
  --cream: #fffaf0;
  --white: #fff;
  --shadow: 0 18px 50px rgba(44, 33, 20, 0.12);
  --radius: 30px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Poppins, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(22px, 5vw, 72px);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 59, 43, 0.09);
}
.brand {
  display: flex;
  align-items: center;
  width: 176px;
  height: 48px;
  overflow: visible;
}
.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-weight: 600;
  font-size: 14px;
}
.site-header nav a:hover {
  color: var(--purple);
}
.cart-button {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.cart-button strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}
.hero {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 30px;
  padding: 70px clamp(22px, 6vw, 90px) 80px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff9e9 0 58%, var(--yellow) 58%);
}
.hero-copy {
  max-width: 720px;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow.purple {
  background: #eadcfa;
  color: #6b3da6;
}
.eyebrow.orange {
  background: #ffe3d5;
  color: #a7491e;
}
.hero h1,
.section-heading h2,
.family-copy h2,
.how-section h2 {
  margin: 18px 0;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--purple);
  font-style: normal;
}
.hero-copy > p {
  font-size: 18px;
  line-height: 1.75;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(24, 59, 43, 0.13);
}
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.secondary {
  background: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  font-weight: 700;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(90%, 560px);
  aspect-ratio: 4/5;
  border: 10px solid #fff;
  border-radius: 48% 48% 34% 34%;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sunburst {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(255, 255, 255, 0.52) 0 7deg,
    transparent 7deg 15deg
  );
  animation: spin 40s linear infinite;
}
.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: 7px 7px 0 var(--ink);
}
.sticker-one {
  left: 1%;
  top: 9%;
  background: var(--orange);
  color: #fff;
}
.sticker-two {
  right: -1%;
  bottom: 7%;
  background: var(--purple);
  color: #fff;
  transform: rotate(9deg);
}
.doodle {
  position: absolute;
  z-index: 4;
  font-size: 55px;
  font-weight: 900;
}
.doodle-one {
  right: 8%;
  top: 5%;
  color: var(--purple);
}
.doodle-two {
  left: 0;
  bottom: 10%;
  color: var(--green);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.marquee {
  overflow: hidden;
  background: var(--green);
  border-block: 3px solid var(--ink);
  padding: 14px 0;
  font-weight: 900;
  white-space: nowrap;
}
.marquee div {
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee span {
  color: var(--yellow);
  padding: 0 16px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.products-section {
  padding: 110px clamp(22px, 6vw, 90px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 35px;
}
.section-heading h2,
.family-copy h2,
.how-section h2 {
  font-size: clamp(42px, 5vw, 72px);
}
.section-heading > p {
  max-width: 470px;
  line-height: 1.8;
}
.filters {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 20px;
}
.filter {
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  padding: 10px 18px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.filter.active {
  background: var(--purple);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(24, 59, 43, 0.12);
  transition: 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.product-card:hover img {
  transform: scale(1.04);
}
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.product-info h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}
.category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--purple);
}
.product-info p {
  font-size: 13px;
  line-height: 1.6;
  color: #52645c;
  min-height: 62px;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.price {
  font-size: 21px;
  font-weight: 900;
}
.add-button {
  border: 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}
.family-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--purple);
  color: #fff;
}
.family-image {
  min-height: 600px;
}
.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(32px, 6vw, 90px);
}
.family-copy p,
.family-copy li {
  line-height: 1.8;
}
.family-copy ul {
  padding-left: 22px;
}
.text-link {
  font-weight: 900;
  margin-top: 20px;
  color: var(--yellow);
}
.business-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  padding: 100px clamp(22px, 6vw, 90px);
  background: var(--green);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.business-copy {
  max-width: 720px;
}
.business-eyebrow {
  background: var(--purple);
  color: #fff;
}
.business-copy h2 {
  margin: 20px 0;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.business-copy > p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.75;
}
.business-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.business-benefits span {
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}
.business-button {
  background: var(--yellow);
  color: var(--ink);
}
.business-visual {
  position: relative;
  min-height: 520px;
}
.business-visual::before {
  content: "";
  position: absolute;
  inset: 4% -15% -12% 8%;
  border-radius: 50%;
  background: var(--purple);
  transform: rotate(-8deg);
}
.business-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.business-badge {
  position: absolute;
  z-index: 2;
  left: -36px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  width: 190px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-7deg);
}
.business-badge strong {
  font-size: 22px;
  line-height: 1.05;
}
.business-badge span {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
}
.how-section {
  text-align: center;
  padding: 110px clamp(22px, 6vw, 90px);
  background: var(--yellow);
}
.how-section h2 {
  margin-bottom: 55px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}
.steps article {
  padding: 34px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 var(--ink);
}
.steps strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -65px auto 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 26px;
}
.steps article:nth-child(2) strong {
  background: var(--purple);
}
.steps article:nth-child(3) strong {
  background: var(--green);
}
.steps h3 {
  font-size: 25px;
  margin: 0;
}
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 65px clamp(22px, 6vw, 90px) 35px;
  background: var(--ink);
  color: #fff;
}
footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer strong {
  color: var(--yellow);
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}
.footer-brand img {
  filter: brightness(0) invert(1);
  width: 170px;
  height: auto;
  object-fit: contain;
  object-position: left;
}
.cart-drawer {
  position: fixed;
  z-index: 50;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--cream);
  transform: translateX(105%);
  transition: 0.35s;
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.2);
}
.cart-drawer.open {
  transform: none;
}
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 18px;
}
.cart-head h2 {
  font-size: 38px;
  margin: 5px 0;
}
.cart-head button {
  border: 0;
  background: none;
  font-size: 42px;
  cursor: pointer;
}
.cart-items {
  overflow: auto;
  flex: 1;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
.cart-item h4 {
  margin: 0 0 5px;
}
.qty {
  display: flex;
  align-items: center;
  gap: 9px;
}
.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.cart-empty {
  margin: auto;
  text-align: center;
}
.cart-empty span {
  font-size: 60px;
  color: var(--purple);
}
.cart-footer {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}
.total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 15px;
}
.total strong {
  font-size: 25px;
}
.button.whatsapp {
  width: 100%;
  border: 0;
  background: #25d366;
  color: #102b1d;
}
.cart-footer small {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #68756e;
}
.overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(24, 59, 43, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.floating-wa {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #25d366;
  color: #102b1d;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}
.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 28px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 30px);
  transition: 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    background: linear-gradient(#fff9e9 0 52%, var(--yellow) 52%);
    padding-top: 55px;
  }
  .hero-visual {
    min-height: 540px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .family-section {
    grid-template-columns: 1fr;
  }
  .business-section {
    grid-template-columns: 1fr;
  }
  .business-visual {
    min-height: 480px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 580px) {
  .site-header {
    padding: 12px 16px;
  }
  .brand {
    width: 130px;
    height: 38px;
  }
  .brand img {
    width: 100%;
    height: 100%;
  }
  .cart-button span {
    display: none;
  }
  .hero {
    padding: 44px 18px 55px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-photo {
    width: 87%;
    border-radius: 40px;
  }
  .sunburst {
    width: 500px;
    height: 500px;
  }
  .sticker {
    width: 95px;
    height: 95px;
    font-size: 13px;
  }
  .sticker-one {
    left: 0;
  }
  .sticker-two {
    right: 0;
  }
  .products-section,
  .how-section {
    padding: 80px 18px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2,
  .family-copy h2,
  .how-section h2 {
    font-size: 42px;
  }
  .family-copy {
    padding: 65px 22px;
  }
  .family-image {
    min-height: 440px;
  }
  .business-section {
    padding: 75px 18px 90px;
  }
  .business-copy h2 {
    font-size: 43px;
  }
  .business-visual {
    min-height: 390px;
  }
  .business-badge {
    left: 4px;
    bottom: -28px;
    width: 170px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  footer small {
    grid-column: auto;
  }
  .trust-row {
    display: grid;
  }
  .hero-actions .button {
    width: 100%;
  }
}
