:root {
  --lavender: #a7a0d0;
  --peach: #d4a08c;
  --rose-gold: #b87a62;
  --background: #f7f5fb;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --muted: #ebe8f5;
  --muted-foreground: #5c5678;
  --border: #d9d4ea;
  --primary: #7a71b0;
  --primary-foreground: #ffffff;
  --accent: #d4a08c;
  --accent-foreground: #1a1a1a;
  --rose: #b87a62;
  --success: #4a7c59;
  --font-helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-helvetica);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container-page {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container-page {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-page {
    padding-inline: 2rem;
  }
}

.font-script,
.heading-display {
  font-family: "Dancing Script", cursive;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover:not(:disabled) {
  background: color-mix(in srgb, var(--primary) 88%, black);
}

.btn-secondary {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover:not(:disabled) {
  background: color-mix(in srgb, var(--accent) 90%, var(--rose-gold));
}

.input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  outline: none;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lavender) 35%, transparent);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}

.text-accent {
  color: var(--accent);
}
.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--muted-foreground);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 4.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .header-inner {
    height: 5rem;
  }
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.icon-btn {
  border: none;
  background: transparent;
  border-radius: 9999px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .count-badge {
  top: 2px;
  right: 2px;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .logo-img {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.desktop-nav {
  display: none;
  gap: 0.15rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .menu-toggle {
    display: none;
  }
}

.desktop-nav a,
.desktop-nav .nav-categories {
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.8);
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  z-index: 5;
}

.desktop-nav .nav-categories {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--muted) 70%, white);
  cursor: pointer;
  font: inherit;
  color: var(--foreground);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.desktop-nav .nav-categories-caret {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.desktop-nav .nav-categories[aria-expanded="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(122, 113, 176, 0.28);
}

.desktop-nav .nav-categories[aria-expanded="true"] .nav-categories-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav .nav-categories:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--foreground);
}

.desktop-nav .nav-categories:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  background: color-mix(in srgb, var(--lavender) 22%, white);
}

.desktop-nav .nav-categories[aria-expanded="true"]:hover {
  background: var(--primary);
  color: #fff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 15rem;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.12), 0 2px 6px rgba(26, 26, 26, 0.06);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 0.55rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.85);
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: color-mix(in srgb, var(--lavender) 22%, white);
  color: var(--foreground);
  outline: none;
}

.nav-dropdown-menu a.nav-dropdown-sale {
  color: var(--rose);
  font-weight: 600;
}

.nav-dropdown-menu a.nav-dropdown-sale:hover {
  background: color-mix(in srgb, var(--rose) 12%, transparent);
  color: var(--rose);
}

.nav-dropdown-divider {
  height: 1px;
  margin: 0.35rem 0.4rem;
  background: var(--border);
}

.desktop-nav a.nav-sale {
  color: var(--rose);
  font-weight: 600;
}

.desktop-nav a.nav-sale:hover,
.desktop-nav a.nav-sale.active {
  background: color-mix(in srgb, var(--rose) 12%, transparent);
  color: var(--rose);
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .desktop-nav a,
  .desktop-nav .nav-categories {
    padding: 0.45rem 0.55rem;
    font-size: 0.8125rem;
  }

  .desktop-nav .nav-categories {
    padding: 0.4rem 0.7rem;
  }
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 1;
}

.header-social {
  display: none;
  align-items: center;
  margin-right: 0.35rem;
  padding-right: 0.55rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.header-social .social-row {
  gap: 0.4rem;
  flex-wrap: nowrap;
}

@media (min-width: 1024px) {
  .header-social {
    display: flex;
  }
}

.social-btn--header {
  width: 2.15rem;
  height: 2.15rem;
  background: #fff;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-btn--header .social-icon {
  width: 1rem;
  height: 1rem;
}

.social-btn--header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.social-btn--header[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  border-color: transparent;
  color: #fff;
}

.social-btn--header[aria-label="YouTube"]:hover {
  background: #ff0000;
  border-color: transparent;
  color: #fff;
}

.social-btn--header[aria-label="TikTok"]:hover {
  background: #111;
  border-color: transparent;
  color: #fff;
}

.count-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 0.95rem;
  height: 0.95rem;
  padding: 0 0.2rem;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.count-badge[hidden] {
  display: none !important;
}

.search-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 0.75rem 0;
  display: none;
}

