:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f6f3;
  --color-bg-muted: #efeeea;
  --color-surface: #ffffff;
  --color-text: #1f2430;
  --color-muted: #5c6370;
  --color-navy: #2b3344;
  --color-pink: #d63384;
  --color-pink-bright: #e91e8c;
  --color-pink-soft: #fce7f3;
  --color-teal: #0d9488;
  --color-gold: #c9a227;
  --color-gold-dark: #a88418;
  --color-accent: #6366f1;
  --color-accent-hot: #e91e8c;
  --color-success: #059669;
  --color-border: rgba(31, 36, 48, 0.1);
  --shadow-soft: 0 18px 50px rgba(31, 36, 48, 0.08);
  --shadow-card: 0 8px 30px rgba(31, 36, 48, 0.06);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1320px;
  --header-height: 78px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --announcement-height: 40px;
  --quiz-height: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  background: var(--color-bg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.button--gold,
.button--primary {
  background: var(--color-pink-bright);
  color: #fff;
  border-color: transparent;
}

.button--gold:hover,
.button--primary:hover {
  background: #d01678;
}

.button--outline {
  background: transparent;
  border-color: var(--color-text);
}

/* Announcement + quiz */
.announcement-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #d63384, #e91e8c, #d63384);
  height: var(--announcement-height);
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  animation: marquee-left 24s linear infinite;
}

.announcement-bar__item {
  padding: 0.6rem 2rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

.quiz-bar {
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.quiz-bar__inner {
  min-height: var(--quiz-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
}

.quiz-bar a {
  color: var(--color-pink-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - var(--announcement-height) - var(--quiz-height)));
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-header__brand .custom-logo-link,
.site-header__title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-navy);
}

.site-header__sparkle {
  color: var(--color-pink-bright);
}

.primary-menu {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-muted);
  transition: color 0.3s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--color-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__search-toggle,
.site-header__account,
.site-header__cart {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  color: var(--color-navy);
  transition: transform 0.3s var(--ease-out), background 0.3s ease, border-color 0.3s ease;
}

.site-header__search-toggle:hover,
.site-header__account:hover,
.site-header__cart:hover {
  transform: translateY(-2px);
  background: var(--color-pink-soft);
  border-color: rgba(233, 30, 140, 0.25);
  color: var(--color-pink-bright);
}

.site-header__icon {
  width: 20px;
  height: 20px;
}

.site-header__cart {
  position: relative;
}

.sparkle-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-pink-bright);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: transparent;
}

.site-header__toggle-bar {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
}

.header-search {
  border-top: 1px solid var(--color-border);
  padding: 0.85rem 0 1rem;
  background: #fff;
}

.header-search__form {
  position: relative;
}

.header-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
  z-index: 2;
}

.header-search__input {
  width: 100%;
  padding: 0.95rem 1.1rem 0.95rem 3rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search__input:focus {
  outline: none;
  border-color: rgba(233, 30, 140, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.08);
}

.header-search__results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 120;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.header-search__result {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.header-search__result:last-child {
  border-bottom: 0;
}

.header-search__result:hover {
  background: var(--color-bg-soft);
}

.header-search__result img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--color-bg-muted);
}

.header-search__result-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
}

.header-search__result-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.header-search__empty {
  padding: 1rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.site-header__custom-project {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: var(--color-pink-soft);
  color: var(--color-pink-bright);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.site-header__custom-project:hover {
  transform: translateY(-2px);
  background: #fbcfe8;
}

.category-chip--custom {
  background: var(--color-pink-bright);
  border-color: var(--color-pink-bright);
  color: #fff;
}

.category-chip--custom:hover {
  background: #d01678;
  color: #fff;
}

.custom-project-page {
  background: var(--color-bg-soft);
}

.custom-project-page [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.custom-project-hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(135deg, #fce7f3, #eef2ff);
}

.custom-project-hero__inner {
  max-width: 760px;
}

.custom-project-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink-bright);
}

.custom-project-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.85rem;
  color: var(--color-navy);
}

.custom-project-hero p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.custom-project-steps {
  padding: 2.5rem 0;
}

.custom-project-studio {
  padding: 0 0 2.5rem;
}

