:root {
  --pink: #ff69b4;
  --blue: #00bfff;
  --lemon: #fff44f;
  --purple: #9b59b6;
  --white: #ffffff;
  --text: #442154;
  --muted: #6f4e7d;
  --shadow: 0 22px 50px rgba(155, 89, 182, 0.18);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 105, 180, 0.25), transparent 26%),
    radial-gradient(circle at left center, rgba(0, 191, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #fff9ff 0%, #ffffff 45%, #fff8d7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 44px;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
}

.page-shell::before {
  width: 240px;
  height: 240px;
  background: rgba(255, 105, 180, 0.22);
  top: -60px;
  right: -40px;
}

.page-shell::after {
  width: 220px;
  height: 220px;
  background: rgba(0, 191, 255, 0.16);
  bottom: 40px;
  left: -60px;
}

.sprinkle {
  position: fixed;
  z-index: -1;
  width: 84px;
  height: 20px;
  border-radius: 999px;
  opacity: 0.3;
  animation: bob 6s ease-in-out infinite;
}

.sprinkle::before,
.sprinkle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.sprinkle-a {
  top: 15%;
  left: 4%;
  --rotation: -22deg;
  background: repeating-linear-gradient(90deg, var(--pink) 0 14px, var(--white) 14px 28px);
}

.sprinkle-b {
  top: 52%;
  right: 2%;
  --rotation: 28deg;
  background: repeating-linear-gradient(90deg, var(--blue) 0 14px, var(--white) 14px 28px);
  animation-delay: 0.8s;
}

.sprinkle-c {
  bottom: 14%;
  left: 12%;
  --rotation: 12deg;
  background: repeating-linear-gradient(90deg, var(--purple) 0 14px, var(--lemon) 14px 28px);
  animation-delay: 1.4s;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border: 3px solid rgba(255, 105, 180, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.95) 0 10%, rgba(255, 255, 255, 0.8) 10% 100%),
    linear-gradient(135deg, rgba(255, 105, 180, 0.18), rgba(0, 191, 255, 0.16));
  border-radius: 999px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 14px;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand h1,
.hero-copy h2,
.section-heading h2,
.collection-card h3,
.spotlight-copy h3,
.site-footer h2,
.promo-banner h2 {
  font-family: 'Fredoka One', cursive;
  letter-spacing: 0.02em;
}

.brand h1 {
  margin: 0;
  font-size: 1.45rem;
}

.brand-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 14px 28px rgba(255, 105, 180, 0.28);
}

.eyebrow,
.hero-tag,
.mini-label,
.product-badge,
.filter-pills span,
.cart-pill,
.main-nav a,
.btn,
.newsletter button {
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 105, 180, 0.16);
  color: var(--pink);
  transform: translateY(-2px);
}

.cart-pill {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--lemon), #fff8a1);
  border-radius: 999px;
  border: 2px solid rgba(155, 89, 182, 0.15);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-pill:hover,
.cart-pill:focus-visible,
.btn:hover,
.btn:focus-visible,
.product-meta a:hover,
.product-meta a:focus-visible,
.newsletter button:hover,
.newsletter button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 105, 180, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 34px;
  padding: 54px 0 26px;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.hero-copy h2 span {
  color: var(--pink);
  text-shadow: 3px 3px 0 rgba(255, 244, 79, 0.75);
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255, 244, 79, 0.75), rgba(255, 105, 180, 0.2));
  color: #5a2971;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.btn-secondary {
  border: 2px solid rgba(0, 191, 255, 0.25);
  background: rgba(255, 255, 255, 0.82);
}

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

.hero-stats li,
.collection-card,
.product-card,
.review-card,
.promo-banner,
.site-footer,
.spotlight-card {
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 18px 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 105, 180, 0.12);
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.65rem;
  font-family: 'Fredoka One', cursive;
}

.hero-card {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50% 50% 44% 56% / 54% 44% 56% 46%;
  animation: pulseFloat 8s ease-in-out infinite;
}

.hero-blob-pink {
  inset: 32px 110px auto auto;
  width: 140px;
  height: 140px;
  background: rgba(255, 105, 180, 0.26);
}

.hero-blob-blue {
  inset: auto auto 80px 30px;
  width: 180px;
  height: 180px;
  background: rgba(0, 191, 255, 0.2);
  animation-delay: 1.2s;
}

.hero-blob-yellow {
  inset: auto 26px 26px auto;
  width: 110px;
  height: 110px;
  background: rgba(255, 244, 79, 0.5);
  animation-delay: 2s;
}