.search-bar.open {
  display: block;
}

.search-bar form {
  display: flex;
  gap: 0.5rem;
}

/* Marquee */
.announcement-marquee {
  overflow: hidden;
  background: #000;
  color: #fff;
}

.marquee-track {
  width: max-content;
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 50s linear infinite;
  padding: 0.65rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .marquee-track {
    font-size: 0.875rem;
  }
}

.marquee-track--slow {
  animation-duration: 70s;
}

.marquee-track--reverse {
  animation-name: marquee-scroll-reverse;
  animation-duration: 55s;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee-hollow {
  color: transparent;
  -webkit-text-stroke: 1.25px var(--foreground);
}

.double-marquee {
  overflow: hidden;
  padding: 0.15rem 0 0.75rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--lavender) 12%, transparent) 50%,
    transparent 100%
  );
}

.double-marquee .marquee-track {
  padding: 0;
  line-height: 1;
}

.double-marquee .marquee-track--reverse {
  margin-top: 0;
}

/* Banner */
.banner-section {
  border-bottom: 1px solid var(--border);
  background: #f3f1f6;
}

.banner-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .banner-frame {
    aspect-ratio: 2.4 / 1;
  }
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05) translate3d(1.25%, 0, 0);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.banner-slide.active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 1;
}

.banner-slide.is-leaving {
  opacity: 0;
  transform: scale(1.02) translate3d(-1%, 0, 0);
  z-index: 0;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7.5s ease-out;
  will-change: transform;
}

.banner-slide.active img {
  transform: scale(1.04);
}

.banner-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.banner-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: none;
  background: rgba(26, 26, 26, 0.28);
  cursor: pointer;
  padding: 0;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.banner-dots button.active {
  width: 1.55rem;
  background: var(--primary);
}

.banner-caption {
  background: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: none;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--muted);
  overflow: hidden;
  border-radius: 0.35rem;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-img .badge {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  z-index: 2;
  color: #fff;
  border-radius: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-sale {
  background: var(--primary);
}

.badge-hot {
  background: var(--rose);
}

.badge-new {
  background: var(--success);
}

.product-card-body {
  padding: 0.75rem 0.1rem 0.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.product-card-price {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9rem;
}

.product-card-price .text-muted {
  color: var(--muted-foreground);
}

.product-card-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.65rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.product-card-actions .btn,
.product-add-btn {
  padding: 0.5rem 0.6rem;
  font-size: 0.72rem;
  flex: 1;
  min-height: 2.15rem;
  white-space: nowrap;
  border-radius: 0.35rem;
}

@media (max-width: 380px) {
  .product-add-btn span {
    font-size: 0.65rem;
  }
}

.wish-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.35rem;
  border: 1px solid var(--border);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--muted-foreground);
}

.wish-btn.active {
  color: var(--rose);
  border-color: color-mix(in srgb, var(--rose) 45%, var(--border));
  background: color-mix(in srgb, var(--peach) 18%, transparent);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.section-head {
  margin-bottom: 2rem;
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.section-head--center {
  text-align: center;
}

.section-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0;
}

.section-title {
  margin: 0.25rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
}

/* Product detail — full-width layout */
.container-page.product-page {
  max-width: none;
  width: 100%;
}

.product-detail {
  width: 100%;
}

.product-layout {
  display: grid;
  gap: 2.5rem;
  width: 100%;
}

.product-layout > * {
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }
  .buy-panel {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

.buy-panel .btn-accent {
  width: 100%;
}

.gallery-carousel {
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--muted), #f3f0f8, color-mix(in srgb, var(--peach) 25%, transparent));
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  border: none;
  padding: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .gallery-main {
    aspect-ratio: 1;
  }
}

@media (min-width: 1024px) {
  .gallery-main {
    aspect-ratio: 4 / 5;
  }
}

.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.gallery-main img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.12);
  transition: background 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}