.custom-project-studio__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.custom-project-studio__upload,
.custom-project-studio__preview {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.custom-project-studio__upload h2,
.custom-project-studio__preview h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.custom-project-studio__hint,
.custom-project-studio__preview p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.custom-project-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 180px;
  padding: 1.5rem;
  border: 2px dashed rgba(233, 30, 140, 0.35);
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.custom-project-dropzone__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-project-dropzone__btn {
  position: relative;
  z-index: 1;
}

.custom-project-dropzone:hover,
.custom-project-dropzone.is-dragover {
  border-color: var(--color-pink-bright);
  background: var(--color-pink-soft);
  transform: translateY(-2px);
}

.custom-project-dropzone__icon {
  font-size: 2rem;
}

.custom-project-dropzone__text {
  font-weight: 700;
  color: var(--color-pink-bright);
  text-align: center;
}

.custom-project-detail {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.custom-project-detail select {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.custom-project-disclaimer {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.86rem;
}

.custom-project-disclaimer strong {
  display: block;
  margin-bottom: 0.35rem;
}

.custom-project-disclaimer p {
  margin: 0;
  color: inherit;
}

.custom-project-preview__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.custom-project-compare {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: var(--color-bg-soft);
}

.custom-project-compare__btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-muted);
  cursor: pointer;
}

.custom-project-compare__btn.is-active {
  background: #fff;
  color: var(--color-pink-bright);
  box-shadow: var(--shadow-card);
}

.custom-project-preview__frame {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233, 30, 140, 0.05), rgba(99, 102, 241, 0.05)),
    var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.custom-project-preview__frame.is-rendering {
  opacity: 0.72;
}

.custom-project-preview__frame.is-rendering::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  animation: preview-shimmer 1.1s linear infinite;
  pointer-events: none;
}

.custom-project-preview__empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-muted);
  z-index: 1;
}

.custom-project-preview__empty[hidden],
.custom-project-preview__stage[hidden],
.custom-project-preview__photo[hidden] {
  display: none !important;
}

.custom-project-preview__empty span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.custom-project-preview__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.75rem;
}

.custom-project-preview__stage.is-rendering .custom-project-preview__photo {
  opacity: 0.45;
}

.custom-project-preview__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: var(--shadow-card);
}

.custom-project-preview__status {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-success);
}

.custom-project-open-studio {
  width: 100%;
  margin-top: 0.85rem;
}

body.custom-project-modal-open {
  overflow: hidden;
}

.custom-project-studio-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.custom-project-studio-modal[hidden] {
  display: none !important;
}

.custom-project-studio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.72);
  backdrop-filter: blur(6px);
}

.custom-project-studio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 18, 28, 0.35);
}

.custom-project-studio-modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.custom-project-studio-modal__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-pink-bright);
}

.custom-project-studio-modal__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.custom-project-studio-modal__close {
  border: 0;
  background: var(--color-bg-soft);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.custom-project-studio-modal__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.custom-project-studio-modal__note {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.custom-project-studio-modal__stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 1rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(233, 30, 140, 0.05), rgba(99, 102, 241, 0.05)),
    var(--color-bg-soft);
  border: 1px solid var(--color-border);
}

.custom-project-studio-modal__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 640px);
  object-fit: contain;
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: var(--shadow-soft);
}

.custom-project-studio-modal__foot {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.custom-project-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.custom-project-step {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
}

.custom-project-step__num {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-pink-soft);
  color: var(--color-pink-bright);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.custom-project-step h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.custom-project-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.custom-project-product {
  padding: 0 0 4rem;
}

.custom-project-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.custom-project-product__image {
  width: 100%;
  border-radius: var(--radius-md);
}

.custom-project-product__body h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.custom-project-product__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.75rem 0;
}

.custom-project-product__sku {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.custom-project-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.category-rail {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  padding: 0.55rem 0;
  background: var(--color-bg-soft);
}

.category-rail__track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.category-chip {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
}

.category-chip:hover {
  transform: translateY(-2px);
  background: var(--color-pink-soft);
  color: var(--color-pink-bright);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 36, 48, 0.45);
}

