:root {
  --maya-bg: #f7f2e8;
  --maya-surface: #ffffff;
  --maya-text: #1b1712;
  --maya-accent: #b3873d;
  --maya-border: rgba(17, 24, 39, 0.12);
  --maya-border-strong: rgba(17, 24, 39, 0.18);
  --maya-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --maya-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --maya-font-heading: 'Italiana', serif;
  --maya-font-body: 'Manrope', sans-serif;
  --maya-shell-gutter: 24px;
}

html.maya20 {
  scroll-behavior: smooth;
}

body.maya20-active {
  background: radial-gradient(circle at 0% 0%, rgba(179,135,61,.08), transparent 30%), var(--maya-bg);
  color: var(--maya-text);
  font-family: var(--maya-font-body);
}

html.maya20-active body {
  background: radial-gradient(circle at 0% 0%, rgba(179,135,61,.08), transparent 30%), var(--maya-bg);
  color: var(--maya-text);
  font-family: var(--maya-font-body);
}

body.maya20-active,
body.maya20-active p,
body.maya20-active li,
body.maya20-active input,
body.maya20-active select,
body.maya20-active textarea,
body.maya20-active button {
  font-family: var(--maya-font-body);
}

html.maya20-active body,
html.maya20-active body p,
html.maya20-active body li,
html.maya20-active body input,
html.maya20-active body select,
html.maya20-active body textarea,
html.maya20-active body button {
  font-family: var(--maya-font-body);
}

body.maya20-active h1,
body.maya20-active h2,
body.maya20-active h3,
body.maya20-active h4,
body.maya20-active h5,
body.maya20-active h6,
.maya-heading {
  font-family: var(--maya-font-heading);
}

html.maya20-active body h1,
html.maya20-active body h2,
html.maya20-active body h3,
html.maya20-active body h4,
html.maya20-active body h5,
html.maya20-active body h6,
html.maya20-active .maya-heading {
  font-family: var(--maya-font-heading);
}

body.maya-modal-open {
  overflow: hidden;
}

.maya-shell {
  position: relative;
  min-height: 100%;
}

.maya-legacy-stage {
  position: relative;
  z-index: 1;
}

.maya-container {
  width: auto;
  margin-left: var(--maya-shell-gutter);
  margin-right: var(--maya-shell-gutter);
  max-width: none;
}

.maya-breadcrumb {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--maya-border);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}

.maya-breadcrumb--dark {
  background: rgba(7,11,20,.78);
  border-bottom-color: rgba(255,255,255,.12);
}

.maya-breadcrumb__list {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.maya-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.maya-breadcrumb__item + .maya-breadcrumb__item::before {
  content: "/";
  color: rgba(100,116,139,.72);
  font-size: 12px;
  line-height: 1;
}

.maya-breadcrumb__link,
.maya-breadcrumb__current,
.maya-breadcrumb__ellipsis {
  display: inline-block;
  max-width: clamp(120px, 22vw, 360px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 1.3;
}

.maya-breadcrumb__link {
  color: #334155;
  text-decoration: none;
  transition: color .2s ease;
}

.maya-breadcrumb__link:hover {
  color: var(--maya-accent);
}

.maya-breadcrumb__current {
  color: #0f172a;
  font-weight: 700;
}

.maya-breadcrumb__ellipsis {
  color: #64748b;
}

.maya-breadcrumb--dark .maya-breadcrumb__link {
  color: #dbeafe;
}

.maya-breadcrumb--dark .maya-breadcrumb__current {
  color: #ffffff;
}

.maya-breadcrumb--dark .maya-breadcrumb__ellipsis,
.maya-breadcrumb--dark .maya-breadcrumb__item + .maya-breadcrumb__item::before {
  color: rgba(226,232,240,.7);
}

@media (max-width: 767px) {
  .maya-breadcrumb__list {
    padding: 8px 0;
  }

  .maya-breadcrumb__link,
  .maya-breadcrumb__current,
  .maya-breadcrumb__ellipsis {
    max-width: 52vw;
  }

  .maya-breadcrumb--compact-mobile .maya-breadcrumb__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .maya-breadcrumb--compact-mobile .maya-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }

  .maya-breadcrumb--compact-mobile .maya-breadcrumb__item {
    flex: 0 0 auto;
  }
}

/* Make old Bootstrap/Ogani containers full-width with controlled margins */
.maya20-active .container,
.maya20-active .container-fluid {
  width: auto !important;
  max-width: none !important;
  margin-left: var(--maya-shell-gutter) !important;
  margin-right: var(--maya-shell-gutter) !important;
}

.maya20-active .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

#header {
  position: relative;
  z-index: 108;
}

.maya-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.maya-utility-bar {
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  border-bottom: 1px solid var(--maya-border);
  color: var(--maya-text);
  position: sticky;
  top: 0;
  z-index: 1010;
  backdrop-filter: blur(10px);
}

.maya-utility-bar--dark {
  background: linear-gradient(90deg, rgba(7,11,20,.96), rgba(15,22,41,.92));
  color: #eef3ff;
  border-bottom-color: rgba(255,255,255,.08);
}

.maya-utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.maya-utility-bar__left,
.maya-utility-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.maya-utility-bar__right {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.maya-utility-bar__right a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  opacity: .92;
}

.maya-utility-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.75);
}

