/* =========================================================
   Myzo.store — Color Burst Marketplace
   Pure CSS3 · Mobile-first · No frameworks
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  --bg-peach: #FFF9F5;
  --bg-sky: #F8FCFF;
  --grad-primary: linear-gradient(135deg, #FF5F6D 0%, #FFC371 100%);
  --grad-secondary: linear-gradient(135deg, #36D1DC 0%, #5B86E5 100%);
  --grad-accent: linear-gradient(135deg, #A18CD1 0%, #FBC2EB 100%);
  --grad-highlight: linear-gradient(135deg, #84FAB0 0%, #8FD3F4 100%);
  --grad-cta: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
  --text: #202124;
  --text-muted: #6B7280;
  --card: #FFFFFF;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: 0 12px 40px rgba(32, 33, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(32, 33, 36, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --font-display: "Plus Jakarta Sans", "Urbanist", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-alt: "Urbanist", "Plus Jakarta Sans", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-peach);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:focus-visible {
  outline: 3px solid #5B86E5;
  outline-offset: 3px;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 95, 109, 0.35);
}

.btn-cta {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 10px 28px rgba(245, 87, 108, 0.35);
}

.btn-cta::after,
.btn-primary::after,
.btn-cart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn-cta:hover::after,
.btn-primary:hover::after,
.btn-cart:hover::after {
  transform: translateX(120%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 2px solid rgba(255, 95, 109, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: #FF5F6D;
  box-shadow: 0 8px 24px rgba(255, 95, 109, 0.15);
}

.btn-light {
  background: #fff;
  color: #F5576C;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn-nav {
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.btn-cart {
  width: 100%;
  background: var(--grad-cta);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(245, 87, 108, 0.28);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 249, 245, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(32, 33, 36, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.75rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
  z-index: 2;
}

.logo span {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 2;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  height: 2.5px;
  width: 1.4rem;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle:checked ~ .nav-burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(255, 249, 245, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-family: var(--font-alt);
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s, background 0.25s;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 95, 109, 0.08);
}

.nav-toggle:checked ~ .nav-menu {
  display: flex;
}

.btn-nav {
  display: none;
}

@media (min-width: 900px) {
  .nav-burger {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 0.5rem 0.9rem;
  }

  .btn-nav {
    display: inline-flex;
  }

  .nav {
    gap: 1.5rem;
  }

  .logo {
    margin-right: auto;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3.5rem) 0 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 195, 113, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(54, 209, 220, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 50% at 60% 80%, rgba(240, 147, 251, 0.25), transparent 50%),
    linear-gradient(165deg, #FFF9F5 0%, #F8FCFF 45%, #FFF0F5 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: var(--grad-primary);
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.blob-2 {
  width: 220px;
  height: 220px;
  background: var(--grad-secondary);
  top: 45%;
  right: -3%;
  animation-delay: -4s;
}

.blob-3 {
  width: 180px;
  height: 180px;
  background: var(--grad-accent);
  bottom: 12%;
  left: 35%;
  animation-delay: -7s;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--grad-highlight);
  opacity: 0.45;
  animation: float 9s ease-in-out infinite alternate;
}

.bubble-1 { width: 48px; height: 48px; top: 18%; left: 18%; }
.bubble-2 { width: 32px; height: 32px; top: 30%; right: 22%; animation-delay: -2s; background: var(--grad-cta); }
.bubble-3 { width: 64px; height: 64px; bottom: 28%; right: 12%; animation-delay: -5s; background: var(--grad-primary); }
.bubble-4 { width: 24px; height: 24px; bottom: 40%; left: 10%; animation-delay: -3s; background: var(--grad-accent); }

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 95, 109, 0.18);
  animation: pulse-ring 8s ease-in-out infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  right: 8%;
}

.ring-2 {
  width: 140px;
  height: 140px;
  bottom: 20%;
  left: 8%;
  border-color: rgba(54, 209, 220, 0.22);
  animation-delay: -3s;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 195, 113, 0.8));
}

.s1 { top: 22%; left: 48%; animation-delay: 0s; }
.s2 { top: 40%; right: 28%; width: 8px; height: 8px; animation-delay: 0.8s; }
.s3 { bottom: 35%; left: 28%; width: 12px; height: 12px; animation-delay: 1.4s; }
.s4 { top: 55%; left: 72%; animation-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -22px) scale(1.05); }
  66% { transform: translate(-14px, 12px) scale(0.96); }
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 0.35; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  animation: fade-up 0.9s var(--ease) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-hero {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, #FF5F6D, #F093FB, #36D1DC, #FFC371);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.15rem;
}

.hero-dash {
  display: none;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0.2em;
}

.hero-tagline {
  display: block;
}

@media (min-width: 700px) {
  .brand-hero {
    display: inline;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  }

  .hero-dash {
    display: inline;
    font-size: clamp(1.65rem, 4.5vw, 2.65rem);
    vertical-align: middle;
  }

  .hero-tagline {
    display: inline;
  }
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ---------- Categories ---------- */
.categories {
  background: var(--bg-peach);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.category-card:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.category-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
}