.spotlight-card {
  position: relative;
  width: min(100%, 420px);
  background:
    radial-gradient(circle, rgba(255,255,255,0.88) 12%, transparent 13%) 0 0 / 22px 22px,
    linear-gradient(135deg, rgba(255, 105, 180, 0.25), rgba(0, 191, 255, 0.18), rgba(255, 244, 79, 0.45));
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 42px;
  padding: 18px;
  overflow: hidden;
  animation: bob 5s ease-in-out infinite;
}

.spotlight-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 28px;
}

.mini-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--purple);
}

.spotlight-copy {
  padding: 18px 10px 8px;
}

.spotlight-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.spotlight-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.spotlight-copy span {
  display: inline-block;
  margin-top: 14px;
  font-size: 1.6rem;
  color: var(--pink);
  font-family: 'Fredoka One', cursive;
}

.collections,
.reviews-grid,
.footer-meta {
  display: grid;
  gap: 18px;
}

.collections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 14px 0 10px;
}

.collection-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
}

.collection-card::after {
  content: '';
  position: absolute;
  inset: auto -30px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.24;
  z-index: -1;
}

.collection-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.collection-card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.collection-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(68, 33, 84, 0.88);
}

.stripes-card {
  background: repeating-linear-gradient(-45deg, rgba(255, 105, 180, 0.22) 0 14px, rgba(255, 255, 255, 0.85) 14px 28px);
}

.stripes-card::after {
  background: var(--pink);
}

.dots-card {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 12%, transparent 13%) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(0, 191, 255, 0.3), rgba(155, 89, 182, 0.18));
}

.dots-card::after {
  background: var(--blue);
}

.lemon-card {
  background: linear-gradient(135deg, rgba(255, 244, 79, 0.65), rgba(255, 105, 180, 0.18));
}

.lemon-card::after {
  background: var(--lemon);
}

.products-section,
.reviews-section {
  padding: 42px 0 10px;
}

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

.section-heading h2,
.promo-banner h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading > p,
.site-footer > div > p {
  max-width: 44ch;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer > div > p:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(155, 89, 182, 0.12);
  color: var(--purple);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.product-card:focus-within,
.review-card:hover,
.collection-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 24px 44px rgba(255, 105, 180, 0.2);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.featured-product {
  background:
    radial-gradient(circle, rgba(255,255,255,0.9) 12%, transparent 13%) 0 0 / 24px 24px,
    linear-gradient(180deg, rgba(255, 244, 79, 0.28), rgba(255, 255, 255, 0.95));
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
}

.alt-badge {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-info p {
  margin: 12px 0 18px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}

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

.product-meta strong {
  font-family: 'Fredoka One', cursive;
  color: var(--pink);
  font-size: 1.35rem;
}

.product-meta a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 191, 255, 0.1);
  color: var(--blue);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 38px 0 12px;
  padding: 28px 32px;
  border-radius: 34px;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 0 14px, rgba(255, 255, 255, 0.7) 14px 28px),
    linear-gradient(135deg, var(--pink), var(--blue), var(--purple));
  color: var(--white);
}

.promo-banner .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

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

.review-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 244, 79, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card span {
  color: #ffb800;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

.review-card p {
  margin: 14px 0 16px;
  line-height: 1.9;
  color: var(--muted);
}

.site-footer {
  margin-top: 38px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.25) 12%, transparent 13%) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(155, 89, 182, 0.92), rgba(255, 105, 180, 0.92));
  color: var(--white);
}

.newsletter {
  display: flex;
  gap: 12px;
  margin: 24px 0 20px;
}

.newsletter input {
  flex: 1;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.newsletter input::placeholder {
  color: rgba(68, 33, 84, 0.55);
}

.newsletter button {
  min-width: 150px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  background: var(--lemon);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: rgba(255, 255, 255, 0.92);
}

.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;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation, 0deg));
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.05);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .section-heading,
  .promo-banner {
    border-radius: 34px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

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

  .collections,
  .products-grid,
  .reviews-grid,
  .footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card img {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1000px);
    padding-top: 14px;
  }

  .site-header,
  .collection-card,
  .promo-banner,
  .site-footer,
  .review-card,
  .spotlight-card,
  .hero-stats li,
  .product-card {
    border-radius: 26px;
  }

  .hero-copy h2,
  .section-heading h2,
  .promo-banner h2,
  .site-footer h2 {
    line-height: 1.18;
  }

  .hero-card {
    min-height: auto;
  }

  .spotlight-card img {
    height: 300px;
  }

  .collections,
  .products-grid,
  .reviews-grid,
  .footer-meta,
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .filter-pills {
    gap: 10px;
  }

  .newsletter button,
  .btn,
  .product-meta a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}