.maya-utility-bar--dark .maya-utility-pill {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.maya-utility-copy {
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.maya-topbar {
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2147478001;
}

.maya-topbar--countdown {
  background: linear-gradient(90deg, #101010, #2b0b0b);
}

.maya-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}

.maya-topbar__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.maya-topbar a {
  color: inherit;
  text-decoration: none;
}

.maya-header-marquee {
  position: relative;
  z-index: 2147478001;
  border-bottom: 1px solid rgba(148,163,184,.2);
  background: rgba(15,23,42,.92);
  color: #e2e8f0;
  overflow: hidden;
}

.maya-header-marquee__track {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding-right: 28px;
  animation: mayaHeaderMarqueeMove var(--maya-marquee-duration, 34s) linear infinite;
}

.maya-header-marquee[data-direction="right"] .maya-header-marquee__track {
  animation-direction: reverse;
}

.maya-header-marquee__track span {
  font-size: 12px;
  letter-spacing: .02em;
  opacity: .94;
}

@keyframes mayaHeaderMarqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.maya-header {
  position: sticky;
  top: var(--maya-header-top-offset, 42px);
  z-index: 2147478000;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--maya-border);
  transition: top .2s ease, background-color .2s ease, box-shadow .2s ease;
  isolation: isolate;
}

.maya-header--light {
  background: rgba(255,255,255,.78);
  color: var(--maya-text);
}

.maya-header--dark {
  background: rgba(7, 11, 20, .86);
  color: #eef3ff;
  border-bottom-color: rgba(255,255,255,.08);
}

.maya-header__main {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(280px, 1.2fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 108px;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-header__main {
  grid-template-columns: auto auto minmax(280px, 1.2fr) auto;
}

.maya-desktop-menu-toggle {
  display: none;
}

.maya-header--desktop-single .maya-header__main,
.maya-header--desktop-double .maya-header__main {
  grid-template-columns: auto auto minmax(300px, 1fr) auto;
}

.maya-header--desktop-single .maya-logo,
.maya-header--desktop-double .maya-logo {
  justify-self: start;
}

.maya-mobile-toggle {
  display: none;
}

.maya-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-logo {
  grid-column: 1;
}

.maya-logo img {
  height: 84px;
  object-fit: contain;
  background: rgba(255,255,255,.85);
  border-radius: 14px;
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.maya-logo strong {
  display: block;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
}

.maya-logo small {
  display: block;
  opacity: .78;
  font-size: 11px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.maya-header__search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
  position: relative;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-header__search {
  grid-column: 3;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-header__utilities {
  grid-column: 4;
}

.maya-nav-row-toggle {
  display: none;
  opacity: 0;
  transform: translateY(-8px) scale(.94);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .34s ease, transform .42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear .42s, background-color .24s ease, border-color .24s ease, color .24s ease;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-nav-row-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.maya-nav-row-toggle.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.maya-nav-row-toggle.is-active {
  background: var(--maya-accent);
  border-color: var(--maya-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.maya-header--dark .maya-nav-row-toggle.is-active {
  box-shadow: 0 10px 24px rgba(2,6,23,.42);
}

.maya-header__search input[type="text"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: inherit;
  padding: 0 14px;
  font-size: 14px;
}

.maya-header--dark .maya-header__search input[type="text"] {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: #eef3ff;
}

.maya-header__search input[type="text"]::placeholder {
  color: rgba(100,116,139,.95);
}

.maya-header--dark .maya-header__search input[type="text"]::placeholder {
  color: rgba(226,232,240,.75);
}

.maya-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 45;
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 44px rgba(15,23,42,.18);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.maya-header--dark .maya-search-dropdown {
  background: rgba(8,15,29,.98);
  border-color: rgba(255,255,255,.1);
  color: #eef3ff;
}

.maya-search-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--maya-border);
}

.maya-header--dark .maya-search-dropdown__head {
  border-bottom-color: rgba(255,255,255,.08);
}

.maya-search-dropdown__head strong {
  font-size: 13px;
}

.maya-search-dropdown__close {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.9);
  cursor: pointer;
}

.maya-header--dark .maya-search-dropdown__close {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: #eef3ff;
}

.maya-search-dropdown__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px 0;
}

.maya-search-dropdown__chip {
  appearance: none;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.maya-header--dark .maya-search-dropdown__chip {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #eef3ff;
}

.maya-search-dropdown__hint,
.maya-search-dropdown__results {
  padding: 12px;
}

.maya-search-dropdown__hint p {
  margin: 0;
  font-size: 13px;
  opacity: .82;
}

.maya-search-dropdown__quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.maya-search-dropdown__quick-links a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  padding: 8px 10px;
}

.maya-header--dark .maya-search-dropdown__quick-links a {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

.maya-search-dropdown__results {
  padding-top: 10px;
}

.maya-search-dropdown__results,
.maya-mobile-search__results,
.maya-search-overlay__results {
  position: relative;
}

.maya-search-dropdown__results.is-loading::before,
.maya-mobile-search__results.is-loading::before,
.maya-search-overlay__results.is-loading::before {
  content: "Ricerca in corso...";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 54px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #334155;
  z-index: 2;
  pointer-events: none;
}

.maya-header--dark .maya-search-dropdown__results.is-loading::before {
  background: rgba(15, 23, 42, .58);
  color: #e2e8f0;
}

.maya-search-dropdown__results.is-loading::after,
.maya-mobile-search__results.is-loading::after,
.maya-search-overlay__results.is-loading::after {
  content: "";
  position: absolute;
  top: calc(50% - 22px);
  left: 50%;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 999px;
  border: 3px solid rgba(15, 23, 42, .18);
  border-top-color: var(--maya-accent, #b3873d);
  animation: mayaSearchSpin .78s linear infinite;
  z-index: 3;
  pointer-events: none;
}

.maya-listing-card {
  min-width: 0;
  overflow: hidden;
}

.maya-listing-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f8fafc;
}

.maya-listing-card__media-stack {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  height: var(--maya-card-media-height, auto);
  line-height: 0;
}

.maya-listing-card__media-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  background: #ffffff;
}

.maya-listing-card__media-img:not(.is-active) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes mayaSearchSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.maya-search-dropdown__results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
}

.maya-search-dropdown__results-bar a {
  text-decoration: none;
  color: var(--maya-accent);
  font-weight: 700;
}

.maya-search-dropdown__frame {
  width: 100%;
  min-height: 380px;
  height: 52vh;
  max-height: 560px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  background: #fff;
}

.maya-header--dark .maya-search-dropdown__frame {
  background: rgba(15,23,42,.6);
  border-color: rgba(255,255,255,.08);
}

.maya-header__utilities {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.maya-search-trigger {
  display: none;
}

.maya-mobile-hide {
  display: inline-flex;
}

.maya-header__utilities .maya-lang-switcher {
  flex: 0 0 auto;
}

.maya-header__utilities .maya-lang-switcher__summary {
  min-height: 38px;
  padding: 6px 10px;
}

.maya-currency-switcher__flag {
  min-width: 28px;
  padding-inline: 6px;
  font-weight: 700;
}

.maya-account-switcher {
  position: relative;
}

.maya-account-switcher[open] {
  z-index: 2147478705;
}

.maya-account-switcher__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  min-height: 38px;
  cursor: pointer;
}

.maya-account-switcher__summary::-webkit-details-marker {
  display: none;
}

.maya-account-switcher__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.95);
  color: #111827;
}

.maya-account-switcher__copy {
  display: inline-grid;
  gap: 1px;
  min-width: 0;
}

.maya-account-switcher__copy strong {
  font-size: 12px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.maya-account-switcher__copy small {
  font-size: 10px;
  line-height: 1;
  color: #64748b;
  font-weight: 700;
  letter-spacing: .06em;
}

.maya-account-switcher__copy .maya-account-switcher__hello {
  letter-spacing: .02em;
  text-transform: none;
  font-size: 10px;
}

.maya-account-switcher__copy .maya-account-switcher__name {
  font-size: 13px;
  line-height: 1.05;
}

.maya-account-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(980px, calc(100vw - 24px));
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  background: rgba(255,255,255,.99);
  box-shadow: 0 20px 46px rgba(15,23,42,.14);
  padding: 10px;
  z-index: 2147478650;
}

.maya-header-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147478350;
  border: 0;
  background: rgba(2,6,23,.26);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease;
}

body.maya-header-menu-open .maya-header-menu-backdrop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.maya-desktop-menu-open .maya-header-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.maya-mobile-nav-open .maya-header-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.maya-home-video-showcase__media-trigger.is-inline-playing .maya-home-video-showcase__play {
  opacity: 0;
  visibility: hidden;
}

.maya-home-video-showcase__inline-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #020617;
}

.maya-home-video-showcase__inline-player iframe,
.maya-home-video-showcase__inline-player video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.maya-home-video-showcase__inline-player video {
  object-fit: cover;
  background: #020617;
}

.maya-account-switcher__menu-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px 12px;
  border-bottom: 1px solid #eef2f7;
}

.maya-account-switcher__menu-head strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
}

.maya-account-switcher__menu-head small {
  display: block;
  color: #64748b;
  font-size: 11px;
  margin-top: 3px;
}

.maya-account-switcher__menu-head a {
  white-space: nowrap;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--maya-accent);
}

.maya-account-switcher__menu-head-main {
  min-width: 0;
}

.maya-account-switcher__menu-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.maya-account-switcher__menu-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.maya-account-switcher__menu-head-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.maya-account-switcher__locale {
  margin: 8px 10px 4px;
  padding: 10px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maya-account-switcher__locale label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.maya-account-switcher__locale label span {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.maya-account-switcher__locale select {
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid #d7dee9;
  padding: 0 10px;
  background: #fff;
  font-size: 12px;
}

.maya-account-switcher__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.maya-account-switcher__col {
  border: 1px solid #eef2f7;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  min-width: 0;
}

.maya-account-switcher__col--orders {
  background: linear-gradient(180deg,#f8fafc,#ffffff);
  border-color: #dbe3ee;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 16px rgba(15,23,42,.03);
}

.maya-account-switcher__col h4 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0f172a;
}

.maya-account-switcher__links {
  display: grid;
  gap: 6px;
}

.maya-account-switcher__links a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}

.maya-account-switcher__links a:hover {
  background: #f8fafc;
  border-color: #dbe3ee;
}

.maya-account-switcher__col--orders .maya-account-switcher__links a {
  border-color: #e1e7f0;
  background: rgba(255,255,255,.9);
}

.maya-account-switcher__col--orders .maya-account-switcher__links a:hover {
  background: #fff;
  border-color: #cfd8e6;
}

.maya-account-switcher__links a > span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

.maya-account-switcher__links a > span .fa {
  width: 14px;
  margin-right: 4px;
  text-align: center;
  opacity: .85;
}

.maya-account-switcher__links a > small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.35;
  color: #64748b;
}

.maya-account-switcher__links a.is-logout {
  background: #fff;
  border-color: #edf1f7;
}

.maya-account-switcher__links a.is-logout > span {
  color: #991b1b;
}

.maya-account-switcher__links a.is-logout > span .fa {
  color: rgba(239,68,68,.75);
}

.maya-account-switcher__links a.is-logout:hover {
  background: rgba(254,242,242,.35);
  border-color: rgba(239,68,68,.18);
}

.maya-account-switcher__offers {
  display: grid;
  gap: 8px;
}

.maya-account-switcher__offers > a {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  border: 1px solid #edf1f7;
  border-radius: 10px;
  background: #fff;
  padding: 7px;
  color: inherit;
}

.maya-account-switcher__offers > a:hover {
  background: #f8fafc;
  border-color: #d7e0eb;
}

.maya-account-switcher__offers-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: #f8fafc;
  border: 1px solid #edf1f7;
}

.maya-account-switcher__offers-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maya-account-switcher__offers-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.maya-account-switcher__offers-copy strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  color: #111827;
  font-weight: 700;
}

.maya-account-switcher__offers-copy em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #0f172a;
  font-weight: 700;
}