.mobile-drawer__panel {
  width: min(88vw, 360px);
  height: 100%;
  padding: 2rem 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  animation: slide-in 0.35s var(--ease-out);
}

.mobile-drawer__close {
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Promo icons strip */
.promo-icons {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.promo-icons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.promo-icons__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.5rem;
}

.promo-icons__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink-soft);
  color: var(--color-pink-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.promo-icons__item strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-icons__item span {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Hero */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 62vh, 620px);
  background:
    linear-gradient(180deg, rgba(31, 36, 48, 0.35), rgba(31, 36, 48, 0.55)),
    var(--hero-image, linear-gradient(135deg, #fce7f3, #ddd6fe));
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 55%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3.5rem 1.5rem;
}

.hero-slide__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.hero-slide__title,
.hero-slide__title.sparkle-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: #fff;
}

.hero-slide__subtitle {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.hero-slide__cta {
  min-width: 180px;
}

.hero-slide__sparkles {
  display: none;
}

.hero-slider .swiper-slide .hero-slide__content {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slider .swiper-slide-active .hero-slide__content {
  opacity: 1;
  transform: none;
}

.hero-slider__nav {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-slider__prev,
.hero-slider__next,
.product-carousel__prev,
.product-carousel__next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.hero-slider__prev:hover,
.hero-slider__next:hover,
.product-carousel__prev:hover,
.product-carousel__next:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.28);
}

.hero-slider__pagination {
  display: flex;
  gap: 0.45rem;
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.15);
}

/* Category showcase */
.category-showcase {
  padding: 2.5rem 0 1rem;
  background: var(--color-bg-soft);
}

.category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  transition: transform 0.35s var(--ease-out);
}

.category-tile:hover {
  transform: translateY(-4px);
}

.category-tile__thumb {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-card);
  background: var(--cat-color, #ddd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.category-tile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* Shop intro */
.shop-intro {
  padding: 2rem 0 0.5rem;
}

.shop-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rating-badge__score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-navy);
}

.rating-badge__stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.rating-badge__label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-tabs a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.shop-tabs a:hover,
.shop-tabs a.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

/* Product sections */
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.section-heading .sparkle-heading--section {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0;
  color: var(--color-navy);
}

.section-heading__link {
  color: var(--color-pink-bright);
  font-weight: 700;
  font-size: 0.92rem;
}

.product-section {
  padding: 3.5rem 0;
}

.product-section:nth-child(even) {
  background: var(--color-bg-soft);
}

.product-carousel {
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  overflow: hidden;
}

.product-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.product-carousel__prev,
.product-carousel__next {
  border-color: var(--color-border);
  background: #fff;
  color: var(--color-navy);
}

.product-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

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

.product-card__media {
  position: relative;
  display: block;
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-muted);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 36, 48, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
}

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

.product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-pink-bright);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card__body {
  padding: 1rem;
}

.product-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-card__price {
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card__price del {
  color: var(--color-muted);
  margin-right: 0.35rem;
}

.product-card__cta {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

/* Editorial */
.editorial-split {
  padding: 4.5rem 0;
}

.editorial-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.editorial-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(99, 102, 241, 0.15)),
    var(--editorial-image, var(--color-bg-muted));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.editorial-split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: var(--color-navy);
}

.editorial-split__content p {
  color: var(--color-muted);
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
}

/* Features trio */
.features-trio {
  padding: 3.5rem 0;
  background: var(--color-bg-soft);
}

.features-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
  text-align: center;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink-soft);
  color: var(--color-pink-bright);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

/* Testimonial */
.testimonial-block {
  padding: 4rem 0;
  background: var(--color-navy);
  color: #fff;
  text-align: center;
}

.testimonial-block__quote {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.45;
}