.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav--prev {
  left: 0.75rem;
}

.gallery-nav--next {
  right: 0.75rem;
}

.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  pointer-events: none;
}

.gallery-dot {
  pointer-events: auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s;
}

.gallery-dot.active {
  width: 1.35rem;
  background: #fff;
}

.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  margin-top: 0.85rem;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumbs button {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--muted);
  flex-shrink: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.gallery-thumbs button.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lavender) 35%, transparent);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-row {
  display: flex;
  gap: 1rem;
}

.gallery-thumbs-vert {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: 4rem;
  max-height: min(72vh, 640px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.gallery-thumbs-vert .gallery-thumb {
  transition: border-color 0.35s, box-shadow 0.35s;
}

.gallery-thumbs-vert .gallery-thumb.active {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lavender) 35%, transparent);
}

@media (min-width: 1024px) {
  .gallery-thumbs-vert {
    display: flex;
  }
  .gallery-thumbs {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-main img,
  .gallery-dot,
  .gallery-thumbs button {
    transition: none !important;
  }
}

.why-dazzle {
  border-block: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  padding-block: 2.25rem;
  margin-top: 3rem;
}

.why-dazzle-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

.why-dazzle-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .why-dazzle-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }
}

.why-dazzle-list li {
  position: relative;
  padding-inline-start: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-foreground);
  font-weight: 500;
}

.why-dazzle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--peach) 45%, transparent);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.accordion-panel {
  display: none;
  padding-bottom: 1.5rem;
}

.accordion-panel.open {
  display: block;
}

.product-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 40;
  bottom: calc(4.15rem + env(safe-area-inset-bottom, 0px));
  padding: 0 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: 0.3s;
}

.product-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .product-sticky-cta {
    display: none;
  }
}

.sticky-float-btn {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border: none;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(122, 113, 176, 0.45);
  animation: add-cart-float 2.2s ease-in-out infinite;
}

@keyframes add-cart-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.add-to-cart-pulse:not(:disabled) {
  animation: add-cart-pulse 2.4s ease-in-out infinite;
}

@keyframes add-cart-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: #5c5680;
  color: #fff;
  padding-bottom: calc(3.65rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 2.75rem 2.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .footer-grid {
    gap: 2.5rem;
    padding-block: 3.5rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--peach);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 1rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.footer-credit {
  font-size: 0.8125rem;
}

.footer-credit-brand {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: linear-gradient(
    110deg,
    #f5c6a5 0%,
    #f5c6a5 35%,
    #fff6e8 48%,
    #ffffff 50%,
    #fff6e8 52%,
    #f5c6a5 65%,
    #f5c6a5 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: footer-credit-shine 2.4s linear infinite;
}

.footer-credit-brand:hover {
  text-decoration: underline;
  text-decoration-color: var(--peach);
  animation-duration: 1.2s;
}

@keyframes footer-credit-shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Mobile menu / overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  pointer-events: none;
}

.overlay.open {
  pointer-events: auto;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  border: none;
  width: 100%;
  cursor: pointer;
}

.overlay.open .overlay-backdrop {
  opacity: 1;
}

.mobile-drawer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: min(88%, 22rem);
  background: #fff;
  color: #333;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.overlay.open .mobile-drawer {
  transform: translateX(0);
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.drawer-link:hover {
  background: #fafafa;
}

.thumb-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f1f6;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.thumb-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.cart-overlay.open {
  pointer-events: auto;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background: var(--background);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-overlay.open .cart-panel {
  transform: translateX(0);
}

.cart-overlay .overlay-backdrop {
  opacity: 0;
}

.cart-overlay.open .overlay-backdrop {
  opacity: 1;
}

/* Bottom nav */
.bottom-nav {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 3.65rem;
  max-width: 32rem;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  color: #000;
  gap: 0.2rem;
  padding: 0;
}

.bottom-nav .nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  overflow: visible;
}

.bottom-nav .nav-icon .count-badge {
  top: -5px;
  right: -8px;
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
  main {
    padding-bottom: 0 !important;
  }
}

main {
  flex: 1;
  padding-bottom: calc(3.65rem + env(safe-area-inset-bottom, 0px));
}

.categories-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.categories-sheet.open {
  pointer-events: auto;
}

.categories-panel {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: min(92vh, 40rem);
  max-height: 92vh;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  transform: translateY(100%);
  transition: transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
}

.categories-sheet.open .categories-panel {
  transform: translateY(0);
}

.categories-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
}