.maya-account-switcher__offers-price {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.maya-account-switcher__offers-price small {
  font-size: 10px;
  color: #94a3b8;
  text-decoration: line-through;
}

.maya-account-switcher__offers-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  border-radius: 999px;
  background: rgba(239,68,68,.1);
  color: #b91c1c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}

.maya-account-switcher__group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

.maya-account-switcher__group h5 {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .02em;
  color: #334155;
  text-transform: uppercase;
}

.maya-account-switcher__links--simple a > small {
  display: none;
}

.maya-header--dark .maya-account-switcher__summary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__icon {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__copy small {
  color: rgba(238,243,255,.72);
}

.maya-header--dark .maya-account-switcher__menu {
  background: rgba(7,11,20,.98);
  border-color: rgba(255,255,255,.08);
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__menu-head {
  border-bottom-color: rgba(255,255,255,.08);
}

.maya-header--dark .maya-account-switcher__menu-close {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__menu-head small {
  color: rgba(238,243,255,.7);
}

.maya-header--dark .maya-account-switcher__col {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

.maya-header--dark .maya-account-switcher__col--orders {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.12);
}

.maya-header--dark .maya-account-switcher__links a {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

.maya-header--dark .maya-account-switcher__links a:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

.maya-header--dark .maya-account-switcher__links a > span,
.maya-header--dark .maya-account-switcher__col h4 {
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__links a > small,
.maya-header--dark .maya-account-switcher__group h5 {
  color: rgba(238,243,255,.68);
}

.maya-header--dark .maya-account-switcher__links a.is-logout {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

.maya-header--dark .maya-account-switcher__links a.is-logout > span {
  color: #fecaca;
}

.maya-header--dark .maya-account-switcher__offers > a {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

.maya-header--dark .maya-account-switcher__offers > a:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

.maya-header--dark .maya-account-switcher__offers-thumb {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.maya-header--dark .maya-account-switcher__offers-copy strong,
.maya-header--dark .maya-account-switcher__offers-copy em {
  color: #eef3ff;
}

.maya-header--dark .maya-account-switcher__offers-price small {
  color: rgba(238,243,255,.55);
}

.maya-header--dark .maya-account-switcher__offers-badge {
  background: rgba(248,113,113,.18);
  color: #fecaca;
}

.maya-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.6);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.maya-icon-btn .fa {
  font-size: 16px;
  line-height: 1;
}

.maya-header--dark .maya-icon-btn {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}

.maya-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

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

.maya-btn:focus,
.maya-icon-btn:focus,
.maya-nav__link:focus,
.maya-mobile-nav a:focus,
.maya20-active a:focus,
.maya20-active button:focus,
.maya20-active input:focus,
.maya20-active select:focus,
.maya20-active textarea:focus {
  outline: 2px solid var(--maya-accent);
  outline-offset: 2px;
}

.maya-btn--primary {
  background: var(--maya-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.maya-btn--ghost {
  background: transparent;
  color: inherit;
  border-color: var(--maya-border);
}

.maya-btn--small {
  padding: 8px 10px;
  font-size: 12px;
}

.maya-header__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  border-top: 1px solid rgba(255,255,255,.24);
  transition: max-height .22s ease, opacity .18s ease, padding .18s ease, margin .18s ease, border-color .18s ease;
  overflow: hidden;
  max-height: 80px;
  opacity: 1;
}

.maya-header--dark .maya-header__meta {
  border-top-color: rgba(255,255,255,.06);
}

.maya-header.maya-header--compact .maya-header__meta {
  max-height: 80px;
  opacity: 1;
  min-height: 42px;
  border-top-color: rgba(255,255,255,.18);
  pointer-events: auto;
}

.maya-header.maya-header--compact .maya-header__nav-wrap {
  padding-bottom: 6px;
}

.maya-header__meta-left,
.maya-header__meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.maya-header__meta-right a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  opacity: .85;
}

.maya-lang-switcher {
  position: relative;
}

.maya-lang-switcher[open] {
  z-index: 2147478705;
}

.maya-lang-switcher__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.68);
  border-radius: 999px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.maya-lang-switcher__summary::-webkit-details-marker {
  display: none;
}

.maya-lang-switcher__flag {
  min-width: 24px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.maya-lang-switcher__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.maya-lang-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 32px rgba(15,23,42,.12);
  padding: 6px;
  display: grid;
  gap: 4px;
  z-index: 2147478650;
}

.maya-lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

.maya-lang-switcher__name {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}

.maya-lang-switcher__menu a:hover,
.maya-lang-switcher__menu a.is-active {
  background: rgba(15,23,42,.06);
  opacity: 1;
}

.maya-header--dark .maya-lang-switcher__summary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: #eef3ff;
}

.maya-header--dark .maya-lang-switcher__flag {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #eef3ff;
}

.maya-header--dark .maya-lang-switcher__menu {
  background: rgba(7,11,20,.98);
  border-color: rgba(255,255,255,.08);
  color: #eef3ff;
}

.maya-header--dark .maya-lang-switcher__menu a:hover,
.maya-header--dark .maya-lang-switcher__menu a.is-active {
  background: rgba(255,255,255,.06);
}

.maya-debug-pill {
  appearance: none;
  border: 1px solid rgba(239,68,68,.28);
  background: rgba(254,242,242,.92);
  color: #b91c1c;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.maya-debug-pill.is-open {
  background: #b91c1c;
  color: #fff;
  border-color: #b91c1c;
}

.maya-debug-panel {
  position: sticky;
  top: calc(var(--maya-header-top-offset, 42px) + 56px);
  z-index: 1007;
  background: rgba(17,24,39,.92);
  color: #f8fafc;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.maya-debug-panel__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  flex-wrap: wrap;
}

.maya-debug-panel code {
  color: #fde68a;
}

.maya-header__meta .maya-chip {
  background: rgba(255,255,255,.74);
}

.maya-header--dark .maya-header__meta .maya-chip {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: #eef3ff;
}

.maya-header__nav-wrap {
  padding-bottom: 10px;
}

.maya-header[data-maya-header-desktop-rows="triple"] .maya-header__nav-wrap {
  overflow: visible;
  max-height: var(--maya-header-nav-row-height, 96px);
  opacity: 1;
  transform: none;
  visibility: visible;
  transition:
    max-height .36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity .28s ease,
    transform .36s cubic-bezier(0.22, 1, 0.36, 1),
    padding .36s cubic-bezier(0.22, 1, 0.36, 1),
    margin .36s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  will-change: max-height, opacity, transform;
}

.maya-header[data-maya-header-desktop-rows="triple"].maya-header--nav-row-hidden .maya-header__nav-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-14px);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    max-height .28s cubic-bezier(0.4, 0, 1, 1),
    opacity .2s ease,
    transform .28s cubic-bezier(0.4, 0, 1, 1),
    padding .28s cubic-bezier(0.4, 0, 1, 1),
    margin .28s cubic-bezier(0.4, 0, 1, 1),
    visibility 0s linear .28s;
}

.maya-desktop-flyout {
  display: none;
  position: relative;
  z-index: 2147478500;
  border-bottom: 1px solid var(--maya-border);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}

.maya-header--dark + .maya-desktop-flyout,
.maya-header--dark ~ .maya-desktop-flyout {
  background: rgba(7,11,20,.92);
  border-bottom-color: rgba(255,255,255,.1);
}

.maya-desktop-flyout.is-open {
  display: block;
}

.maya-desktop-flyout__inner {
  padding-top: 12px;
  padding-bottom: 14px;
}

.maya-nav {
  position: relative;
}

.maya-nav--rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.maya-nav__rail-viewport {
  min-width: 0;
  overflow: visible;
}

.maya-nav--rail .maya-nav__list {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  padding-bottom: 2px;
}

.maya-nav--rail .maya-nav__list::-webkit-scrollbar {
  display: none;
}

.maya-nav--rail .maya-nav__item {
  flex: 0 0 auto;
}

.maya-nav__rail-btn {
  appearance: none;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.85);
  color: inherit;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.maya-nav--rail.is-overflowing .maya-nav__rail-btn {
  opacity: 1;
  pointer-events: auto;
}

.maya-nav__rail-btn:not([disabled]):hover {
  transform: translateY(-1px);
  background: #fff;
}

.maya-nav__rail-btn[disabled] {
  opacity: .32 !important;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.maya-icon-btn.is-wishlist-pulse {
  color: #e11d48;
  border-color: rgba(225,29,72,.28);
  box-shadow: 0 0 0 2px rgba(225,29,72,.14);
}

.maya-wishlist-trigger__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  background: #e11d48;
  box-shadow: 0 4px 10px rgba(225,29,72,.3);
}

.maya-wishlist-burst {
  position: fixed;
  z-index: 120;
  pointer-events: none;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  color: #e11d48;
  animation: mayaWishBurstFly .72s cubic-bezier(.2,.9,.2,1) forwards;
}

.maya-wishlist-burst .fa {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(225,29,72,.32));
}

@keyframes mayaWishBurstFly {
  0% { transform: translate3d(0,0,0) scale(.6); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translate3d(var(--maya-wish-dx, 0), var(--maya-wish-dy, -80px), 0) scale(.2); opacity: 0; }
}

.maya-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.maya-nav__item {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.maya-nav__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  background: transparent;
}

.maya-nav__link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.maya-nav__link:hover,
.maya-nav__item:hover > .maya-nav__link {
  background: rgba(255,255,255,.7);
}
.maya-nav__item.is-current > .maya-nav__link,
.maya-nav__link.is-current {
  background: rgba(15,23,42,.08);
  color: var(--maya-accent-strong, #0f172a);
}

.maya-header--dark .maya-nav__link:hover,
.maya-header--dark .maya-nav__item:hover > .maya-nav__link {
  background: rgba(255,255,255,.06);
}
.maya-header--dark .maya-nav__item.is-current > .maya-nav__link,
.maya-header--dark .maya-nav__link.is-current {
  background: rgba(255,255,255,.12);
  color: #fff;
}
body[class*="maya-theme-"] .maya-header .maya-nav__item.is-current > .maya-nav__link,
body[class*="maya-theme-"] .maya-header .maya-nav__link.is-current {
  box-shadow: inset 0 0 0 1px rgba(148,163,184,.35);
}

.maya-nav__mega {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 580px;
  max-width: min(90vw, 760px);
  background: var(--maya-surface);
  color: var(--maya-text);
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
  padding: 16px;
  display: none;
  z-index: 2147478600;
}

.maya-nav__item:hover .maya-nav__mega,
.maya-nav__item:focus-within .maya-nav__mega,
.maya-nav__item.is-open .maya-nav__mega {
  display: block;
}

.maya-nav__mega--detached {
  display: none !important;
  z-index: 2147478900 !important;
}

.maya-nav__mega--detached.is-open {
  display: block !important;
}

.maya-nav__mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.maya-nav__mega-column h4 {
  margin: 0 0 8px;
  font-family: var(--maya-font-heading);
}

.maya-nav__mega-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maya-nav__mega-column li + li {
  margin-top: 6px;
}

.maya-nav__mega-column a {
  color: inherit;
  text-decoration: none;
}

.maya-nav__promo-card {
  background: linear-gradient(160deg, rgba(179,135,61,.12), rgba(179,135,61,.03));
  border: 1px solid rgba(179,135,61,.18);
  border-radius: 14px;
  padding: 14px;
}

.maya-nav__promo-card span {
  font-size: 12px;
  opacity: .7;
  display: block;
}

.maya-nav__promo-card strong {
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 18px;
}

.maya-nav--minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-nav--minimal a {
  color: inherit;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.55);
}

.maya-topbar-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.maya-topbar-menu__label {
  opacity: .75;
  font-weight: 600;
}

.maya-topbar-menu a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}

.maya-topbar-menu a:hover {
  border-bottom-color: currentColor;
}

.maya-sidebar-menu {
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  background: var(--maya-surface);
  padding: 12px;
}

.maya-sidebar-menu__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.maya-sidebar-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maya-sidebar-menu > ul > li + li {
  border-top: 1px dashed var(--maya-border);
  margin-top: 8px;
  padding-top: 8px;
}

.maya-sidebar-menu a {
  color: inherit;
  text-decoration: none;
}

.maya-sidebar-menu__children {
  margin-top: 6px;
  padding-left: 12px;
  font-size: 13px;
  opacity: .85;
}

.maya-mobile-nav {
  border-top: 1px solid var(--maya-border);
  padding: 14px 0 18px;
  background: rgba(255,255,255,.92);
}

.maya-header--dark .maya-mobile-nav {
  background: rgba(7,11,20,.96);
}

.maya-mobile-nav__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maya-mobile-nav__actions a {
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  padding: 8px 10px;
}

.maya-mobile-nav__locale {
  display: none;
}

.maya-mobile-nav__panel {
  width: 100%;
}

.maya-mobile-nav__head {
  display: none;
}

.maya-mobile-nav__body {
  display: block;
}

.maya-sidebar-menu__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.maya-sidebar-menu__link {
  flex: 1 1 auto;
}

.maya-sidebar-menu__link--toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.maya-sidebar-menu__toggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.95);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.maya-sidebar-menu__toggle .fa {
  transition: transform .2s ease;
}

.maya-sidebar-menu__toggle[aria-expanded="true"] .fa {
  transform: rotate(180deg);
}

.maya-mobile-search {
  display: none;
}

.maya-mobile-search.is-open {
  display: block;
}

.maya-mobile-search__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.maya-mobile-search__bar input {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--maya-border);
  padding: 0 12px;
  font-size: 14px;
}