.testimonial-block__author {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #fce7f3, #eef2ff);
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.cta-banner__content h2,
.cta-banner__content .sparkle-heading--cta {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: var(--color-navy);
}

.cta-banner__content p {
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.cta-banner__visual {
  display: flex;
  justify-content: center;
}

.cta-banner__frame {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 4px solid #fff;
  background:
    linear-gradient(180deg, rgba(233, 30, 140, 0.12), rgba(99, 102, 241, 0.12)),
    url("https://images.unsplash.com/photo-1618573696990-34862864b212?auto=format&fit=crop&w=600&h=750&q=80") center/cover;
  box-shadow: var(--shadow-soft);
}

.cta-banner__label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Trust bar */
.trust-bar {
  padding: 2.5rem 0 4rem;
  background: #fff;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar__item {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.trust-bar__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-bar__item span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

/* Marquees */
.collection-marquee,
.artist-marquee {
  overflow: hidden;
  padding: 1rem 0;
  border-block: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.collection-marquee__track,
.artist-marquee__row {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.collection-marquee__track {
  animation: marquee-left 28s linear infinite;
}

.artist-marquee__row--left {
  animation: marquee-left 38s linear infinite;
}

.artist-marquee__row--right {
  animation: marquee-right 42s linear infinite;
  margin-top: 0.75rem;
}

.collection-marquee__item,
.artist-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-muted);
}

.artist-chip {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.collection-marquee__dot {
  color: var(--color-pink-bright);
}

.artist-section {
  padding: 3rem 0 1rem;
}

.artist-section .section-heading p {
  margin: 0;
  color: var(--color-muted);
}

/* Shop pages */
.shop-header {
  padding: 2.5rem 0 1.25rem;
}

.shop-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  color: var(--color-navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  padding-bottom: 4rem;
}

.content-wrap {
  padding: 2.5rem 0 4rem;
}

.entry-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
}

.entry-card__media img {
  border-radius: var(--radius-sm);
}

.empty-state {
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
  color: var(--color-muted);
  background: var(--color-bg-soft);
}

/* Footer */
.newsletter-block {
  padding: 3.5rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-navy);
  color: #fff;
}

.newsletter-block__copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.65rem;
}

.newsletter-block__copy p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.newsletter-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-block__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.newsletter-block__form input {
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsletter-block__form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__main {
  padding: 3rem 0;
  background: var(--color-bg-soft);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer__brand p,
.footer-menu {
  color: var(--color-muted);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.payment-icons__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.2rem 0.35rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.payment-icons__item img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 48px;
  object-fit: contain;
}

.payment-icons__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
}

.payment-icons span {
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.78rem;
}

.site-footer__bottom {
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.88rem;
  background: var(--color-bg-soft);
}

.site-footer__credit {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Dynamic headings */
.sparkle-heading {
  position: relative;
  display: block;
}

.sparkle-heading__word {
  display: inline-block;
  margin-right: 0.2em;
  opacity: 0;
  transform: translateY(0.8em);
}

.sparkle-heading.is-animated .sparkle-heading__word {
  animation: sparkle-word-in 0.75s var(--ease-out) forwards;
  animation-delay: calc(var(--word-i) * 0.06s + 0.08s);
}

.sparkle-heading--hero .sparkle-heading__word-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.sparkle-heading--section .sparkle-heading__word-text,
.sparkle-heading--cta .sparkle-heading__word-text {
  color: var(--color-navy);
  -webkit-text-fill-color: var(--color-navy);
}

.sparkle-heading__glow,
.sparkle-heading__line {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes preview-shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes slide-in {
  from { transform: translateX(-100%); }
  to { transform: none; }
}

@keyframes sparkle-word-in {
  from {
    opacity: 0;
    transform: translateY(0.8em);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .category-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .products-grid,
  .trust-bar__grid,
  .promo-icons__grid,
  .features-trio__grid,
  .custom-project-steps__grid,
  .custom-project-product__inner,
  .custom-project-studio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-split__inner,
  .cta-banner__inner,
  .newsletter-block__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header__nav {
    display: none;
  }

  .site-header__custom-project {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .entry-card {
    grid-template-columns: 1fr;
  }

  .shop-intro__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .products-grid,
  .trust-bar__grid,
  .promo-icons__grid,
  .features-trio__grid,
  .category-showcase__grid,
  .custom-project-steps__grid,
  .custom-project-product__inner,
  .custom-project-studio__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-block__form {
    grid-template-columns: 1fr;
  }

  .promo-icons__item span {
    display: none;
  }
}

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

  [data-reveal],
  .sparkle-heading__word {
    opacity: 1;
    transform: none;
  }
}