.strip-coral { background: var(--grad-primary); }
.strip-blue { background: var(--grad-secondary); }
.strip-mint { background: var(--grad-highlight); }
.strip-lavender { background: var(--grad-accent); }
.strip-pink { background: var(--grad-cta); }
.strip-gold { background: linear-gradient(135deg, #FFC371, #FF5F6D); }

.category-badge {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
}

.badge-coral { background: rgba(255, 95, 109, 0.15); }
.badge-blue { background: rgba(54, 209, 220, 0.18); animation-delay: -1s; }
.badge-mint { background: rgba(132, 250, 176, 0.25); animation-delay: -2s; }
.badge-lavender { background: rgba(161, 140, 209, 0.2); animation-delay: -0.5s; }
.badge-pink { background: rgba(240, 147, 251, 0.2); animation-delay: -1.5s; }
.badge-gold { background: rgba(255, 195, 113, 0.25); animation-delay: -2.5s; }

/* CSS-only category icons */
.icon-shape {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  position: relative;
}

.icon-fashion {
  border: 2.5px solid #FF5F6D;
  border-radius: 50% 50% 40% 40%;
  width: 0.95rem;
  height: 1.15rem;
}

.icon-fashion::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55rem;
  height: 0.3rem;
  border: 2px solid #FF5F6D;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.icon-tech {
  border: 2.5px solid #36D1DC;
  border-radius: 4px;
  width: 0.85rem;
  height: 1.2rem;
}

.icon-tech::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #36D1DC;
}

.icon-home {
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-bottom: 0.5rem solid #5B86E5;
  background: transparent;
}

.icon-home::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: -0.4rem;
  width: 0.8rem;
  height: 0.55rem;
  background: #5B86E5;
  border-radius: 0 0 2px 2px;
}

.icon-beauty {
  width: 0.55rem;
  height: 1.15rem;
  background: linear-gradient(180deg, #A18CD1, #FBC2EB);
  border-radius: 4px 4px 8px 8px;
}

.icon-beauty::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.7rem;
  height: 0.35rem;
  background: #A18CD1;
  border-radius: 3px;
}

.icon-bag {
  width: 1.05rem;
  height: 0.85rem;
  border: 2.5px solid #F5576C;
  border-radius: 4px 4px 8px 8px;
  margin-top: 0.25rem;
}

.icon-bag::before {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55rem;
  height: 0.35rem;
  border: 2.5px solid #F5576C;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.icon-life {
  width: 1rem;
  height: 1rem;
  background: conic-gradient(from 0deg, #FFC371, #FF5F6D, #FFC371);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.category-card h3 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.category-link {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Best Sellers ---------- */
.bestsellers {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(161, 140, 209, 0.12), transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(54, 209, 220, 0.12), transparent 40%),
    var(--bg-sky);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, #FF5F6D, #FFC371, #36D1DC, #F093FB);
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  animation: border-flow 3s linear infinite;
  z-index: 1;
}

@keyframes border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  opacity: 1;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  transition: transform 0.55s var(--ease);
}

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