.maya-mobile-search__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.96);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.maya-mobile-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-mobile-search__chip {
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.96);
  color: inherit;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.maya-mobile-search__hint p {
  margin: 0 0 8px;
  font-size: 12px;
  color: #64748b;
}

.maya-mobile-search__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-mobile-search__links a {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.maya-mobile-search__results {
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.maya-mobile-search__frame {
  width: 100%;
  height: min(55vh, 420px);
  border: 0;
  display: block;
}

.maya-mobile-filters-tab,
.maya-mobile-filters-backdrop {
  display: none;
}

.maya-main {
  margin-bottom: 12px;
}

.maya-main--home {
  display: block;
}

.maya-section {
  padding: 20px 0;
}

.maya-section--compact {
  padding: 10px 0 20px;
}

.maya-section__head {
  width: auto;
  margin-left: var(--maya-shell-gutter);
  margin-right: var(--maya-shell-gutter);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.maya-section__title {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.maya-section__subtitle {
  margin: 0;
  opacity: .72;
  max-width: 54ch;
}

.maya-hero {
  padding: 16px 0 8px;
}

.maya-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}

.maya-hero__grid > * {
  border: 1px solid var(--maya-border);
  background: var(--maya-surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--maya-shadow-soft);
}

.maya-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}

.maya-hero__title {
  margin: 10px 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
}

.maya-hero__copy {
  margin: 0;
  opacity: .8;
  max-width: 56ch;
}

.maya-hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.maya-hero__card {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(179,135,61,.07), rgba(179,135,61,.015));
}

.maya-hero__stat {
  border: 1px solid rgba(179,135,61,.18);
  background: rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 12px;
}

.maya-hero__stat span {
  display: block;
  font-size: 12px;
  opacity: .75;
}

.maya-hero__stat strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.maya-grid {
  display: grid;
  gap: 14px;
}

.maya-grid--categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maya-grid--products {
  grid-template-columns: repeat(var(--maya-products-cols, 4), minmax(0, 1fr));
}

.maya-products-carousel {
  position: relative;
  padding: 0 42px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

.maya-products-carousel__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.maya-products-carousel__viewport .swiper-wrapper {
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
}

/* Pre-init fallback: evita il flash "card giganti" prima che Swiper inizializzi */
.maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide {
  width: auto !important;
  min-width: 0;
}

.maya-products-carousel[data-maya-cols="1"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.maya-products-carousel[data-maya-cols="2"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.maya-products-carousel[data-maya-cols="3"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.maya-products-carousel[data-maya-cols="4"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.maya-products-carousel[data-maya-cols="5"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.maya-products-carousel[data-maya-cols="6"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.maya-products-carousel[data-maya-cols="1"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+2) { display: none; }
.maya-products-carousel[data-maya-cols="2"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+3) { display: none; }
.maya-products-carousel[data-maya-cols="3"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+4) { display: none; }
.maya-products-carousel[data-maya-cols="4"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+5) { display: none; }
.maya-products-carousel[data-maya-cols="5"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+6) { display: none; }
.maya-products-carousel[data-maya-cols="6"] .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+7) { display: none; }

@media (max-width: 1023px) {
  .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+3) { display: none; }
}

@media (max-width: 767px) {
  .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .maya-products-carousel__viewport.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+2) { display: none; }
}

.maya-products-carousel__slide {
  height: auto;
  min-width: 0;
  max-width: 100%;
}

.maya-products-carousel__slide > .maya-listing-card,
.maya-products-carousel__slide > .maya-card {
  height: 100%;
}

.maya-products-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.95);
  color: var(--maya-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--maya-shadow-soft);
  z-index: 2;
}

.maya-products-carousel__arrow:hover,
.maya-products-carousel__arrow:focus {
  outline: none;
  border-color: rgba(179,135,61,.35);
  color: var(--maya-accent);
  box-shadow: 0 0 0 2px rgba(179,135,61,.10), var(--maya-shadow-soft);
}

.maya-products-carousel__arrow--prev { left: 0; }
.maya-products-carousel__arrow--next { right: 0; }

.maya-manufacturer-card {
  height: 118px;
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  background: var(--maya-surface);
  box-shadow: var(--maya-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-decoration: none;
  color: var(--maya-text);
}

.maya-manufacturer-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.maya-manufacturer-card__text {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

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

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

.maya-card {
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  background: var(--maya-surface);
  box-shadow: var(--maya-shadow-soft);
}

.maya-card--category {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  min-height: 110px;
  background: radial-gradient(circle at 110% -10%, rgba(179,135,61,.15), transparent 45%), var(--maya-surface);
}

.maya-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.maya-card__meta {
  display: inline-block;
  margin-top: 10px;
  opacity: .7;
  font-size: 12px;
}

.maya-card--product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.maya-card__image {
  display: block;
  background: #f8fafc;
  border-bottom: 1px solid var(--maya-border);
  position: relative;
  overflow: hidden;
}

.maya-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 10px;
  display: block;
}

.maya-card__image--media img {
  padding: 0;
}

.maya-card__media-stack {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
}

.maya-card__media-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  background: #ffffff;
  opacity: 0;
  transition: opacity .14s linear, transform .16s ease;
}

.maya-card__media-img:not(.is-active) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.maya-card__media-img.is-active {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.maya-card__image--media:hover .maya-card__media-img.is-active {
  transform: scale(1.02);
}

.maya-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
}

.maya-card--product .maya-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.maya-card--product .maya-card__title a {
  color: inherit;
  text-decoration: none;
}

.maya-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--maya-accent);
}

.maya-price-old {
  text-decoration: line-through;
  opacity: .55;
  font-weight: 500;
  color: inherit;
  margin-right: 6px;
}

.maya-price-current {
  color: var(--maya-accent);
  font-weight: 800;
}

.maya-card__variants {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.maya-card__variant {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.95);
  padding: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.maya-card__variant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maya-card__variant:hover,
.maya-card__variant:focus {
  outline: none;
  border-color: rgba(179,135,61,.35);
  box-shadow: 0 0 0 2px rgba(179,135,61,.12);
}

.maya-card__variant-swatch {
  width: 100%;
  height: 100%;
  display: block;
}

.maya-card__variant-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.maya-card__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.maya-card--journal {
  padding: 14px;
}

.maya-card--journal h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.maya-card--journal p {
  margin: 0;
  opacity: .75;
  font-size: 14px;
  line-height: 1.45;
}

.maya-panel {
  border-radius: 18px;
  border: 1px solid var(--maya-border);
  background: var(--maya-surface);
  padding: 16px;
}

.maya-panel--accent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, rgba(179,135,61,.10), rgba(179,135,61,.02)), var(--maya-surface);
}

.maya-panel--newsletter {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.maya-newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.maya-newsletter input[type="email"],
.maya-newsletter input[type="text"] {
  min-width: 180px;
  flex: 1 1 220px;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255,255,255,.9);
}