.categories-panel-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.categories-list {
  list-style: none;
  margin: 0;
  padding: 0 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
}

.categories-list li {
  border-bottom: 1px solid #eee;
}

.categories-list a {
  display: block;
  padding: 0.95rem 1.25rem;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
}

.categories-list a:active,
.categories-list a:hover {
  background: color-mix(in srgb, var(--lavender) 18%, white);
}

.categories-list-sale {
  color: var(--rose) !important;
  font-weight: 600;
}

.categories-sheet .overlay-backdrop {
  opacity: 0;
}

.categories-sheet.open .overlay-backdrop {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--card);
}

.qty-control button {
  border: none;
  background: none;
  padding: 0.75rem;
  cursor: pointer;
}

.qty-control span {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  color: inherit;
}

.social-btn--circle {
  width: 2.5rem;
  height: 2.5rem;
  background: #f3f1f6;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-btn--circle:hover {
  background: var(--primary);
  color: #fff;
}

.social-btn--footer {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-btn--footer:hover {
  background: rgba(255, 255, 255, 0.22);
}

.social-btn--home {
  width: 3.5rem;
  height: 3.5rem;
  background: color-mix(in srgb, var(--lavender) 45%, white);
  color: var(--foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.social-btn--home .social-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.social-btn--home:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-btn-text {
  gap: 0.45rem;
}

.social-btn-text .social-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .social-row {
    justify-content: inherit;
  }
}

.footer-about a:hover {
  text-decoration: underline;
}

.footer-follow-text {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 16rem;
}

.footer-follow-icons {
  margin-top: 1.25rem;
}

.footer-follow-icons .social-btn--footer {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-follow-icons .social-btn--footer:hover {
  background: var(--peach);
  color: var(--foreground);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-follow-icons .social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-follow-wa {
  margin-top: 1.25rem;
}

/* Homepage FAQs */
.faqs-section {
  text-align: center;
}

.faqs-head {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.faqs-intro {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.faqs-list {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.15rem 1rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.faq-item a {
  color: var(--primary);
  font-weight: 600;
}

.faqs-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Soft scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

.payment-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.payment-legend {
  padding: 0;
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.payment-options {
  display: grid;
  gap: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--muted) 45%, var(--card));
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, var(--card));
}

.payment-option input {
  margin: 0;
  accent-color: var(--primary);
}

.payment-option-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-details {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--card);
}

.payment-detail-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.payment-detail-grid {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-size: 0.875rem;
}

.payment-detail-grid > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
}

.payment-detail-grid strong {
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}

.payment-advance-note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
}

/* WhatsApp floating widget */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.wa-float__icon {
  width: 1.65rem;
  height: 1.65rem;
  position: relative;
  z-index: 1;
}

.wa-float__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-float-pulse 2.2s ease-out infinite;
  z-index: 0;
}

@keyframes wa-float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .wa-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.65rem;
    height: 3.65rem;
  }

  .wa-float__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .add-to-cart-pulse,
  .sticky-float-btn,
  .wa-float__pulse {
    animation: none !important;
  }

  .wa-float:hover {
    transform: none;
  }

  .banner-slide,
  .banner-slide img,
  .banner-dots button {
    transition: none !important;
  }

  .banner-slide {
    transform: none !important;
  }

  .banner-slide.active img {
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