.img-1 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #FF5F6D, #FFC371);
}
.img-2 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #36D1DC, #5B86E5);
}
.img-3 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #84FAB0, #8FD3F4);
}
.img-4 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #A18CD1, #FBC2EB);
}
.img-5 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #F093FB, #F5576C);
}
.img-6 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(160deg, #FFC371, #84FAB0);
}

.discount-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 6px 16px rgba(245, 87, 108, 0.35);
}

.wishlist {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 1.1rem;
  color: #F5576C;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.wishlist:hover {
  transform: scale(1.1);
  background: #fff;
}

.product-body {
  padding: 1.15rem 1.25rem 1.35rem;
  position: relative;
  z-index: 2;
  background: var(--card);
}

.product-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.stars {
  color: #FFC371;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.rating-num {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  position: relative;
  margin-inline: auto;
  width: calc(100% - 2.5rem);
  max-width: 1120px;
  border-radius: calc(var(--radius) + 8px);
  padding: 4rem 1.5rem;
  overflow: hidden;
  background: var(--grad-cta);
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 60px rgba(245, 87, 108, 0.3);
}

.promo-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(2px);
}

.promo-blob.p1 {
  width: 200px;
  height: 200px;
  background: #FFC371;
  top: -60px;
  left: -40px;
  animation: float 10s ease-in-out infinite;
}

.promo-blob.p2 {
  width: 160px;
  height: 160px;
  background: #A18CD1;
  bottom: -50px;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.promo-blob.p3 {
  width: 100px;
  height: 100px;
  background: #36D1DC;
  top: 20%;
  right: -30px;
  animation: float 7s ease-in-out infinite;
}

.promo-inner {
  position: relative;
  z-index: 1;
}

.promo-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.promo-banner p {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
  font-size: 1.05rem;
}

/* ---------- Why Myzo ---------- */
.why-myzo {
  background: var(--bg-peach);
}

.features-wrap {
  position: relative;
}

.feature-curves {
  display: none;
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.55;
  pointer-events: none;
}

@media (min-width: 900px) {
  .feature-curves {
    display: block;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: transform 0.4s var(--ease);
  animation: float 7s ease-in-out infinite;
}

.fc-1 { animation-delay: 0s; }
.fc-2 { animation-delay: -1.5s; }
.fc-3 { animation-delay: -3s; }
.fc-4 { animation-delay: -4.5s; }

.feature-card:hover {
  transform: translateY(-8px);
  animation-play-state: paused;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}

.icon-coral { background: rgba(255, 95, 109, 0.15); }
.icon-blue { background: rgba(54, 209, 220, 0.18); }
.icon-mint { background: rgba(132, 250, 176, 0.22); }
.icon-lavender { background: rgba(161, 140, 209, 0.2); }

.feat-mark {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
}

.feat-bolt {
  width: 0.7rem;
  height: 1.1rem;
  background: #FF5F6D;
  clip-path: polygon(55% 0%, 10% 55%, 42% 55%, 35% 100%, 90% 42%, 55% 42%);
}

.feat-lock {
  width: 0.85rem;
  height: 0.65rem;
  background: #36D1DC;
  border-radius: 3px;
  margin-top: 0.35rem;
}

.feat-lock::before {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.45rem;
  border: 2.5px solid #36D1DC;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.feat-return {
  width: 1rem;
  height: 1rem;
  border: 2.5px solid #5B86E5;
  border-radius: 50%;
  border-top-color: transparent;
}

.feat-return::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  border: 4px solid transparent;
  border-bottom-color: #5B86E5;
  transform: rotate(45deg);
}

.feat-chat {
  width: 1.1rem;
  height: 0.8rem;
  background: #A18CD1;
  border-radius: 8px;
}

.feat-chat::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0.25rem;
  border: 5px solid transparent;
  border-top-color: #A18CD1;
  border-left-width: 0;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Trending Collection ---------- */
.trending {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 95, 109, 0.1), transparent 45%),
    var(--bg-sky);
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-auto-rows: 200px;
}

@media (min-width: 700px) {
  .trending-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 180px 200px;
  }

  .trend-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .trend-tall {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
  }

  .trend-wide {
    grid-column: 2 / 5;
    grid-row: 3 / 4;
  }
}