.maya-newsletter button,
.maya-newsletter input[type="submit"] {
  border: 1px solid transparent;
  background: var(--maya-accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.maya-banner-slot img {
  max-width: 100%;
  height: auto;
}

.maya-banner {
  border-radius: 14px;
  border: 1px dashed rgba(179,135,61,.35);
  padding: 16px;
  background: rgba(255,255,255,.7);
  min-height: 90px;
  display: flex;
  align-items: center;
}

.maya-brand-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.maya-brand-strip span {
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.6);
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.maya-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.maya-listing-toolbar {
  padding: 8px 0;
}

.maya-listing-toolbar__inner {
  border: 1px solid var(--maya-border);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  box-shadow: var(--maya-shadow-soft);
}

.maya-listing-toolbar__inner span {
  opacity: .7;
  font-size: 13px;
}

.maya-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.maya-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 35;
  padding: 8px 0;
}

.maya-sticky-cta__inner {
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.maya-floating-actions {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 2147477000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.maya-floating-actions .maya-float-btn[data-maya-open-product-gallery="1"] {
  order: 10;
}

.maya-floating-actions .maya-float-btn[data-maya-scroll-top="1"] {
  order: 20;
}

.maya-floating-actions a.maya-float-btn--accent[href*="wa.me/"] {
  order: 30;
}

.maya-floating-actions--left {
  inset: auto auto 18px 18px;
}

.maya-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.94);
  color: var(--maya-text);
  box-shadow: var(--maya-shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  backdrop-filter: blur(10px);
}

.maya-float-btn > span > .fa {
  font-size: 22px;
  line-height: 1;
}

.maya-float-btn--accent {
  background: linear-gradient(180deg, var(--maya-accent), rgba(179,135,61,.82));
  color: #fff;
  border-color: rgba(0,0,0,.05);
}

.maya-float-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.maya-float-btn__label {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: rgba(17,24,39,.92);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all .16s ease;
}

.maya-floating-actions--left .maya-float-btn__label {
  right: auto;
  left: 60px;
  transform: translateX(-6px);
}

.maya-float-btn:hover .maya-float-btn__label {
  opacity: 1;
  transform: translateX(0);
}

.maya-modal {
  position: fixed;
  inset: 0;
  z-index: 2147479500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--maya-header-top-offset, 42px) + 66px) 14px 20px;
  overflow: auto;
}

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

.maya-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .56);
  backdrop-filter: blur(2px);
}

.maya-modal__dialog {
  position: relative;
  max-width: min(920px, calc(100vw - 28px));
  margin: 0;
  width: 100%;
  max-height: calc(100vh - (var(--maya-header-top-offset, 42px) + 96px));
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}

.maya-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--maya-border);
}

.maya-modal__head h3 {
  margin: 0;
}

.maya-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.9);
  cursor: pointer;
}

.maya-modal__body {
  padding: 14px 16px 16px;
}

.maya-contact-modal__grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 14px;
}

.maya-contact-modal__card {
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.88);
}

.maya-contact-modal__card h4 {
  margin: 0 0 8px;
}

.maya-contact-modal__list {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.maya-contact-modal__list a {
  color: inherit;
}

.maya-contact-modal__form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.maya-contact-modal__form input,
.maya-contact-modal__form textarea {
  width: 100%;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
}

.maya-contact-modal__form textarea {
  min-height: 92px;
  resize: vertical;
}

.maya-contact-modal__map {
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(255,255,255,.75);
}

.maya-contact-modal__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.maya-contact-modal__map-link {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 18px;
  text-align: center;
}

.maya-auth-modal__dialog {
  max-width: min(1120px, calc(100vw - 24px));
}

.maya-auth-modal__body {
  padding: 0;
}

.maya-auth-modal__grid {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  min-height: 560px;
}

.maya-auth-modal__visual {
  position: relative;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.35), transparent 48%),
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.16), transparent 42%),
    linear-gradient(160deg, rgba(179,135,61,.94), rgba(120,73,27,.98));
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.maya-auth-modal__visual-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}

.maya-auth-modal__visual-art {
  position: relative;
  height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  overflow: hidden;
}

.maya-auth-modal__dot {
  position: absolute;
  border-radius: 999px;
  filter: blur(.2px);
}

.maya-auth-modal__dot--a { width: 180px; height: 180px; top: -30px; right: -20px; background: rgba(255,255,255,.22); }
.maya-auth-modal__dot--b { width: 120px; height: 120px; left: 18px; bottom: 22px; background: rgba(251,191,36,.28); }
.maya-auth-modal__dot--c { width: 56px; height: 56px; left: 48%; top: 48%; background: rgba(255,255,255,.4); }

.maya-auth-modal__visual-copy h4 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.maya-auth-modal__visual-copy p {
  margin: 0 0 12px;
  line-height: 1.45;
  opacity: .95;
}

.maya-auth-modal__visual-copy ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.maya-auth-modal__form-wrap {
  padding: 18px;
  background: rgba(255,255,255,.98);
}

.maya-auth-modal__form {
  display: grid;
  gap: 12px;
  align-content: start;
}

.maya-auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(248,250,252,.95);
}

.maya-auth-modal__tab {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 999px;
  min-height: 38px;
  font-weight: 800;
  cursor: pointer;
  color: inherit;
}

.maya-auth-modal__tab.is-active {
  background: #fff;
  box-shadow: 0 6px 16px rgba(15,23,42,.08);
  color: var(--maya-accent);
}

.maya-auth-modal__panel {
  display: grid;
  gap: 8px;
}

.maya-auth-modal__form label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(30,41,59,.82);
}

.maya-auth-modal__form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
}

.maya-auth-modal__password {
  position: relative;
}

.maya-auth-modal__password input {
  padding-right: 42px;
}

.maya-auth-modal__password button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.92);
  cursor: pointer;
}

.maya-auth-modal__helper {
  display: flex;
  justify-content: flex-end;
}

.maya-auth-modal__helper a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--maya-accent);
}

.maya-auth-modal__submit {
  min-height: 44px;
}

.maya-auth-modal__signup-copy {
  margin: 0 0 6px;
  line-height: 1.4;
  color: rgba(30,41,59,.82);
}

.maya-auth-modal__social {
  border-top: 1px solid var(--maya-border);
  margin-top: 4px;
  padding-top: 12px;
}

.maya-auth-modal__social-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(30,41,59,.72);
  margin-bottom: 8px;
}

.maya-auth-modal__social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.maya-auth-modal__social-btn {
  appearance: none;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  min-height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 700;
}

.maya-auth-modal__social-svg {
  width: 14px;
  height: 14px;
  display: block;
}

.maya-auth-modal__social-btn--fb { color: #1d4ed8; }
.maya-auth-modal__social-btn--google { color: #dc2626; }
.maya-auth-modal__social-btn--tiktok { color: #111827; }

.maya-auth-modal__locale {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.maya-auth-modal__locale label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.maya-auth-modal__locale span {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.maya-auth-modal__locale select {
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0 10px;
  font-size: 12px;
  width: 100%;
}

.maya-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147479600;
  display: none;
}

.maya-search-overlay.is-open {
  display: block;
}

.maya-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .58);
  backdrop-filter: blur(3px);
}

.maya-search-overlay__panel {
  position: relative;
  max-width: min(1180px, calc(100vw - 28px));
  margin: 3vh auto 0;
  border-radius: 20px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
  overflow: hidden;
}

.maya-search-overlay__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 10px;
  border-bottom: 1px solid var(--maya-border);
}

.maya-search-overlay__head h3 { margin: 0; font-size: 22px; }
.maya-search-overlay__head p { margin: 4px 0 0; opacity: .72; font-size: 12px; }

.maya-search-overlay__head kbd {
  border-radius: 6px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.92);
  padding: 1px 5px;
  font-size: 11px;
}

.maya-search-overlay__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.94);
  cursor: pointer;
}

.maya-search-overlay__form {
  margin: 14px 18px 8px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(179,135,61,.25);
  border-radius: 16px;
  padding: 10px 10px 10px 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(179,135,61,.06);
}

.maya-search-overlay__form > i { color: var(--maya-accent); font-size: 16px; }

.maya-search-overlay__form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  min-height: 44px;
  font-size: 18px;
  font-weight: 600;
  color: inherit;
}

.maya-search-overlay__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 12px;
}

.maya-search-overlay__chip {
  appearance: none;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: inherit;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.maya-search-overlay__chip:hover,
.maya-search-overlay__chip:focus {
  outline: none;
  border-color: rgba(179,135,61,.28);
  box-shadow: 0 0 0 2px rgba(179,135,61,.10);
}

.maya-search-overlay__chip--link { background: rgba(179,135,61,.07); }

.maya-search-overlay__body {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.maya-search-overlay__hint-card {
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,242,232,.72));
  padding: 14px;
}

.maya-search-overlay__hint-card strong { display: block; margin-bottom: 4px; }
.maya-search-overlay__hint-card p { margin: 0; opacity: .78; max-width: 70ch; }

.maya-search-overlay__hint-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.maya-search-overlay__hint-grid a {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.86);
  font-weight: 700;
}

.maya-search-overlay__results {
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
}

.maya-search-overlay__results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--maya-border);
  font-size: 12px;
  font-weight: 700;
}

.maya-search-overlay__results-bar a { font-weight: 600; }

.maya-search-overlay__frame {
  display: block;
  width: 100%;
  height: min(68vh, 620px);
  border: 0;
  background: #fff;
}

.maya-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
}

.maya-header--light .maya-countdown,
.maya-utility-bar .maya-countdown {
  border-color: var(--maya-border);
  background: rgba(255,255,255,.7);
}

.maya-footer-lead {
  margin-top: 26px;
  padding: 10px 0 0;
}

.maya-footer-lead__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: stretch;
}

.maya-footer-lead__copy,
.maya-footer-lead__form {
  border: 1px solid var(--maya-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.75));
  box-shadow: var(--maya-shadow);
  padding: 18px;
}

