


.l-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-base);
  border-bottom: 1px solid var(--edge-subtle);
  padding: 0.6rem clamp(1rem, 4vw, 2rem);
}

.l-header-shell {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.4vw, 2rem);
  flex: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand img {
  height: 2rem;
  width: auto;
}

.l-header-nav {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.l-header-nav ul li a {
  color: var(--content-primary);
  letter-spacing: 0.01em;
  position: relative;
}

.l-header-nav ul li a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--action-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion);
}

.l-header-nav ul li a:hover::after,
.l-header-nav ul li a.is-current::after {
  transform: scaleX(1);
}

.l-header-nav ul li a.is-current {
  color: var(--action-primary);
}

.l-header-side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--content-primary);
  white-space: nowrap;
}

.header-phone small {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--content-muted);
  letter-spacing: 0.02em;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  background: var(--action-quiet);
  color: var(--content-secondary);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transform: skewX(-10deg);
  transition: background var(--motion), color var(--motion);
}

.cart-chip > span {
  display: inline-block;
  transform: skewX(10deg);
}

.cart-chip:hover {
  background: var(--edge-subtle);
  color: var(--content-primary);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--action-primary);
  color: var(--content-inverse);
  font-size: 0.78rem;
  border-radius: 999px;
}

.l-header-toggle {
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.l-header-toggle span {
  border-radius: 2px;
}


[data-mm-menu] {
  box-shadow: 0 0 40px rgba(46, 16, 101, 0.18);
}

[data-mm-menu] ul li a {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.l-header-close {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--content-primary);
}

.cc-link {
  text-decoration: underline;
  font-weight: 500;
}


.shop-banner {
  padding: 0;
  background: var(--surface-inverse);
}

.hero-deck {
  position: relative;
  overflow: hidden;
  display: grid;
}

.hero-pane {
  grid-area: 1 / 1;
  min-height: clamp(30rem, 88vh, 54rem);
  display: grid;
  place-items: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1rem, 5vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-pane.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-pane-a {
  background-image: linear-gradient(142deg, #2e1065 0%, #5b21b6 52%, #7c3aed 100%);
}

.hero-pane-b {
  background-image: linear-gradient(168deg, #4c1d95 0%, #7c3aed 58%, #8b5cf6 100%);
}

.hero-pane-c {
  background-image: linear-gradient(206deg, #2e1065 0%, #6d28d9 54%, #a78bfa 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-inline: auto;
}

.hero-copy h1,
.hero-copy .hero-headline {
  color: #fff;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  display: block;
}

.hero-kicker {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--edge-strong);
  margin-bottom: 1rem;
}

.hero-sub {
  color: #ede9fe;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.hero-dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background var(--motion), transform var(--motion);
}

.hero-dot.is-active::before {
  background: #fff;
  transform: scale(1.25);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: rgba(46, 16, 101, 0.34);
  cursor: pointer;
  z-index: 3;
  transition: background var(--motion);
}

.hero-arrow:hover {
  background: rgba(46, 16, 101, 0.62);
}

.hero-prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-next {
  right: clamp(0.5rem, 2vw, 1.5rem);
}


@media (max-width: 768px) {
  .hero-copy {
    padding-inline: 3.4rem;
  }
}


.page-hero {
  background-image: linear-gradient(128deg, #2e1065 0%, #5b21b6 62%, #7c3aed 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #ede9fe;
  max-width: 62ch;
  margin-bottom: 0;
}

.page-hero .crumbs {
  color: var(--edge-strong);
}

.page-hero .crumbs a {
  color: #ede9fe;
}

.page-hero .crumbs li::after {
  color: var(--content-muted);
}


.site-footer {
  text-align: center;
  background: var(--surface-raised);
  color: var(--content-secondary);
  padding: clamp(2.5rem, 5vw, 3.5rem) 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--edge-subtle);
}

.site-footer a {
  color: var(--content-secondary);
}


.footer-links a,
.footer-links button {
  margin: 0 0.6rem;
}

.site-footer a:hover {
  color: var(--action-primary);
}

.footer-brand {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--content-primary);
  margin-bottom: 0.5rem;
}

.footer-links {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1rem;
  line-height: 2.2;
}

.footer-note {
  max-width: 68ch;
  margin: 0 auto 1rem;
  font-size: 0.82rem;
  color: var(--content-muted);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--content-muted);
  margin-bottom: 0;
}

.footer-cookie {
  background: none;
  cursor: pointer;
  color: var(--content-secondary);
  font-size: 0.9rem;
  text-decoration: underline;
  margin: 0 0.6rem;
}


.qo-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--surface-overlay);
}

.qo-modal.is-open {
  display: flex;
}

.qo-dialog {
  position: relative;
  width: min(34rem, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--surface-base);
  border-left: 6px solid var(--action-primary);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--depth-lift);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.qo-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--content-muted);
  cursor: pointer;
  transition: color var(--motion);
}

.qo-close:hover {
  color: var(--content-primary);
}

.qo-eyebrow {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action-primary);
  margin-bottom: 0.5rem;
}

.qo-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
}

.qo-lead {
  color: var(--content-secondary);
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.qo-form {
  margin-top: 1rem;
}


.cc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  background: var(--surface-base);
  border-top: 3px solid var(--action-primary);
  box-shadow: 0 -8px 32px rgba(46, 16, 101, 0.18);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.cc-bar[hidden] {
  display: none;
}

.cc-shell {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.cc-text {
  flex: 1 1 24rem;
}

.cc-text h2 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.cc-text p {
  font-size: 0.88rem;
  color: var(--content-secondary);
  margin-bottom: 0;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cc-actions .btn {
  padding: 0.72rem 1.25rem;
  font-size: 0.9rem;
}

.cc-panel {
  width: 100%;
  border-top: 1px solid var(--edge-subtle);
  margin-top: 1rem;
  padding-top: 1rem;
}

.cc-panel[hidden] {
  display: none;
}

.cc-cat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--edge-subtle);
}

.cc-cat:last-of-type {
  border-bottom-width: 0;
}

.cc-cat input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  accent-color: var(--action-primary);
}

.cc-cat h3 {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.cc-cat p {
  font-size: 0.85rem;
  color: var(--content-secondary);
  margin-bottom: 0;
}

.cc-save {
  margin-top: 1rem;
}