.trend-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  min-height: 200px;
  box-shadow: var(--shadow);
}

.trend-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.ti-1 { background: linear-gradient(135deg, #FF5F6D 0%, #FFC371 50%, #FBC2EB 100%); }
.ti-2 { background: linear-gradient(160deg, #36D1DC, #5B86E5); }
.ti-3 { background: linear-gradient(145deg, #A18CD1, #FBC2EB); }
.ti-4 { background: linear-gradient(145deg, #F093FB, #F5576C); }
.ti-5 { background: linear-gradient(120deg, #84FAB0, #8FD3F4, #A18CD1); }

.trend-card:hover .trend-img {
  transform: scale(1.1);
}

.trend-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(32, 33, 36, 0.55) 0%, transparent 60%);
  opacity: 0.9;
  transition: opacity 0.4s var(--ease), background 0.4s;
}

.trend-card:hover .trend-overlay {
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(240, 147, 251, 0.55) 0%,
    rgba(54, 209, 220, 0.25) 40%,
    transparent 70%
  );
}

.trend-overlay h3 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.25rem;
  color: #fff;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}

.trend-card:hover .trend-overlay h3 {
  transform: translateY(0);
}

.trend-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F5576C;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--bg-peach);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--grad-accent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-card:nth-child(2)::before {
  background: var(--grad-secondary);
}

.review-card:nth-child(3)::before {
  background: var(--grad-primary);
}

.review-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
}

.review-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(0.5deg);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.av-1 { background: var(--grad-primary); }
.av-2 { background: var(--grad-secondary); }
.av-3 { background: var(--grad-accent); }

.reviewer {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 1rem;
}

.stars.colorful {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Special Offers ---------- */
.offers {
  background: var(--bg-sky);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-flash { background: var(--grad-primary); }
.offer-new { background: var(--grad-secondary); }
.offer-limited { background: var(--grad-accent); }

.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.offer-card p {
  opacity: 0.95;
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
  max-width: 18rem;
}

.offer-cta {
  font-family: var(--font-alt);
  font-weight: 700;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 0.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s, transform 0.3s;
}

.offer-cta:hover {
  border-color: #fff;
  transform: translateX(4px);
}

.shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine-sweep 4.5s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%, 40% { left: -60%; }
  70%, 100% { left: 130%; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.newsletter-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(255, 95, 109, 0.22) 0%, transparent 45%),
    radial-gradient(at 80% 20%, rgba(54, 209, 220, 0.2) 0%, transparent 40%),
    radial-gradient(at 50% 80%, rgba(161, 140, 209, 0.22) 0%, transparent 45%),
    radial-gradient(at 70% 60%, rgba(132, 250, 176, 0.15) 0%, transparent 40%),
    var(--bg-peach);
  animation: mesh-shift 12s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(12deg); }
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.newsletter-inner p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .newsletter-form {
    flex-direction: row;
    background: var(--card);
    padding: 0.4rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

@media (min-width: 560px) {
  .newsletter-form input {
    border: none;
    background: transparent;
    box-shadow: none;
  }
}

.newsletter-form input:focus {
  border-color: #F093FB;
  box-shadow: 0 0 0 3px rgba(240, 147, 251, 0.25);
}

.newsletter-form input::placeholder {
  color: #9CA3AF;
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #FFF9F5 0%, #F0F7FF 100%);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 560px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  max-width: 16rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.social:hover {
  transform: translateY(-3px) scale(1.08);
}

.s-coral { background: var(--grad-primary); }
.s-blue { background: var(--grad-secondary); }
.s-lavender { background: var(--grad-accent); }
.s-mint { background: var(--grad-highlight); color: var(--text); }

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: #F5576C;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.pay-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Accessibility & Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.nav-burger:focus-visible {
  outline: 3px solid #5B86E5;
  outline-offset: 3px;
}

.categories,
.bestsellers,
.why-myzo,
.trending,
.reviews,
.offers {
  animation: fade-up 0.8s var(--ease) both;
}