.maya-footer-lead--dark .maya-footer-lead__copy,
.maya-footer-lead--dark .maya-footer-lead__form {
  background: linear-gradient(180deg, rgba(14,20,35,.94), rgba(14,20,35,.9));
  color: #eef3ff;
  border-color: rgba(255,255,255,.08);
}

.maya-footer-lead__copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: .95;
}

.maya-footer-lead__copy p {
  margin: 0;
  opacity: .82;
  max-width: 60ch;
}

.maya-footer__trust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-footer-lead__form h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.maya-footer-lead__form p {
  margin: 0 0 12px;
  opacity: .78;
}

.maya-newsletter--footer form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.maya-footer__social {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-footer__social a {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}

.maya-footer {
  margin-top: 20px;
  border-top: 1px solid var(--maya-border);
}

.maya-footer--light {
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.88));
}

.maya-footer--dark {
  background: #0b111f;
  color: #eef3ff;
  border-top-color: rgba(255,255,255,.08);
}

.maya-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 16px;
  padding: 20px 0;
}

.maya-footer__grid--expanded {
  grid-template-columns: 1.2fr .8fr .8fr .9fr 1.1fr;
}

.maya-footer h3,
.maya-footer h4 {
  margin: 0 0 10px;
  font-weight: 400;
}

.maya-footer h4 {
  font-size: 18px;
}

.maya-footer p {
  margin: 0;
  line-height: 1.45;
  opacity: .85;
}

.maya-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maya-footer li + li {
  margin-top: 6px;
}

.maya-footer a {
  color: inherit;
  text-decoration: none;
  opacity: .95;
}

.maya-footer a:hover {
  text-decoration: underline;
}

.maya-footer__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-footer__payments {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maya-footer__payments span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.6);
  padding: 6px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.maya-footer--dark .maya-footer__payments span {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.maya-footer__contact {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.maya-footer__bottom {
  border-top: 1px solid var(--maya-border);
  padding: 12px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  opacity: .92;
}

.maya-footer--dark .maya-footer__bottom {
  border-top-color: rgba(255,255,255,.08);
}

.maya-footer__bottom-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.maya-footer__credit-line {
  border-top: 1px solid var(--maya-border);
  padding: 14px 0 4px;
  text-align: center;
  font-size: 12px;
  color: #475569;
}

.maya-footer--dark .maya-footer__credit-line {
  border-top-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}

.maya-footer__credit-line .fa-heart { color: #ef4444; }
.maya-footer__credit-line .fa-coffee { color: #92400e; }

.maya-footer-module {
  padding: 10px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  background: rgba(255,255,255,.6);
}

.maya-footer-module h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.maya-footer-module p {
  margin: 0;
  font-size: 13px;
}

.maya-admin-preview {
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  padding: 12px;
  background: var(--maya-surface);
}

[data-maya-grid-mode="list"] .maya-grid--products {
  grid-template-columns: 1fr;
}

[data-maya-grid-mode="list"] .maya-card--product {
  flex-direction: row;
}

[data-maya-grid-mode="list"] .maya-card__image {
  width: 180px;
  min-width: 180px;
  aspect-ratio: auto;
  border-right: 1px solid var(--maya-border);
  border-bottom: 0;
}

.maya-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.72);
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.maya-badge--ghost {
  background: rgba(255,255,255,.38);
}

.maya-badge--warn {
  border-color: rgba(245,158,11,.28);
  background: rgba(245,158,11,.12);
  color: #92400e;
}

.maya-badge--ok {
  border-color: rgba(16,185,129,.26);
  background: rgba(16,185,129,.12);
  color: #065f46;
}

.maya-header__meta-left a,
.maya-header__meta-right a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  opacity: .9;
  border-radius: 999px;
  padding: 6px 10px;
}

.maya-header__meta-left a:hover,
.maya-header__meta-right a:hover {
  background: rgba(255,255,255,.12);
  opacity: 1;
}

.maya-cart-trigger {
  position: relative;
}

.maya-cart-trigger__count {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--maya-accent);
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,.16);
}

.maya-nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 240px;
  background: var(--maya-surface);
  color: var(--maya-text);
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  padding: 10px;
  display: none;
  z-index: 70;
}

.maya-nav__item:hover .maya-nav__dropdown,
.maya-nav__item:focus-within .maya-nav__dropdown,
.maya-nav__item.is-open .maya-nav__dropdown {
  display: block;
}

.maya-nav__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maya-nav__dropdown li + li {
  margin-top: 4px;
}

.maya-nav__dropdown a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 10px;
}

.maya-nav__dropdown a:hover {
  background: rgba(148,163,184,.14);
}

.maya-nav__caret {
  margin-left: 6px;
  font-size: 10px;
  opacity: .66;
}

.maya-nav__mega--premium {
  padding: 18px;
  min-width: 720px;
}

.maya-nav__mega-grid--premium {
  grid-template-columns: 1.15fr .85fr;
}

.maya-nav__mega-column--wide {
  min-width: 0;
}

.maya-nav__mega-copy {
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .74;
}

.maya-nav__mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.maya-nav__mega-links li {
  margin: 0;
}

.maya-nav__mega-links a {
  display: grid;
  gap: 2px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,.56);
}

.maya-nav__mega-links a small {
  opacity: .64;
  font-size: 11px;
}

.maya-nav__promo-card--premium {
  min-height: 100%;
  display: grid;
  align-content: start;
}

.maya-nav__promo-link {
  margin-top: 10px;
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.maya-nav__mega--editorial {
  min-width: 760px;
  max-width: min(96vw, 1180px);
  padding: 18px;
}

.maya-nav__mega--editorial.maya-nav__mega--fullscreen {
  left: 0;
  right: auto;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  border-radius: 0 0 18px 18px;
  padding: 18px 0;
}

.maya-nav__mega--editorial.maya-nav__mega--fullscreen .maya-nav__adeluxe-grid {
  width: min(1640px, calc(100vw - 56px));
  max-width: 100%;
  margin: 0 auto;
}

.maya-nav__mega--editorial.maya-nav__mega--wide {
  width: min(96vw, 1460px);
  max-width: min(96vw, 1460px);
}

.maya-nav__mega--editorial.maya-nav__mega--wide .maya-nav__mega-shell {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) minmax(260px, 320px);
}

body[class*="maya-theme-"] .maya-header .maya-nav__mega--editorial.maya-nav__mega--wide .maya-nav__adeluxe-grid {
  grid-template-columns: minmax(220px, 260px) minmax(620px, 1fr) minmax(320px, 380px);
}

body[class*="maya-theme-"] .maya-header .maya-nav__mega--editorial.maya-nav__mega--wide .maya-nav__adeluxe-products.maya-nav__adeluxe-products--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[class*="maya-theme-"] .maya-header .maya-nav__mega--editorial.maya-nav__mega--wide .maya-nav__adeluxe-products--right.maya-nav__adeluxe-products--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maya-nav__adeluxe-video-rotator {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.28);
  background: #0b1220;
  margin-bottom: 10px;
  aspect-ratio: 16 / 9;
}

.maya-nav__adeluxe-video-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.maya-nav__adeluxe-video-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.maya-nav__adeluxe-video-slide.is-active {
  display: block;
}

.maya-nav__adeluxe-video-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.maya-nav__adeluxe-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f172a;
}

.maya-nav__adeluxe-video-media--iframe {
  border: 0;
}

.maya-nav__adeluxe-video-shade {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.maya-nav__adeluxe-video-copy {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 4px;
  text-shadow: 0 8px 18px rgba(0,0,0,.42);
}

.maya-nav__adeluxe-video-copy small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .88;
}

.maya-nav__adeluxe-video-copy strong {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maya-nav__adeluxe-media-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  background: rgba(255,255,255,.96);
  color: #0f172a;
}

.maya-nav__adeluxe-video-dots {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.maya-nav__adeluxe-video-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
}

.maya-nav__adeluxe-video-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.maya-nav__mega-shell {
  display: grid;
  gap: 16px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
}

.maya-nav__mega-shell.has-two-products {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) minmax(220px, 260px);
}

.maya-nav__mega-cats-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.maya-nav__mega-cats-head h4 {
  margin: 0;
}

.maya-nav__mega-cats-head a {
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  opacity: .84;
}

.maya-nav__mega-cats-grid {
  display: grid;
  gap: 10px;
}

.maya-nav__mega-cats-grid--1 {
  grid-template-columns: 1fr;
}

.maya-nav__mega-cats-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.maya-nav__mega-cat-col {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.maya-nav__mega-cat-col li {
  margin: 0;
  padding: 0;
}

.maya-nav__mega-cat-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--maya-border);
  border-radius: 10px;
  padding: 9px 11px;
  background: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.32;
  min-height: 40px;
}
.maya-nav__mega-cat-col a.is-current {
  border-color: var(--maya-accent, #2563eb);
  background: rgba(37,99,235,.12);
}

.maya-nav__mega-cat-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maya-nav__mega-cat-col a i {
  opacity: .62;
  font-size: 11px;
  flex: 0 0 auto;
}

.maya-nav__mega-products {
  display: grid;
  gap: 10px;
}

.maya-nav__mega-product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid var(--maya-border);
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  padding: 8px;
}

.maya-nav__mega-product-thumb {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
}

.maya-nav__mega-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maya-nav__mega-product-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: start;
}

.maya-nav__mega-product-title {
  text-decoration: none;
  font-size: 13px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maya-nav__mega-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.maya-nav__mega-product-price-old {
  font-size: 11px;
  text-decoration: line-through;
  opacity: .64;
}

.maya-nav__mega-product-price-now {
  font-size: 15px;
  font-weight: 800;
}

.maya-nav__mega-product-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.maya-nav__mega-product-qb,
.maya-nav__mega-product-link {
  appearance: none;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  text-decoration: none;
  cursor: pointer;
}

.maya-nav__mega-product-link {
  background: rgba(255,255,255,.7);
}

.maya-nav__mega-product-qb:hover,
.maya-nav__mega-product-link:hover {
  transform: translateY(-1px);
}

.maya-amazon-menu {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 14px;
  align-items: stretch;
}

.maya-amazon-menu__left,
.maya-amazon-menu__right {
  border: 1px solid var(--maya-border);
  border-radius: 16px;
  background: var(--maya-surface);
}

.maya-amazon-menu__left {
  position: relative;
  padding: 12px;
}

.maya-amazon-menu__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .7;
  margin-bottom: 10px;
}

.maya-amazon-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.maya-amazon-menu__item {
  position: relative;
}

.maya-amazon-menu__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 10px;
}

.maya-amazon-menu__item > a:hover,
.maya-amazon-menu__item.is-open > a {
  background: rgba(148,163,184,.12);
}

.maya-amazon-menu__item > a em {
  font-style: normal;
  opacity: .55;
}

.maya-amazon-menu__panel {
  position: absolute;
  left: calc(100% + 12px);
  top: 0;
  min-width: min(58vw, 640px);
  background: var(--maya-surface);
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  padding: 14px;
  display: none;
  z-index: 90;
}

.maya-amazon-menu__item:hover .maya-amazon-menu__panel,
.maya-amazon-menu__item:focus-within .maya-amazon-menu__panel,
.maya-amazon-menu__item.is-open .maya-amazon-menu__panel {
  display: block;
}

.maya-amazon-menu__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.maya-amazon-menu__panel-head h4 {
  margin: 0;
  font-family: var(--maya-font-heading);
}

.maya-amazon-menu__panel-head a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
}

.maya-amazon-menu__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.maya-amazon-menu__panel-link {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--maya-border);
  border-radius: 10px;
  padding: 10px;
}

.maya-amazon-menu__panel-link:hover {
  background: rgba(148,163,184,.1);
}

.maya-amazon-menu__right {
  padding: 16px;
  background: linear-gradient(180deg, rgba(179,135,61,.08), rgba(179,135,61,.02));
}

.maya-amazon-menu__hero span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .7;
}

.maya-amazon-menu__hero strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.maya-amazon-menu__hero p {
  margin: 10px 0 0;
  max-width: 46ch;
  opacity: .78;
}

.maya-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2147479000;
  pointer-events: none;
}

.maya-cart-side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2147477000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15,23,42,.12);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: rgba(255,255,255,.96);
  color: #0f172a;
  min-height: 46px;
  padding: 8px 10px 8px 12px;
  box-shadow: -12px 8px 28px rgba(15,23,42,.12);
  cursor: pointer;
  transition: transform .16s ease, opacity .16s ease, box-shadow .16s ease;
}

.maya-cart-side-tab:hover {
  transform: translateY(-50%) translateX(-2px);
  box-shadow: -14px 10px 30px rgba(15,23,42,.16);
}

.maya-cart-side-tab__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(179,135,61,.12);
  color: var(--maya-accent, #b3873d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.maya-cart-side-tab__text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.maya-cart-side-tab__count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}

.maya-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2,6,23,.38);
  opacity: 0;
  transition: opacity .18s ease;
  z-index: 1;
}

.maya-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100%;
  background: var(--maya-surface);
  color: var(--maya-text);
  border-left: 1px solid var(--maya-border);
  box-shadow: -18px 0 36px rgba(0,0,0,.12);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform .18s ease;
  z-index: 2;
}

.maya-cart-drawer.is-open {
  pointer-events: auto;
}

.maya-cart-drawer.is-open .maya-cart-drawer__backdrop {
  opacity: 1;
}

.maya-cart-drawer.is-open .maya-cart-drawer__panel {
  transform: translateX(0);
}

.maya-cart-drawer__head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--maya-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.maya-cart-drawer__head h3 {
  margin: 0;
  font-size: 20px;
}

.maya-cart-drawer__head p {
  margin: 4px 0 0;
  opacity: .72;
  font-size: 13px;
}

.maya-cart-drawer__close {
  appearance: none;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.66);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  line-height: 1;
  font-size: 20px;
  cursor: pointer;
}

.maya-cart-drawer__body {
  overflow: auto;
  padding: 12px 16px;
}

.maya-cart-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.maya-cart-drawer__item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255,255,255,.55);
  transition: opacity .18s ease, transform .18s ease, max-height .18s ease, margin .18s ease, padding .18s ease;
  max-height: 240px;
  overflow: hidden;
}

.maya-cart-drawer__item.is-highlight {
  border-color: rgba(179,135,61,.35);
  box-shadow: 0 0 0 2px rgba(179,135,61,.08);
}

.maya-cart-drawer__thumb {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--maya-border);
  background: #fff;
}

.maya-cart-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maya-cart-drawer__item-copy a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maya-cart-drawer__item-meta {
  margin-top: 4px;
  font-size: 12px;
  opacity: .72;
}

.maya-cart-drawer__item-variants {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: #475569;
}

.maya-cart-drawer__item-price {
  margin-top: 4px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.maya-cart-drawer__item-price.is-discounted {
  color: #dc2626;
}

.maya-cart-drawer__price-old {
  text-decoration: line-through;
  color: rgba(15,23,42,.52);
  font-size: 12px;
  font-weight: 600;
}

.maya-cart-drawer__price-current {
  font-weight: 800;
  color: #0f172a;
}

.maya-cart-drawer__item-price.is-discounted .maya-cart-drawer__price-current {
  color: #dc2626;
}

.maya-cart-drawer__price-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow: 0 6px 14px rgba(220,38,38,.2);
}

.maya-cart-drawer__qty {
  margin-top: 6px;
  display: inline-grid;
  grid-template-columns: 28px minmax(28px, auto) 28px;
  align-items: center;
  gap: 6px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.82);
  width: fit-content;
}

.maya-cart-drawer__qty-btn {
  appearance: none;
  border: 1px solid var(--maya-border);
  border-radius: 999px;
  width: 28px;
  height: 28px;
  line-height: 1;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}

.maya-cart-drawer__qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.maya-cart-drawer__item-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.maya-cart-drawer__item-btn {
  appearance: none;
  border: 1px solid var(--maya-border);
  background: rgba(255,255,255,.75);
  color: inherit;
  border-radius: 999px;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.maya-cart-drawer__item-btn--danger {
  border-color: rgba(239,68,68,.18);
  color: #b91c1c;
  background: rgba(254,242,242,.9);
}

.maya-cart-drawer__item.is-loading {
  opacity: .72;
  pointer-events: none;
  position: relative;
}

.maya-cart-drawer__item.is-loading:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.55);
  border-radius: 12px;
  z-index: 2;
}

.maya-cart-drawer__item.is-loading:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(15,23,42,.16);
  border-top-color: rgba(15,23,42,.7);
  border-radius: 999px;
  animation: maya-spin .7s linear infinite;
  z-index: 3;
}

@keyframes maya-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.maya-cart-drawer__item.is-removing {
  opacity: 0;
  transform: translateY(-4px);
  max-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none;
}

.maya-cart-drawer__empty {
  border: 1px dashed var(--maya-border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.maya-cart-drawer__empty p {
  margin: 0 0 10px;
  opacity: .8;
}

.maya-cart-drawer__footer {
  border-top: 1px solid var(--maya-border);
  padding: 12px 16px 16px;
  display: grid;
  gap: 12px;
}

.maya-cart-drawer__summary {
  border: 1px solid var(--maya-border);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.45);
}

.maya-cart-drawer__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.maya-cart-drawer__shipping-note {
  margin-top: 6px;
  font-size: 12px;
  opacity: .78;
}

.maya-cart-drawer__shipping-note.is-free {
  color: #047857;
  opacity: 1;
  font-weight: 600;
}

.maya-cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.maya-cart-drawer__actions .maya-btn {
  width: 100%;
  justify-content: center;
}

.maya-cart-drawer__actions .maya-btn small {
  display: block;
  font-weight: 500;
  opacity: .86;
  font-size: 11px;
}

body.maya-cart-open {
  overflow: hidden;
}

body.maya-cart-open .maya-floating-actions,
body.maya-cart-open .maya-floating-actions--left {
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateY(8px);
}

body.maya-cart-open .maya-cart-side-tab {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-50%) translateX(12px) !important;
}

body.maya-cart-open .maya-floating-actions *,
body.maya-cart-open .maya-floating-actions--left * {
  pointer-events: none !important;
}

body[data-maya-page-type="products_info"] .maya-legacy-stage {
  position: relative;
}

body[data-maya-page-type="products_info"] .maya-header,
body[data-maya-page-type="product"] .maya-header {
  z-index: 2147478200;
}

body[data-maya-page-type="products_info"] .maya-utility-bar,
body[data-maya-page-type="products_info"] .maya-topbar,
body[data-maya-page-type="product"] .maya-utility-bar,
body[data-maya-page-type="product"] .maya-topbar {
  z-index: 2147478300;
}

@media (min-width: 821px) {
  .maya-mobile-toggle {
    display: none !important;
  }
}

/* Checkout minimal shell (header/footer) */
.maya-shell--checkout {
  background: #fff;
}

.maya-header--checkout-minimal {
  position: sticky;
  top: 0;
  z-index: 2147481000;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.maya-header__main--checkout {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.maya-logo--checkout strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.maya-logo--checkout small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.maya-logo--checkout img {
  height: 88px;
  width: auto;
  max-width: 340px;
  display: block;
}

.maya-logo--checkout span {
  display: none !important;
}

.maya-header__checkout-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

.maya-checkout-footer {
  margin-top: 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.maya-checkout-footer__top {
  padding: 16px 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: start;
}

.maya-checkout-footer__left,
.maya-checkout-footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #475569;
  font-size: 12px;
}

.maya-checkout-footer__left strong {
  color: #111827;
  font-weight: 800;
}

.maya-checkout-footer__right {
  justify-content: flex-end;
}

.maya-checkout-footer__bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 16px 16px;
  text-align: center;
  color: #64748b;
  font-size: 12px;
}

.maya-checkout-footer__bottom .fa-heart {
  color: #ef4444;
}

.maya-checkout-footer__bottom .fa-coffee {
  color: #92400e;
}

/* Seasonal module (single runtime logic from Menu Stagionale) */
:root {
  --maya-seasonal-primary: #111111;
  --maya-seasonal-accent: #f59e0b;
  --maya-seasonal-text: #ffffff;
  --maya-seasonal-muted: #fef3c7;
  --maya-seasonal-ribbon-bg: #111111;
  --maya-seasonal-ribbon-text: #ffffff;
  --maya-seasonal-ribbon-align: center;
  --maya-seasonal-ribbon-justify: center;
  --maya-seasonal-sign-bg: #1f2937;
  --maya-seasonal-sign-text: #ffffff;
  --maya-seasonal-sign-wire: #9ca3af;
  --maya-seasonal-sign-left: 50%;
  --maya-seasonal-sign-base-translate: -50%;
  --maya-seasonal-sign-shift-x: 0px;
  --maya-seasonal-sign-width: 420px;
  --maya-seasonal-sign-min-height: 72px;
  --maya-seasonal-layer-opacity: .22;
  --maya-seasonal-layer-blend-mode: soft-light;
  --maya-seasonal-marquee-bg: #111827;
  --maya-seasonal-marquee-text: #f8fafc;
  --maya-seasonal-marquee-accent: #f59e0b;
}

.maya-seasonal--positioned {
  position: relative !important;
}

.maya-seasonal-corner-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
  background: var(--maya-seasonal-ribbon-bg);
  color: var(--maya-seasonal-ribbon-text);
  min-width: 170px;
  max-width: calc(100% - 20px);
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: var(--maya-seasonal-ribbon-justify, center);
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 800;
  text-align: var(--maya-seasonal-ribbon-align, center);
  border-radius: 999px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-shadow: 0 10px 20px rgba(2, 6, 23, .18);
  transform: none;
  pointer-events: none;
}

.maya-seasonal-sign-wrap {
  position: relative;
  z-index: 2147478011;
  width: 100%;
  height: 0;
  overflow: visible;
  margin: 0;
  pointer-events: none;
}

.maya-seasonal-sign-hanger {
  position: absolute;
  left: var(--maya-seasonal-sign-left, 50%);
  top: 0;
  transform: translateX(calc(var(--maya-seasonal-sign-base-translate, -50%) + var(--maya-seasonal-sign-shift-x, 0px)));
  display: flex;
  align-items: flex-start;
  min-height: 68px;
}

.maya-seasonal-sign-wrap--header {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--maya-seasonal-sign-offset, 72px);
}

.maya-seasonal-sign-wrap--header .maya-container {
  margin-left: 0;
  margin-right: 0;
}

.maya-seasonal-sign-wire {
  width: 2px;
  height: var(--maya-seasonal-sign-wire-length, 24px);
  background: linear-gradient(180deg, transparent 0%, var(--maya-seasonal-sign-wire) 35%, var(--maya-seasonal-sign-wire) 100%);
  position: absolute;
  top: var(--maya-seasonal-sign-wire-top, 0);
  left: 50%;
  margin-left: -1px;
  opacity: .95;
}

.maya-seasonal-sign-board {
  margin-top: 22px;
  background: var(--maya-seasonal-sign-bg);
  color: var(--maya-seasonal-sign-text);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.25;
  min-height: var(--maya-seasonal-sign-min-height, 72px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
  width: var(--maya-seasonal-sign-width, 420px);
  max-width: 92%;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .24);
  transform-origin: 50% 0;
  animation: maya-seasonal-swing 3.5s ease-in-out infinite;
}

@keyframes maya-seasonal-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1.7deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-1.7deg); }
}

.maya-seasonal-marquee {
  width: 100%;
  position: relative;
  z-index: 6;
  background: var(--maya-seasonal-marquee-bg);
  color: var(--maya-seasonal-marquee-text);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}

.maya-seasonal-marquee--sticky-header {
  position: sticky;
  top: calc(var(--maya-header-top-offset, 42px) + var(--maya-seasonal-header-height, 108px));
  z-index: 2147477900;
}

.maya-seasonal-marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.maya-seasonal-marquee__track {
  display: inline-flex;
  align-items: center;
  min-width: 100%;
  white-space: nowrap;
  padding: 10px 0;
  animation-name: maya-seasonal-marquee-move;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.maya-seasonal-marquee__item {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .02em;
  font-weight: 700;
  padding: 0 4px;
}

.maya-seasonal-marquee__sep {
  color: var(--maya-seasonal-marquee-accent);
  padding: 0 10px;
  font-weight: 900;
  opacity: .95;
}

@keyframes maya-seasonal-marquee-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.maya-seasonal-card-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: var(--maya-seasonal-layer-opacity, .22);
  mix-blend-mode: var(--maya-seasonal-layer-blend-mode, soft-light);
  background: linear-gradient(140deg, rgba(2, 6, 23, .08), transparent 58%);
}

.maya-seasonal-card-layer--snow {
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.75) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 66%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,.45) 0 2px, transparent 3px),
    linear-gradient(150deg, rgba(2, 6, 23, .12), transparent 62%);
}

.maya-seasonal-card-layer--black_friday {
  background-image:
    repeating-linear-gradient(-34deg, rgba(239,68,68,.24) 0 10px, transparent 10px 18px),
    linear-gradient(135deg, rgba(2,6,23,.45), rgba(2,6,23,.08) 58%);
}

.maya-seasonal-card-layer--cyber {
  background-image:
    repeating-linear-gradient(90deg, rgba(6,182,212,.18) 0 2px, transparent 2px 8px),
    linear-gradient(125deg, rgba(8,47,73,.26), rgba(6,182,212,.16) 45%, transparent 72%);
}

.maya-seasonal-card-layer--spring {
  background-image:
    radial-gradient(circle at 18% 24%, rgba(253,224,71,.26), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(251,113,133,.22), transparent 25%),
    linear-gradient(140deg, rgba(22,163,74,.15), transparent 62%);
}

.maya-seasonal-card-layer--summer {
  background-image:
    linear-gradient(132deg, rgba(251,191,36,.28), transparent 58%),
    radial-gradient(circle at 84% 16%, rgba(56,189,248,.24), transparent 24%);
}

.maya-seasonal-card-layer--valentine {
  background-image:
    linear-gradient(136deg, rgba(244,114,182,.28), transparent 56%),
    radial-gradient(circle at 78% 72%, rgba(251,113,133,.26), transparent 24%);
}

.maya-seasonal-card-layer--luxury {
  background-image:
    linear-gradient(130deg, rgba(234,179,8,.2), transparent 58%),
    repeating-linear-gradient(120deg, rgba(15,23,42,.12) 0 2px, transparent 2px 8px);
}

.maya-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .62s cubic-bezier(.22,.61,.36,1),
    transform .72s cubic-bezier(.22,.61,.36,1),
    filter .62s cubic-bezier(.22,.61,.36,1),
    clip-path .78s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter, clip-path;
}

.maya-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 0);
}

.maya-reveal--slide_up { transform: translate3d(0, 28px, 0); }
.maya-reveal--slide_down { transform: translate3d(0, -28px, 0); }
.maya-reveal--slide_left { transform: translate3d(-34px, 0, 0); }
.maya-reveal--slide_right { transform: translate3d(34px, 0, 0); }
.maya-reveal--zoom_in { transform: scale(.92); }
.maya-reveal--zoom_out { transform: scale(1.08); }
.maya-reveal--soft_blur_reveal {
  filter: blur(12px);
  opacity: .02;
}
.maya-reveal--skew_moment { transform: translate3d(0, 20px, 0) skewY(-4deg); }
.maya-reveal--flip_x_3d {
  transform-origin: 50% 0;
  transform: perspective(900px) rotateX(-16deg) translate3d(0, 14px, 0);
}
.maya-reveal--curtain_reveal {
  clip-path: inset(0 0 100% 0 round 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .maya-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 820px) {
  .maya-seasonal-corner-ribbon {
    top: 10px;
    right: 10px;
    min-width: 132px;
    max-width: calc(100% - 20px);
    font-size: 10px;
    padding: 6px 10px;
  }
  .maya-seasonal-sign-hanger {
    min-height: 60px;
  }
  .maya-seasonal-sign-board {
    margin-top: 20px;
    font-size: 12px;
    padding: 10px 12px;
    width: min(94vw, var(--maya-seasonal-sign-width, 420px));
  }
  .maya-seasonal-marquee__item {
    font-size: 11px;
  }
  .maya-seasonal-sign-wrap--header {
    top: var(--maya-seasonal-sign-offset, 52px);
  }
}
