:root {
  --animaexart-bg: #000000;
  --animaexart-bg-soft: #0a0a0d;
  --animaexart-panel: #111116;
  --animaexart-panel-2: #181020;
  --animaexart-text: #f8f8f8;
  --animaexart-muted: #b9b9c4;
  --animaexart-line: rgba(255,255,255,.14);
  --animaexart-yellow: #f8e818;
  --animaexart-yellow-2: #c8b038;
  --animaexart-purple: #382868;
  --animaexart-pink: #f898f0;
  --animaexart-green: #80c8a8;
  --animaexart-red: #ff4d65;
  --animaexart-radius: 22px;
  --animaexart-radius-sm: 14px;
  --animaexart-shadow: 0 22px 70px rgba(0,0,0,.45);
  --animaexart-font: "Rubik", "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --animaexart-container: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.theme-animaexart-dark {
  margin: 0;
  background: var(--animaexart-bg);
  color: var(--animaexart-text);
  font-family: var(--animaexart-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--animaexart-yellow); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--animaexart-yellow);
  color: #000;
  border-radius: 10px;
}
.container-wide { width: min(calc(100% - 60px), var(--animaexart-container)); margin-inline: auto; }
.site-header__inner.container-wide {
  width: calc(100% - 64px);
  max-width: none;
}
.content-area { padding: 64px 0 96px; }
.content-area--narrow { max-width: 880px; }
.entry-content a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.entry-content h2, .entry-content h3 { line-height: 1.15; }

.site-announcement {
  display: block;
  width: 100%;
  background: #fff;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.site-announcement__inner {
  min-height: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
.site-announcement__inner > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
}
.site-announcement a {
  min-height: 60px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
}
.site-announcement a:hover {
  color: #000;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--animaexart-yellow);
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transform: none;
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms ease;
  will-change: transform;
}
.site-header.is-hidden-on-scroll {
  transform: translateY(-100%);
}
html.mobile-menu-open .site-header,
html.search-open .site-header {
  transform: none;
}
.site-header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 170px 1fr 270px;
  align-items: center;
  gap: 28px;
}
.site-branding {
  grid-column: 1;
  grid-row: 1;
}
.site-logo-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; color: #000; }
.site-header .site-logo-text,
.site-header .site-logo-text:hover { color: #000; }
.site-footer .site-logo-text { color: #fff; }
.site-footer .site-logo-text:hover { color: var(--animaexart-yellow); }
.site-branding .custom-logo-link { display: inline-flex; align-items: center; }
.site-branding .custom-logo { display: block; width: auto; max-width: 160px; max-height: 48px; object-fit: contain; }
.site-logo-image { display: block; width: auto; max-width: 160px; max-height: 48px; object-fit: contain; }
.site-logo-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: #000; color: var(--animaexart-yellow);
  font-size: 22px; box-shadow: none;
}
.main-nav {
  grid-column: 2;
  grid-row: 1;
}
.main-nav__menu { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 0; }
.main-nav__menu li { position: relative; }
.main-nav__menu a { display: inline-flex; align-items: center; min-height: 74px; padding: 0 22px; font-size: 14px; font-weight: 600; color: #000; }
.main-nav__menu a:hover { color: #000; }
.main-nav__menu .sub-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); z-index: 80; min-width: 230px; margin: 0; padding: 12px; list-style: none; background: #fff; border: 1px solid rgba(0,0,0,.12); box-shadow: 0 18px 40px rgba(0,0,0,.22); opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease, visibility .16s ease; }
.main-nav__menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.main-nav__menu li:hover > .sub-menu,
.main-nav__menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.main-nav__menu .sub-menu a { display: flex; width: 100%; min-height: auto; padding: 12px 14px; color: #000; font-size: 14px; text-transform: uppercase; }
.main-nav__menu .sub-menu a:hover { background: #f1f1f1; color: #000; }
.menu-item--store,
.menu-item--category { position: static; }
.store-mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 74px;
  z-index: 490;
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.admin-bar .store-mega-menu { top: 106px; }
.menu-item--store:hover .store-mega-menu,
.menu-item--store:focus-within .store-mega-menu,
.menu-item--store.is-open .store-mega-menu,
.menu-item--category:hover .store-mega-menu,
.menu-item--category:focus-within .store-mega-menu,
.menu-item--category.is-open .store-mega-menu,
.store-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.store-mega-menu__inner {
  display: grid;
  grid-template-columns: 190px 190px 220px minmax(0, 1fr);
  gap: clamp(52px, 4.85vw, 100px);
  align-items: start;
  width: min(calc(100% - 320px), 1728px);
  max-width: none;
  padding-top: 36px;
  padding-bottom: 40px;
}
.store-mega-menu h3 {
  margin: 0 0 22px;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.store-mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.store-mega-menu__col a {
  min-height: auto;
  padding: 0;
  color: #111;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0;
}
.store-mega-menu__col a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.store-mega-menu__muted {
  color: #777 !important;
}
.store-mega-menu__featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 1.5vw, 30px);
  max-width: 840px;
}
.store-mega-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: auto;
  width: 100%;
  padding: 0;
  color: #000;
}
.main-nav__menu .store-mega-card {
  min-height: auto;
  padding: 0;
  font-size: inherit;
}
.store-mega-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f2f2f2;
}
.store-mega-card strong {
  color: #000;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
}
.category-mega-menu__inner {
  display: block;
  width: min(calc(100% - 320px), 1728px);
}
.category-mega-menu__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
}
.category-mega-card,
.main-nav__menu .category-mega-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: auto;
  padding: 0;
  color: #000;
}
.category-mega-card:hover {
  color: #000;
}
.category-mega-card__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2f2f2;
}
.category-mega-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-mega-card__media > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #000;
  color: var(--animaexart-yellow);
  font-size: 34px;
  font-weight: 900;
}
.category-mega-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.category-mega-card strong {
  color: #000;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}
.category-mega-card__body span {
  color: #777;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .store-mega-menu__inner {
    width: min(calc(100% - 72px), 1816px);
    grid-template-columns: minmax(130px, .8fr) minmax(130px, .8fr) minmax(145px, .9fr) minmax(300px, 2.2fr);
  }
  .category-mega-menu__inner {
    width: min(calc(100% - 72px), 1816px);
  }
}
.header-search-form {
  grid-column: 2;
  grid-row: 1;
  display: none;
  align-items: center;
  justify-self: center;
  gap: 18px;
  width: min(520px, 46vw);
}
.site-header.is-searching .header-search-form {
  display: flex;
}
.site-header.is-searching .main-nav,
.site-header.is-searching .header-search {
  display: none;
}
.header-search-form input[type="search"] {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #fff5ad;
  color: #111;
  padding: 0 18px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
}
.header-search-form input[type="search"]::placeholder {
  color: #777;
  opacity: 1;
}
.header-search-cancel {
  border: 0;
  background: transparent;
  color: #7f7800;
  padding: 0;
  min-height: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}
.header-actions button,
.header-signin,
.header-cart,
.mobile-menu-toggle,
.link-button {
  cursor: pointer;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 800;
  white-space: nowrap;
}
.header-actions button,
.header-signin,
.header-cart {
  min-height: 34px;
  padding: 0 13px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.header-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 82px;
  padding: 0 19px;
  text-transform: uppercase;
}
.header-search {
  border-color: transparent !important;
  background: transparent !important;
  color: #000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
}
.header-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.header-search__icon svg {
  display: block;
  width: 26px;
  height: 26px;
  overflow: visible;
}
.header-search__icon circle,
.header-search__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  min-width: 98px;
  padding: 0 12px 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header .header-signin:hover,
.site-header .header-cart:hover { color: #fff; }
.header-cart__count {
  min-width: 22px; height: 22px; border-radius: 50%; background: var(--animaexart-yellow); color: #000;
  display: inline-grid; place-items: center; font-size: 13px; line-height: 1; font-weight: 700;
}
.header-cart__count.is-updated { animation: mjxCartCountPulse .32s ease; }
@keyframes mjxCartCountPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.header-country { display: inline-flex; gap: 6px; align-items: center; }
.header-country strong { color: var(--animaexart-yellow); }
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 4px; padding-inline: 12px; }
.mobile-menu-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; background: currentColor; }
.site-search-panel {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 480;
  max-height: calc(100vh - 74px);
  overflow: auto;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 34px 0 42px;
  background: #fff;
  color: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
body.admin-bar .site-search-panel {
  top: 106px;
  max-height: calc(100vh - 106px);
}
.site-search-panel__inner {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  align-items: stretch;
  gap: 34px;
  width: calc(100% - 64px);
  max-width: none;
  margin-inline: auto;
}
.site-search-panel h2 {
  margin: 0 0 22px;
  color: #989898;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.site-search-panel__collections {
  min-height: 268px;
  padding-right: 34px;
  border-right: 1px solid #d9d9d9;
}
.site-search-panel__collection-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.site-search-panel__collection-list a {
  color: #111;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
}
.site-search-panel__collection-list a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-search-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}
.site-search-product-skeleton {
  display: block;
  height: 205px;
  border-radius: 4px;
  background: linear-gradient(105deg, #e4e4e4 0%, #e4e4e4 35%, #f3f3f3 50%, #e4e4e4 65%, #e4e4e4 100%);
  background-size: 220% 100%;
  animation: mjxSearchSkeleton 1.1s ease-in-out infinite;
}
@keyframes mjxSearchSkeleton {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
.site-search-products .product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding-bottom: 0;
}
.site-search-products .product-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  transform: none;
}
.site-search-products .product-card__link:hover {
  color: #111;
  transform: none;
}
.site-search-products .product-card__badge {
  display: none;
}
.site-search-products .product-card__thumb {
  aspect-ratio: 1;
  background: #fff;
}
.site-search-products .product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-search-products .product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  padding: 12px 0 0;
  position: static;
}
.site-search-products .product-card__meta {
  order: 0;
  color: rgb(117, 117, 117);
  font-size: 0.875rem;
  line-height: 19px;
  font-weight: 400;
  padding: 0 0 0.313rem;
  text-transform: uppercase;
}
.site-search-products .product-card__title {
  order: 1;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.site-search-products .product-card__price {
  order: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 8px;
  width: 100%;
  min-height: 32px;
  margin: auto 0 0;
  padding: 0 42px 0 0;
  color: #000;
  font-size: 1.25rem;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
}
.site-search-products .product-card__price .woocommerce-Price-amount::after {
  content: " USD";
}
.site-search-products .product-card__price del {
  color: rgb(117, 117, 117);
  font-size: .78em;
  font-weight: 500;
}
.site-search-products .product-card__price ins {
  color: #000;
  font-weight: 600;
}
.site-search-products .product-card__actions {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.site-search-products .product-card__actions .button,
.site-search-products .product-card__actions .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: auto;
  position: relative;
  transform: none;
}
.site-search-products .product-card__actions .button svg,
.site-search-products .product-card__actions .added_to_cart svg {
  display: block;
  width: 32px;
  height: 32px;
}
.site-search-products .product-card__actions .added_to_cart {
  display: none !important;
}
.site-search-products .product-card__actions .button:hover,
.site-search-products .product-card__actions .added_to_cart:hover {
  background: transparent;
  color: transparent;
  transform: none;
}
.site-search-products .product-card__actions .button:hover svg > path:first-of-type,
.site-search-products .product-card__actions .added_to_cart:hover svg > path:first-of-type {
  fill: #111;
}
.search-form { display: flex; gap: 12px; }
.search-field,
input[type="text"], input[type="email"], input[type="search"], select, textarea {
  width: 100%;
  border: 1px solid var(--animaexart-line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--animaexart-text);
  padding: 13px 14px;
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 3px solid var(--animaexart-yellow);
  outline-offset: 3px;
}

.button, .added_to_cart, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover, .added_to_cart:hover { transform: translateY(-2px); }
.button--yellow, .woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce input.button.alt {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
}
.button--yellow:hover,
.button--yellow:focus-visible,
.button--yellow:active,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus-visible,
.woocommerce button.button.alt:active,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus-visible,
.woocommerce a.button.alt:active,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus-visible,
.woocommerce input.button.alt:active {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
}
.button--dark { background: #000; color: var(--animaexart-text); border-color: #000; }
.button--ghost, .added_to_cart { background: transparent; color: var(--animaexart-text); border-color: var(--animaexart-line); }

.eyebrow {
  margin: 0 0 10px;
  color: var(--animaexart-yellow);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
}
.hero-campaign { position: relative; min-height: 690px; display: grid; align-items: end; overflow: hidden; border-bottom: 1px solid var(--animaexart-line); }
.hero-campaign__media { position: absolute; inset: 0; z-index: 0; }
.hero-campaign__media img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.hero-campaign__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.18) 58%, rgba(0,0,0,.82)), linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 34%); }
.hero-campaign__content { position: relative; z-index: 1; padding: 120px 0 92px; max-width: var(--animaexart-container); }
.hero-campaign h1 { font-size: clamp(46px, 8vw, 108px); line-height: .92; max-width: 840px; margin: 0 0 24px; letter-spacing: -.07em; text-transform: uppercase; }
.hero-campaign p:not(.eyebrow),
.hero-campaign__text p { max-width: 620px; color: var(--animaexart-muted); font-size: 20px; }
.hero-campaign__text p { margin: 0; }
.hero-campaign__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-placeholder { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(248,152,240,.35), transparent 30%), radial-gradient(circle at 20% 70%, rgba(128,200,168,.25), transparent 30%), #000; }
.hero-placeholder__orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; }
.hero-placeholder__orb--one { width: 380px; height: 380px; right: 10%; top: 12%; background: var(--animaexart-purple); }
.hero-placeholder__orb--two { width: 260px; height: 260px; left: 12%; bottom: 16%; background: var(--animaexart-yellow); }
.hero-placeholder__toy { position: absolute; right: 22%; top: 32%; font-size: 180px; color: var(--animaexart-yellow); text-shadow: 14px 14px 0 var(--animaexart-purple); }

.home-section { padding: 88px 0; }
.home-section__head, .collection-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.home-section h2, .feature-card h2, .page-hero h1, .collection-hero h1, .pdp h1 { margin: 0; font-size: clamp(32px, 4vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.home-section__head .view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--animaexart-yellow);
  border-radius: 999px;
  background: #000;
  color: var(--animaexart-yellow);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.home-section__head .view-all:hover,
.home-section__head .view-all:focus-visible {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
  transform: translateY(-2px);
}
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; list-style: none; min-width: 0; }
.product-card__link { display: flex; flex: 1 1 auto; flex-direction: column; min-height: 0; background: var(--animaexart-panel); border: 1px solid var(--animaexart-line); border-radius: var(--animaexart-radius); overflow: hidden; position: relative; transition: transform .2s ease, border-color .2s ease; }
.product-card__link:hover { transform: translateY(-5px); border-color: rgba(248,232,24,.7); color: var(--animaexart-text); }
.product-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: #000; color: #fff; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.product-card__badge--sold-out {
  background: #c9c9c9;
  color: #111;
}
.product-card__badge--pre-order {
  background: var(--animaexart-yellow);
  color: #000;
}
.product-card__badge--in-stock {
  background: #000;
  color: #fff;
}
.product-grid--home .product-card__badge {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}
.product-grid--home .product-card__badge--sold-out {
  background: #2d2d32;
  color: #d7d7dc;
}
.product-grid--home .product-card__badge--pre-order {
  background: var(--animaexart-yellow);
  color: #000;
}
.product-grid--home .product-card__badge--in-stock {
  background: #000;
  color: #fff;
}
.product-card__thumb { aspect-ratio: 4 / 5; display: grid; place-items: center; background: linear-gradient(145deg, #20202a, #08080a); overflow: hidden; }
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card__link:hover .product-card__thumb img { transform: scale(1.04); }
.product-card__placeholder { display: grid; place-items: center; width: 46%; aspect-ratio: 1; border-radius: 28%; background: var(--animaexart-yellow); color: #000; font-size: 52px; font-weight: 900; box-shadow: 12px 12px 0 var(--animaexart-purple); }
.product-card__body { display: flex; flex-direction: column; gap: 8px; padding: 18px; }
.product-card__title { font-size: 18px; line-height: 1.25; }
.product-card__meta { color: var(--animaexart-muted); font-size: 14px; }
.product-card__price { color: var(--animaexart-yellow); font-weight: 900; font-size: 18px; }
.product-card__price del,
.buy-box__price del {
  display: inline-flex;
  align-items: baseline;
  margin-right: 8px;
  color: var(--animaexart-muted);
  font-size: .82em;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}
.product-card__price ins,
.buy-box__price ins {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.product-card__price del .woocommerce-Price-amount,
.buy-box__price del .woocommerce-Price-amount {
  color: inherit;
}
.product-card__price ins .woocommerce-Price-amount,
.buy-box__price ins .woocommerce-Price-amount {
  color: inherit;
}
.product-card__actions { position: relative; z-index: 3; margin-top: auto; padding: 0 18px 18px; }
.product-card__actions .button,
.product-card__actions .added_to_cart {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
}
.product-grid--home .product-card,
.related-products-section .product-card { position: relative; }
.product-grid--home .product-card__body,
.related-products-section .product-card__body {
  padding-bottom: 58px;
}
.product-grid--home .product-card__price,
.related-products-section .product-card__price {
  position: absolute;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  right: 64px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  line-height: 24px;
}
.product-grid--home .product-card__actions {
  display: flex;
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  justify-content: flex-end;
  width: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.product-grid--home .product-card__actions .button,
.product-grid--home .product-card__actions .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--animaexart-yellow);
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .45);
}
.related-products-section .product-card__actions {
  display: flex;
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  justify-content: flex-end;
  width: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.related-products-section .product-card__actions .button,
.related-products-section .product-card__actions .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--animaexart-yellow);
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .45);
}
.product-grid--home .product-card__actions .button svg,
.product-grid--home .product-card__actions .added_to_cart svg,
.related-products-section .product-card__actions .button svg,
.related-products-section .product-card__actions .added_to_cart svg {
  display: block;
  width: 32px;
  height: 32px;
}
.product-grid--home .product-card__actions .added_to_cart,
.related-products-section .product-card__actions .added_to_cart {
  display: none !important;
}
.product-grid--home .product-card__actions .button svg > path:first-of-type,
.product-grid--home .product-card__actions .added_to_cart svg > path:first-of-type,
.product-grid--home .product-card__actions .button svg g path,
.product-grid--home .product-card__actions .added_to_cart svg g path,
.related-products-section .product-card__actions .button svg > path:first-of-type,
.related-products-section .product-card__actions .added_to_cart svg > path:first-of-type,
.related-products-section .product-card__actions .button svg g path,
.related-products-section .product-card__actions .added_to_cart svg g path {
  fill: #111;
}
.product-grid--home .product-card__actions .button:hover,
.product-grid--home .product-card__actions .added_to_cart:hover,
.related-products-section .product-card__actions .button:hover,
.related-products-section .product-card__actions .added_to_cart:hover {
  background: #fff;
  color: transparent;
  transform: none;
}

.feature-collections { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px 0 88px; }
.feature-card { min-height: 440px; border-radius: 32px; padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border: 1px solid var(--animaexart-line); position: relative; overflow: hidden; }
.feature-card::before { content: ""; position: absolute; inset: auto -10% -35% auto; width: 360px; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.18); }
.feature-card > * { position: relative; }
.feature-card--yellow { background: linear-gradient(135deg, var(--animaexart-yellow), #8f7f07); color: #000; }
.feature-card--yellow .eyebrow { color: #000; }
.feature-card--purple { background: radial-gradient(circle at 80% 20%, rgba(248,152,240,.35), transparent 30%), linear-gradient(135deg, var(--animaexart-panel-2), var(--animaexart-purple)); }
.feature-card p:not(.eyebrow) { max-width: 560px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-card__link, .post-card--placeholder { display: block; background: var(--animaexart-panel); border: 1px solid var(--animaexart-line); border-radius: var(--animaexart-radius); overflow: hidden; min-height: 100%; }
.post-card__media { aspect-ratio: 16 / 9; display: grid; place-items: center; background: linear-gradient(135deg, #101014, #281d45); color: var(--animaexart-yellow); font-size: 50px; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px; }
.post-card__body strong, .post-card h3 { font-size: 22px; line-height: 1.15; }
.post-card__body span:last-child, .post-card p { color: var(--animaexart-muted); }
.home-video { padding: 24px 0 96px; }
.home-video__inner {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: 460px;
  padding: clamp(28px, 4.2vw, 64px);
  border: 1px solid var(--animaexart-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 232, 24, .14), transparent 24%),
    linear-gradient(145deg, #181821, #0b0b0f 68%);
  overflow: hidden;
}
.home-video__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
}
.home-video__copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--animaexart-muted);
  font-size: 18px;
  line-height: 1.55;
}
.home-video__actions { margin-top: 26px; }
.home-video__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}
.home-video__media iframe,
.home-video__media video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.home-video__embed {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-video__embed iframe {
  position: absolute;
  inset: 0;
}
.home-video__embed.has-poster iframe {
  opacity: 0;
  pointer-events: none;
}
.home-video__embed.is-playing iframe {
  opacity: 1;
  pointer-events: auto;
}
.home-video__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  transition: opacity 240ms ease, transform 240ms ease;
}
.home-video__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-video__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42));
}
.home-video__play-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--animaexart-yellow);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
}
.home-video__play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid #000;
}
.home-video__poster:hover .home-video__play-icon,
.home-video__poster:focus-visible .home-video__play-icon {
  transform: scale(1.06);
}
.home-video__embed.is-playing .home-video__poster {
  opacity: 0;
  pointer-events: none;
}
.category-showcase-hero {
  padding: 78px 0 36px;
  color: #fff;
}
.category-showcase-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 5vw, 50px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.04em;
}
.category-showcase-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--animaexart-muted);
  font-size: 16px;
  line-height: 1.45;
}
.category-showcase {
  padding: 12px 0 112px;
  color: #fff;
}
.category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.category-showcase-card {
  min-height: 100%;
}
.category-showcase-card a {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  background: linear-gradient(180deg, #191922, #101014);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.category-showcase-card a:hover,
.category-showcase-card a:focus-visible {
  color: #fff;
  transform: translateY(-6px);
  border-color: rgba(248, 232, 24, .7);
  box-shadow: 0 34px 88px rgba(0, 0, 0, .42);
}
.category-showcase-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(248, 232, 24, .2), transparent 34%),
    #08080b;
}
.category-showcase-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .48));
}
.category-showcase-card__media img {
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  object-fit: contain;
  transform: scale(1);
  transition: transform 260ms ease;
}
.category-showcase-card a:hover .category-showcase-card__media img,
.category-showcase-card a:focus-visible .category-showcase-card__media img {
  transform: scale(1.035);
}
.category-showcase-card__media > span {
  color: var(--animaexart-yellow);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}
.category-showcase-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 24px;
}
.category-showcase-card__meta {
  align-self: flex-start;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  color: #000;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.category-showcase-card strong {
  color: #fff;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: .98;
  letter-spacing: -.035em;
}
.category-showcase-card__description {
  color: var(--animaexart-muted);
  font-size: 16px;
  line-height: 1.5;
}
.category-showcase-card__action {
  margin-top: auto;
  color: var(--animaexart-yellow);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.category-showcase__empty {
  padding: 42px;
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  background: #101014;
}
.category-showcase__empty h2 {
  margin: 0 0 12px;
}
.content-area > .page-numbers,
.blog-pagination .page-numbers {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.content-area > .page-numbers li,
.blog-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.content-area > .page-numbers a,
.content-area > .page-numbers span,
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--animaexart-line);
  background: var(--animaexart-panel);
  color: var(--animaexart-text);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}
.content-area > .page-numbers .current,
.blog-pagination .page-numbers .current {
  background: var(--animaexart-yellow);
  border-color: var(--animaexart-yellow);
  color: #000;
}
.content-area > .page-numbers a:hover,
.content-area > .page-numbers a:focus-visible,
.blog-pagination .page-numbers a:hover,
.blog-pagination .page-numbers a:focus-visible {
  background: var(--animaexart-yellow);
  border-color: var(--animaexart-yellow);
  color: #000;
}
.content-area > .page-numbers .prev,
.content-area > .page-numbers .next,
.blog-pagination .page-numbers .prev,
.blog-pagination .page-numbers .next {
  min-width: 86px;
}
.content-area > .page-numbers .dots,
.blog-pagination .page-numbers .dots {
  background: transparent;
  border-color: transparent;
  color: var(--animaexart-muted);
  min-width: 28px;
  padding: 0;
}

.page-hero, .collection-hero { padding: 78px 0 46px; }
.page-hero--center { text-align: center; max-width: 900px; }
.collection-hero { background: radial-gradient(circle at 70% 20%, rgba(56,40,104,.55), transparent 34%), linear-gradient(180deg, #050505, #000); border-bottom: 1px solid var(--animaexart-line); }
.collection-hero p, .collection-hero__description { color: var(--animaexart-muted); max-width: 760px; }
.collection-layout { padding: 42px 0 96px; }
.collection-toolbar { align-items: center; padding: 16px; border: 1px solid var(--animaexart-line); border-radius: var(--animaexart-radius); background: rgba(255,255,255,.04); }
.collection-toolbar__actions { display: flex; align-items: center; gap: 12px; }
.woocommerce-ordering select { min-width: 220px; }
.collection-body { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters-drawer { position: sticky; top: 120px; border: 1px solid var(--animaexart-line); border-radius: var(--animaexart-radius); background: var(--animaexart-panel); padding: 22px; }
.filters-drawer__close { display: none; }
.filters-group { border-top: 1px solid var(--animaexart-line); margin-top: 18px; padding-top: 18px; }
.filters-group h3 { margin: 0 0 10px; }
.filters-group a { display: block; color: var(--animaexart-muted); padding: 6px 0; }
.woocommerce .woocommerce-result-count { margin: 0; color: var(--animaexart-muted); }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { border-radius: 999px; min-width: 40px; min-height: 40px; display: grid; place-items: center; background: var(--animaexart-panel); color: var(--animaexart-text); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--animaexart-yellow); color: #000; }

.post-type-archive-product .site-main,
.tax-product_cat .site-main { background: #030303; color: #111; }
.collection-hero--animaexart {
  position: relative;
  height: clamp(420px, 35.6vw, 470px);
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #030303;
  border-bottom: 0;
}
.collection-hero--animaexart::after {
  display: none;
}
.collection-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.collection-hero__lineup {
  position: absolute;
  z-index: 1;
  right: clamp(44px, 5.4vw, 92px);
  bottom: clamp(18px, 3vw, 42px);
  width: min(48vw, 680px);
  height: auto;
  max-width: 680px;
}
.collection-hero--animaexart .collection-hero__inner {
  position: absolute;
  z-index: 1;
  left: clamp(56px, 5.6vw, 86px);
  top: 47%;
  transform: translateY(-50%);
  width: min(38vw, 520px);
  height: auto;
  overflow: visible;
}
.collection-hero--animaexart.collection-hero--no-lineup .collection-hero__inner {
  left: 50%;
  top: 50%;
  width: min(84vw, 960px);
  transform: translate(-50%, -50%);
  text-align: center;
}
.collection-hero--animaexart h1 {
  font-family: "Rubik", var(--animaexart-font);
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(64px, 7.05vw, 96px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}
.collection-hero--animaexart .eyebrow {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.collection-layout--animaexart {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  padding: 56px 72px 86px;
  border-radius: 50px 50px 0 0;
  background: #fff;
}
.collection-layout--animaexart .collection-toolbar {
  margin-bottom: 62px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
}
.collection-breadcrumb {
  margin: 0;
  color: rgb(0, 0, 0);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 700;
}
.collection-layout--animaexart .collection-toolbar__actions {
  gap: 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}
.collection-sort-label {
  display: none;
}
.woocommerce .collection-layout--animaexart button.collection-filter-toggle.button {
  display: none;
}
.collection-layout--animaexart .woocommerce-ordering {
  width: 179px;
  margin: 0;
}
.collection-layout--animaexart .woocommerce-ordering select {
  width: 179px;
  min-width: 0;
  height: 50px;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  padding: 0 42px 0 14px;
}
.collection-sort {
  position: relative;
  z-index: 12;
  min-width: 214px;
  color: #111;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.collection-sort__trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #8f8f8f;
  border-radius: 5px;
  background: #fff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  text-align: left;
}
.collection-sort__trigger span:first-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.collection-sort__chevron {
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.collection-sort.is-open .collection-sort__chevron {
  transform: rotate(225deg);
}
.collection-sort__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  display: grid;
  max-height: 0;
  overflow: hidden;
  border: 0 solid #8f8f8f;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  background: #fff;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: max-height .24s ease, opacity .18s ease, transform .24s ease, border-width .01s linear .18s;
}
.collection-sort.is-open .collection-sort__trigger {
  border-radius: 5px 5px 0 0;
}
.collection-sort.is-open .collection-sort__menu {
  max-height: 194px;
  border-right: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
  border-left: 1px solid #8f8f8f;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: max-height .26s ease, opacity .18s ease, transform .22s ease;
}
.collection-sort__option {
  display: flex;
  align-items: center;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border-top: 1px solid #9b9b9b;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  background: #fff;
}
.collection-sort__option:hover,
.collection-sort__option.is-active {
  color: rgb(0, 0, 0);
  background: #f7f7f7;
}
.collection-layout--animaexart .collection-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
}
.collection-layout--animaexart .filters-drawer {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 96px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #111;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-user-select: none;
  user-select: none;
}
.collection-layout--animaexart .filters-drawer h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.collection-layout--animaexart .filters-group {
  margin: 0;
  padding: 24px 0 24px;
  border-top: 0;
  border-bottom: 1px solid #ddd;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
}
.collection-layout--animaexart .filters-group:last-of-type {
  padding-top: 24px;
  padding-bottom: 0;
  border-bottom: 0;
}
.collection-layout--animaexart .filters-drawer > .filters-group:first-of-type:not(.is-collapsed) {
  padding-top: 0;
}
.collection-layout--animaexart .filters-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin: 0;
  cursor: pointer;
  list-style: none;
  color: #111;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: none;
}
.collection-layout--animaexart .filters-group summary::-webkit-details-marker { display: none; }
.collection-layout--animaexart .filters-group summary::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 22px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  transform: rotate(45deg);
  transition: transform .24s ease;
}
.collection-layout--animaexart .filters-group.is-collapsed summary::after {
  transform: rotate(225deg);
}
@keyframes mjxFilterTextIn {
  0% {
    transform: translateY(-16px);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes mjxFilterTextOut {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  100% {
    transform: translateY(-16px);
    visibility: visible;
  }
}
.collection-layout--animaexart .filters-group.is-collapsed {
  padding-top: 24px;
  padding-bottom: 24px;
}
.collection-layout--animaexart .filters-drawer > .filters-group:first-of-type.is-collapsed {
  padding-top: 0;
}
.collection-layout--animaexart .filters-group.is-collapsed summary {
  min-height: 42px;
}
.collection-layout--animaexart .filters-panel {
  overflow: hidden;
  max-height: var(--filter-panel-height, none);
  padding-bottom: 6px;
  opacity: 1;
  visibility: visible;
  transition: max-height 300ms ease, opacity 300ms ease, padding-top 300ms ease, padding-bottom 300ms ease;
}
.collection-layout--animaexart .filters-group.is-filter-opening .filters-panel {
  max-height: none;
  transition: none;
}
.collection-layout--animaexart .filters-group.is-collapsed .filters-panel {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.collection-layout--animaexart .filters-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.collection-layout--animaexart .filters-extra {
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: hidden;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .56s cubic-bezier(.22, 1, .36, 1), opacity .34s ease, transform .46s cubic-bezier(.22, 1, .36, 1), margin-top .4s ease;
}
.collection-layout--animaexart .filters-group.is-more-expanded .filters-extra {
  max-height: var(--filter-extra-height, 1000px);
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 12px;
}
.collection-layout--animaexart .filters-group a.filter-option {
  margin: 0 16px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: start;
  gap: 24px;
  color: #000;
  min-height: 32px;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
}
.collection-layout--animaexart .filters-options > a.filter-option {
  margin-bottom: 26px;
}
.collection-layout--animaexart .filters-options > a.filter-option:last-child {
  margin-bottom: 0;
}
.collection-layout--animaexart .filters-group a.filter-option,
.collection-layout--animaexart .filter-more {
  transform: translateX(0);
  will-change: transform;
}
.collection-layout--animaexart .filters-group.is-filter-opening a.filter-option,
.collection-layout--animaexart .filters-group.is-filter-opening .filter-more {
  animation: 300ms ease 0s 1 normal forwards running mjxFilterTextIn;
}
.collection-layout--animaexart .filters-group.is-filter-closing a.filter-option,
.collection-layout--animaexart .filters-group.is-filter-closing .filter-more {
  animation: 300ms ease 0s 1 normal forwards running mjxFilterTextOut;
}
.collection-layout--animaexart .filters-group a.filter-option:hover {
  color: #000;
  text-decoration: none;
}
.collection-layout--animaexart .filters-group a.filter-option:focus,
.collection-layout--animaexart .filters-group a.filter-option:focus-visible {
  color: #000;
  outline: 0;
  text-decoration: none;
}
.collection-layout--animaexart .filters-group a.filter-option:focus-visible .filter-checkbox {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);
}
.collection-layout--animaexart .filters-group.has-more .filters-options {
  gap: 0;
}
.collection-layout--animaexart .filters-group.has-more .filters-options > a.filter-option:nth-of-type(5) {
  margin-bottom: 10px;
}
.collection-layout--animaexart .filter-price-form {
  margin: 0;
}
.collection-layout--animaexart .filter-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  margin-right: 16px;
}
.collection-layout--animaexart .filter-price-field {
  display: grid;
  gap: 12px;
  margin: 0;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: none;
}
.collection-layout--animaexart .filter-price-field span {
  display: block;
}
.collection-layout--animaexart .filter-price-field input {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  margin-left: 1px;
  border: 1px solid #8a8a8a;
  border-radius: 6px;
  background: #fff;
  padding: 0 18px;
  color: #000;
  font: inherit;
  font-size: 20px;
  line-height: 48px;
  font-weight: 500;
  appearance: textfield;
}
.collection-layout--animaexart .filter-price-field input::-webkit-outer-spin-button,
.collection-layout--animaexart .filter-price-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.collection-layout--animaexart .filter-price-field input:focus-visible {
  border-color: #111;
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 1px #111;
}
.collection-layout--animaexart .filter-price-field input:focus {
  border-color: #111;
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 1px #111;
}
.collection-layout--animaexart .filter-price-to {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: none;
}
.collection-layout--animaexart .filter-checkbox {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1.5px solid #000;
  border-radius: 5px;
  justify-self: end;
}
.collection-layout--animaexart .filter-option.is-active .filter-checkbox,
.collection-layout--animaexart .filter-option[aria-checked="true"] .filter-checkbox {
  border-color: #000;
  background: #000;
  box-shadow: none;
}
.collection-layout--animaexart .filter-option.is-active:focus-visible .filter-checkbox,
.collection-layout--animaexart .filter-option[aria-checked="true"]:focus-visible .filter-checkbox {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);
}
.collection-layout--animaexart .filter-option.is-active .filter-checkbox::after,
.collection-layout--animaexart .filter-option[aria-checked="true"] .filter-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 15px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}
.collection-layout--animaexart .filter-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  padding: 0;
  gap: 12px;
  min-height: 32px;
  width: auto;
  margin: -2px 0 0;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.collection-layout--animaexart .filter-more [data-filter-more-label] {
  display: block;
  line-height: 24px;
}
.collection-layout--animaexart .filter-more__plus {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: -4px;
  font-size: 27px;
  line-height: 24px;
  font-weight: 300;
  transition: transform .24s ease;
}
.collection-layout--animaexart .filters-group.is-more-expanded .filter-more__plus {
  transform: none;
}
.collection-layout--animaexart .selected-filters {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
}
.collection-layout--animaexart .selected-filter-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 16px 0 24px;
  border-radius: 999px;
  background: #ddd;
  color: #111;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
}
.collection-layout--animaexart .selected-filter-chip:hover {
  color: #111;
}
.collection-layout--animaexart .selected-filter-chip span:last-child {
  justify-self: end;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}
.collection-layout--animaexart .selected-filters__clear {
  display: inline-flex;
  width: fit-content;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.collection-layout--animaexart .selected-filters__clear:hover {
  color: #000;
}
.collection-empty-state {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 360px;
  padding-top: 86px;
  color: #111;
  text-align: center;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.collection-empty-state h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}
.collection-empty-state p {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}
.collection-products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}
.collection-products .product-card {
  position: relative;
}
.collection-products .product-card__link {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #111;
  overflow: visible;
  position: relative;
}
.collection-products .product-card__link:hover {
  color: #111;
  border-color: transparent;
  transform: none;
}
.collection-products .product-card__thumb {
  aspect-ratio: 1;
  background: #f4f4f4;
}
.collection-products .product-card__thumb img {
  object-fit: cover;
}
.collection-products .product-card__badge {
  top: 12px;
  left: 12px;
  border: 0;
  border-radius: 6.25rem;
  background: #000;
  color: #fff;
  padding: 0.375rem 1.125rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}
.collection-products .product-card__badge--sold-out {
  background: #c9c9c9;
  color: #111;
}
.collection-products .product-card__badge--pre-order {
  background: var(--animaexart-yellow);
  color: #000;
}
.collection-products .product-card__badge--in-stock {
  background: #000;
  color: #fff;
}
.collection-products .product-card__body {
  gap: 0;
  padding: 0 48px 0 0;
  position: relative;
}
.collection-products .product-card__meta {
  order: 0;
  color: rgb(117, 117, 117);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 19px;
  padding-top: 1rem;
  padding-bottom: 0.313rem;
  text-transform: uppercase;
}
.collection-products .product-card__title {
  order: 1;
  min-height: 0;
  height: 48px;
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.collection-products .product-card__price {
  order: 2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 8px;
  margin: 0;
  padding-block: 0.3rem;
  padding-right: 48px;
  color: rgb(0, 0, 0);
  font-size: 1.25rem;
  line-height: 24px;
  font-weight: 600;
}
.collection-products .product-card__price .woocommerce-Price-amount::after {
  content: " USD";
}
.collection-products .product-card__price del {
  color: rgb(117, 117, 117);
  font-size: .78em;
  font-weight: 500;
}
.collection-products .product-card__price ins {
  color: #000;
  font-weight: 600;
}
.collection-products .product-card__actions {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 1px;
  z-index: 3;
  justify-content: flex-end;
  width: 32px;
  padding: 0;
  margin: 0;
  min-height: 32px;
  pointer-events: none;
}
.collection-products .product-card__actions .button,
.collection-products .product-card__actions .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: auto;
  position: relative;
  transform: none;
}
.collection-products .product-card__actions .button svg,
.collection-products .product-card__actions .added_to_cart svg {
  display: block;
  width: 32px;
  height: 32px;
}
.collection-products .product-card__actions .added_to_cart {
  display: none !important;
}
.collection-products .product-card__actions .button.is-loading,
.collection-products .product-card__actions .button.is-disabled {
  opacity: .45;
}
.collection-products .product-card__actions .button.is-loading {
  cursor: wait;
}
.collection-products .product-card__actions .button.is-disabled {
  cursor: default;
}
.collection-products .product-card__actions .button:hover,
.collection-products .product-card__actions .added_to_cart:hover {
  background: transparent;
  color: transparent;
  transform: none;
}
.collection-products .product-card__actions .button:hover svg > path:first-of-type,
.collection-products .product-card__actions .added_to_cart:hover svg > path:first-of-type {
  fill: #111;
}
.collection-products {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .32s ease, transform .36s cubic-bezier(.22, 1, .36, 1);
}
html.collection-ready .collection-products,
.collection-products.is-ready {
  opacity: 1;
  transform: translateY(0);
}
html.collection-page-leaving .collection-products,
.collection-products.is-leaving {
  opacity: 0;
  transform: translateY(-18px);
}
.collection-layout--animaexart nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 14px;
  margin: 76px 0 0;
  padding: 0;
  border: 0;
}
.collection-layout--animaexart nav.woocommerce-pagination ul li {
  border: 0;
  margin: 0;
  padding: 0;
}
.collection-layout--animaexart nav.woocommerce-pagination ul li a,
.collection-layout--animaexart nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: #fff;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.collection-layout--animaexart nav.woocommerce-pagination ul li span.current {
  background: #111;
  color: #fff;
  border-color: #111;
}
.collection-layout--animaexart nav.woocommerce-pagination ul li a:hover,
.collection-layout--animaexart nav.woocommerce-pagination ul li a:focus-visible {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}
.collection-layout--animaexart nav.woocommerce-pagination ul li a.prev,
.collection-layout--animaexart nav.woocommerce-pagination ul li a.next {
  min-width: 58px;
  background: #111;
  color: #fff;
  border-color: #111;
  font-size: 20px;
}
.collection-layout--animaexart nav.woocommerce-pagination ul li a.prev:hover,
.collection-layout--animaexart nav.woocommerce-pagination ul li a.next:hover,
.collection-layout--animaexart nav.woocommerce-pagination ul li a.prev:focus-visible,
.collection-layout--animaexart nav.woocommerce-pagination ul li a.next:focus-visible {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
}
.collection-layout--animaexart nav.woocommerce-pagination ul li span.dots {
  min-width: 28px;
  padding: 0 4px;
  border-color: transparent;
  background: transparent;
  color: #555;
}
@media (prefers-reduced-motion: reduce) {
  .collection-products,
  .collection-layout--animaexart nav.woocommerce-pagination ul li a,
  .collection-layout--animaexart nav.woocommerce-pagination ul li span {
    transition: none;
  }
  .collection-products,
  html.collection-ready .collection-products,
  html.collection-page-leaving .collection-products,
  .collection-products.is-ready,
  .collection-products.is-leaving {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .collection-layout--animaexart nav.woocommerce-pagination ul {
    justify-content: flex-start;
    gap: 8px;
    row-gap: 10px;
  }
  .collection-layout--animaexart nav.woocommerce-pagination ul li a,
  .collection-layout--animaexart nav.woocommerce-pagination ul li span {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }
  .collection-layout--animaexart nav.woocommerce-pagination ul li a.prev,
  .collection-layout--animaexart nav.woocommerce-pagination ul li a.next {
    min-width: 48px;
  }
}

.single-product.theme-animaexart-dark,
.single-product.theme-animaexart-dark .site-main {
  background: var(--animaexart-bg);
  color: var(--animaexart-text);
}
.pdp {
  padding: 56px 0 96px;
  color: var(--animaexart-text);
  font-family: var(--animaexart-font);
}
.pdp__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .78fr);
  gap: 44px;
  align-items: start;
}
.pdp__gallery { min-width: 0; }
.pdp-gallery__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(62vw, 680px);
  padding: 16px;
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  background: var(--animaexart-panel);
  overflow: hidden;
}
.pdp-gallery__track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.pdp-gallery__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(.985);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.pdp-gallery__slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.pdp-gallery__slide img {
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 20px;
}
.pdp-gallery__placeholder {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #000;
  color: var(--animaexart-yellow);
  font-size: 72px;
  font-weight: 900;
}
.pdp-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 1px solid var(--animaexart-line);
  border-radius: 50%;
  background: rgba(0,0,0,.68);
  color: var(--animaexart-yellow);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.pdp-gallery__nav:hover,
.pdp-gallery__nav:focus-visible {
  background: var(--animaexart-yellow);
  border-color: var(--animaexart-yellow);
  color: #000;
  transform: translateY(-50%) scale(1.04);
}
.pdp-gallery__nav--prev { left: 22px; }
.pdp-gallery__nav--next { right: 22px; }
.pdp-gallery__thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pdp-gallery__thumb {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--animaexart-line);
  border-radius: 14px;
  background: var(--animaexart-panel);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.pdp-gallery__thumb.is-active {
  border-color: var(--animaexart-yellow);
  box-shadow: 0 0 0 1px var(--animaexart-yellow);
}
.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.buy-box {
  position: sticky;
  top: 120px;
  background: var(--animaexart-panel);
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--animaexart-shadow);
}
.buy-box__badge {
  position: static;
  display: inline-flex;
  margin-bottom: 18px;
}
.buy-box__subtitle {
  color: var(--animaexart-muted);
}
.buy-box .product_title {
  color: var(--animaexart-text);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  font-weight: 900;
}
.buy-box__price {
  color: var(--animaexart-yellow);
  font-size: 26px;
  font-weight: 900;
  margin: 18px 0;
}
.buy-box__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.buy-box__price p { margin: 0; }
.buy-box__cart form.cart {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}
.buy-box .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-right: 0;
  color: #fff;
}
.buy-box .qty {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.animaexart-quantity__button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}
.animaexart-quantity__button svg {
  display: block;
  width: 40px;
  height: 40px;
}
.animaexart-quantity__button:hover,
.animaexart-quantity__button:focus-visible {
  color: var(--animaexart-yellow);
  transform: scale(1.04);
}
.animaexart-quantity__button:disabled {
  color: rgba(255, 255, 255, .28);
  cursor: default;
  transform: none;
}
.animaexart-quantity__value {
  min-width: 24px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
  user-select: none;
}
.buy-box .single_add_to_cart_button,
.buy-box .button.single_add_to_cart_button {
  min-height: 56px;
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  padding: 0 48px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.buy-box .single_add_to_cart_button.added::after,
.buy-box .button.single_add_to_cart_button.added::after {
  display: none;
  content: none;
}
.buy-box__cart .added_to_cart,
.buy-box__cart .wc-forward {
  display: none !important;
}
.buy-box .single_add_to_cart_button:hover,
.buy-box .single_add_to_cart_button:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}
.buy-box .single_add_to_cart_button.disabled,
.buy-box .single_add_to_cart_button:disabled {
  background: #d7d7d7;
  color: #111;
  cursor: default;
  transform: none;
}
.buy-box .single_add_to_cart_button.is-sold-out {
  opacity: 1;
}
.buy-box__shipping {
  margin: 18px 0 0;
  color: var(--animaexart-muted);
}
.buy-box__shipping a {
  color: var(--animaexart-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp__accordion {
  margin-top: 24px;
  border-top: 1px solid var(--animaexart-line);
}
.pdp__accordion details {
  border-bottom: 1px solid var(--animaexart-line);
  padding: 16px 0;
}
.pdp__accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
  cursor: pointer;
  color: var(--animaexart-text);
  font-weight: 900;
  list-style: none;
}
.pdp__accordion summary::-webkit-details-marker { display: none; }
.pdp__accordion summary::after {
  content: "+";
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}
.pdp__accordion details[open] summary::after {
  content: "−";
}
.pdp__accordion details > div {
  color: var(--animaexart-muted);
  padding-top: 24px;
}
.pdp__accordion details > div a {
  color: var(--animaexart-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp__accordion table {
  width: 100%;
  border-collapse: collapse;
}
.pdp__accordion td,
.pdp__accordion th {
  border: 1px solid var(--animaexart-line);
  padding: 12px 14px;
}
.collection-layout--animaexart .filters-group.is-collapsed > .filters-panel { padding-top: 0; opacity: 0; }
.pdp-section { margin-top: 48px; border: 1px solid var(--animaexart-line); border-radius: 32px; background: var(--animaexart-panel); padding: clamp(24px, 4vw, 44px); color: var(--animaexart-text); }
.viewer-360, .lineup-feature, .artist-feature { display: grid; grid-template-columns: .55fr 1fr; gap: 28px; align-items: center; }
.viewer-360__frame { min-height: 280px; border-radius: 22px; background: #050505; display: grid; place-items: center; overflow: hidden; }
.lineup-feature img, .artist-feature__media { border-radius: 22px; border: 1px solid var(--animaexart-line); }
.artist-feature { grid-template-columns: minmax(260px, .45fr) 1fr; background: radial-gradient(circle at 20% 20%, rgba(248,152,240,.24), transparent 26%), var(--animaexart-panel-2); }
.related-products-section h2 { margin-top: 0; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { background: var(--animaexart-panel); color: var(--animaexart-text); border-top-color: var(--animaexart-yellow); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--animaexart-yellow); }

.contact-page { background: #fff; color: #000; padding-bottom: 84px; }
.contact-hero,
.contact-layout {
  width: min(calc(100% - 144px), 1280px);
  max-width: 1280px;
}
.contact-hero { padding: 56px 0 36px; }
.contact-hero h1 { margin: 0; color: #000; font-size: clamp(42px, 4.8vw, 72px); line-height: 1; font-weight: 700; letter-spacing: 0; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 700px) minmax(280px, 340px); gap: clamp(48px, 7vw, 96px); align-items: start; padding-bottom: 72px; }
.contact-form, .order-status-card, .tier-table-wrap { background: var(--animaexart-panel); border: 1px solid var(--animaexart-line); border-radius: 28px; padding: clamp(24px, 4vw, 42px); }
.contact-form { display: grid; gap: 22px; background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.contact-form label, .order-status-form label { display: grid; gap: 9px; color: #000; font-size: 15px; font-weight: 800; line-height: 1.3; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #8a8a8a;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 15px;
  line-height: 24px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.contact-form input,
.contact-form select { min-height: 48px; }
.contact-form textarea { min-height: 152px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #000; box-shadow: 0 0 0 3px rgba(248,232,24,.45); background: #fffef0; }
.contact-form select {
  height: 48px;
  border-color: #8f8f8f;
  border-radius: 5px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 8px 8px, 8px 8px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 0 42px 0 16px;
  appearance: none;
}
.contact-form .contact-form__native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.contact-select {
  width: 100%;
  min-width: 0;
}
.contact-select .collection-sort__trigger {
  font-family: inherit;
}
.contact-select.is-open .collection-sort__menu {
  max-height: 336px;
  overflow-y: auto;
}
.contact-select__option {
  width: 100%;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.contact-form__submit {
  justify-self: start;
  min-width: 150px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  cursor: pointer;
  padding: 0 34px;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form__submit:hover,
.contact-form__submit:focus-visible { background: #000; color: var(--animaexart-yellow); }
.contact-aside { display: grid; gap: 0; background: #f7f7f7; border: 1px solid #e0e0e0; border-radius: 18px; padding: 24px; }
.contact-info-card { display: grid; gap: 10px; padding: 0 0 24px; border-bottom: 1px solid #dedede; }
.contact-info-card + .contact-info-card { padding-top: 24px; }
.contact-info-card:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-info-card h2 { margin: 0; color: #000; font-size: 21px; line-height: 27px; font-weight: 700; }
.contact-info-card a,
.contact-info-card p,
.contact-info-card div { margin: 0; color: #555; font-size: 15px; line-height: 24px; font-weight: 500; }
.contact-info-card a { color: #000; text-decoration: none; }
.contact-info-card a:hover,
.contact-info-card a:focus-visible { color: #6b6200; }
.order-status-card { max-width: 760px; margin: 0 auto 96px; }
.order-status-form { display: grid; gap: 16px; }
.fineprint { color: var(--animaexart-muted); font-size: 14px; }
.membership-hero { min-height: 520px; display: grid; align-items: center; background: radial-gradient(circle at 75% 30%, rgba(248,232,24,.25), transparent 28%), radial-gradient(circle at 20% 70%, rgba(248,152,240,.25), transparent 30%), #060606; border-bottom: 1px solid var(--animaexart-line); }
.membership-hero__inner { max-width: var(--animaexart-container); }
.membership-hero h1 { font-size: clamp(48px, 8vw, 96px); margin: 0 0 18px; line-height: .95; letter-spacing: -.06em; }
.membership-hero p:not(.eyebrow) { color: var(--animaexart-muted); max-width: 620px; }
.perks-grid { padding: 76px 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.perk-card { background: var(--animaexart-panel); border: 1px solid var(--animaexart-line); border-radius: 22px; padding: 24px; }
.perk-card span { color: var(--animaexart-yellow); font-size: 36px; }
.perk-card h2 { font-size: 20px; line-height: 1.2; }
.tier-table-wrap { margin-bottom: 96px; overflow-x: auto; }
.tier-table table { width: 100%; border-collapse: collapse; min-width: 620px; }
.tier-table th, .tier-table td { border-bottom: 1px solid var(--animaexart-line); padding: 16px; text-align: left; }
.tier-table th { color: var(--animaexart-yellow); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.single-post-layout { padding: 76px 0 96px; }
.single-post-layout__header { max-width: 980px; margin: 0 auto 42px; text-align: center; }
.single-post-layout__header h1 { font-size: clamp(38px, 6vw, 78px); line-height: .98; letter-spacing: -.05em; }
.single-post-layout__media { margin-top: 32px; border-radius: 28px; overflow: hidden; }
.page-featured-image { border-radius: 24px; overflow: hidden; margin-bottom: 32px; }

.site-footer { background: #1c1c1c; border-top: 1px solid rgba(255,255,255,.08); padding: 52px 0 28px; }
.footer-top { display: grid; grid-template-columns: minmax(240px, .78fr) minmax(0, 1.9fr); gap: 64px; align-items: start; }
.footer-brand p { color: #b2b2b2; max-width: 360px; font-size: 14px; line-height: 1.55; }
.footer-columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px; }
.footer-col h3,
.footer-icon-group h3,
.footer-app-block h3 { margin: 0 0 22px; color: var(--animaexart-yellow); font-size: 15px; font-weight: 900; line-height: 1.2; }
.footer-col ul,
.footer-col .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.footer-col a { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.35; }
.footer-col a:hover { color: var(--animaexart-yellow); }
.footer-meta-row { display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 58px; padding-top: 34px; align-items: flex-start; }
.footer-icon-list { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-icon-list a,
.footer-payment-item { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px; }
.footer-icon-list img { display: block; width: 40px; height: 40px; object-fit: contain; }
.footer-payments .footer-icon-list img { width: auto; height: 30px; }
.footer-app-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 30px; }
.footer-app-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-app-buttons a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; font-weight: 900; }
.footer-region { display: grid; gap: 6px; color: #b2b2b2; font-size: 12px; text-align: right; }
.footer-region strong { color: #fff; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 24px; color: #949494; font-size: 12px; font-weight: 700; }
.footer-bottom nav { display: flex; gap: 16px; align-items: center; }
.link-button { min-height: auto; padding: 0; border: 0; background: transparent; color: var(--animaexart-muted); }

body.woocommerce-cart.theme-animaexart-dark {
  background: #fff;
  color: #000;
}
body.woocommerce-cart.theme-animaexart-dark .site-main {
  background: #fff;
  color: #000;
}
body.woocommerce-cart.theme-animaexart-dark .site-main a:hover {
  color: #000;
}

body.woocommerce-account.theme-animaexart-dark .site-main {
  background: #000;
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark .page-hero {
  padding: 64px 0 20px;
}
body.woocommerce-account.theme-animaexart-dark .page-hero .eyebrow {
  color: var(--animaexart-yellow);
}
body.woocommerce-account.theme-animaexart-dark .content-area--account {
  width: min(calc(100% - 144px), 1180px);
  max-width: 1180px;
  padding: 22px 0 112px;
}
body.woocommerce-account.theme-animaexart-dark .content-area--account .entry-content {
  width: 100%;
}
body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce {
  color: #fff;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce:has(.woocommerce-MyAccount-navigation)::before,
body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce:has(.woocommerce-MyAccount-navigation)::after {
  content: none;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--animaexart-line);
  border-radius: 24px;
  background: #101014;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation a {
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-decoration-thickness: 0;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation .is-active a {
  background: var(--animaexart-yellow);
  color: #000;
  text-decoration: none;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-login,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-register,
body.woocommerce-account.theme-animaexart-dark .woocommerce-EditAccountForm,
body.woocommerce-account.theme-animaexart-dark .woocommerce-address-fields,
body.woocommerce-account.theme-animaexart-dark .woocommerce-ResetPassword {
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  background: #101014;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content {
  min-height: 280px;
  padding: clamp(28px, 3vw, 44px);
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content:has(.animaexart-account-dashboard) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content:has(.animaexart-account-edit) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.animaexart-account-dashboard {
  display: grid;
  gap: 24px;
}
.animaexart-account-hero,
.animaexart-account-panel,
.animaexart-account-stat {
  border: 1px solid var(--animaexart-line);
  background: #101014;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.animaexart-account-hero {
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  overflow: hidden;
  position: relative;
}
.animaexart-account-hero::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--animaexart-yellow);
  opacity: .96;
}
.animaexart-account-hero > * {
  position: relative;
  z-index: 1;
}
.animaexart-account-eyebrow {
  margin: 0 0 10px;
  color: var(--animaexart-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.animaexart-account-hero h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .96;
  font-weight: 900;
}
.animaexart-account-hero p:not(.animaexart-account-eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #c9c9d1;
  font-size: 17px;
  line-height: 1.55;
}
.animaexart-account-logout {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.animaexart-account-logout,
body.woocommerce-account.theme-animaexart-dark .entry-content .animaexart-account-logout {
  text-decoration: none;
}
.animaexart-account-logout:hover,
body.woocommerce-account.theme-animaexart-dark .entry-content .animaexart-account-logout:hover {
  border-color: var(--animaexart-yellow);
  background: var(--animaexart-yellow);
  color: #000;
  text-decoration: none;
}
.animaexart-account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.animaexart-account-stat {
  min-height: 124px;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.animaexart-account-stat span {
  color: #8f8f99;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.animaexart-account-stat strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}
.animaexart-account-stat strong .woocommerce-Price-currencySymbol {
  color: var(--animaexart-yellow);
}
.animaexart-account-panel {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
}
.animaexart-account-section-head {
  margin: 0 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.animaexart-account-section-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  font-weight: 900;
}
.animaexart-account-section-head > a,
.animaexart-account-empty a,
.animaexart-account-order__link {
  color: var(--animaexart-yellow);
  font-weight: 900;
  text-decoration: none;
}
body.woocommerce-account.theme-animaexart-dark .entry-content .animaexart-account-section-head > a,
body.woocommerce-account.theme-animaexart-dark .entry-content .animaexart-account-empty a,
body.woocommerce-account.theme-animaexart-dark .entry-content .animaexart-account-order__link {
  text-decoration: none;
}
.animaexart-account-order-list {
  display: grid;
  gap: 12px;
}
.animaexart-account-order {
  min-height: 104px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #070709;
}
.animaexart-account-order h4 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}
.animaexart-account-order p {
  margin: 6px 0 0;
  color: #8f8f99;
  font-size: 14px;
}
.animaexart-account-order__number,
.animaexart-account-order__meta span {
  color: #8f8f99;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.animaexart-account-order__meta {
  display: grid;
  gap: 6px;
  text-align: right;
}
.animaexart-account-order__meta strong {
  color: var(--animaexart-yellow);
  font-size: 18px;
  font-weight: 900;
}
.animaexart-account-order__status {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(248,232,24,.15);
  color: var(--animaexart-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.animaexart-account-order__link {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248,232,24,.45);
  border-radius: 999px;
  text-transform: uppercase;
}
.animaexart-account-order__link:hover,
.animaexart-account-section-head > a:hover,
.animaexart-account-empty a:hover {
  color: #fff;
  text-decoration: none;
}
.animaexart-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 24px;
}
.animaexart-account-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.animaexart-account-addresses article,
.animaexart-account-actions a,
.animaexart-account-empty {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #070709;
}
.animaexart-account-addresses article {
  padding: 18px;
}
.animaexart-account-addresses span {
  display: block;
  margin: 0 0 12px;
  color: #8f8f99;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.animaexart-account-addresses address {
  color: #e6e6ec;
  font-size: 15px;
  line-height: 1.55;
}
.animaexart-account-actions {
  display: grid;
  gap: 12px;
}
.animaexart-account-actions a {
  padding: 18px;
  display: grid;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
.animaexart-account-actions a:hover {
  border-color: rgba(248,232,24,.55);
  background: rgba(248,232,24,.08);
  color: #fff;
}
.animaexart-account-actions strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}
.animaexart-account-actions span {
  color: #a9a9b2;
  font-size: 14px;
  line-height: 1.45;
}
.animaexart-account-empty {
  padding: 30px;
}
.animaexart-account-empty h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
}
.animaexart-account-empty p {
  margin: 0 0 18px;
  color: #a9a9b2;
}
.animaexart-account-edit {
  display: grid;
  gap: 24px;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-EditAccountForm.animaexart-account-edit {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.animaexart-account-edit__hero,
.animaexart-account-edit__section,
.animaexart-account-edit__actions {
  border: 1px solid var(--animaexart-line);
  border-radius: 28px;
  background: #101014;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.animaexart-account-edit__hero {
  min-height: 210px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.animaexart-account-edit__hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--animaexart-yellow);
  opacity: .94;
}
.animaexart-account-edit__hero > * {
  position: relative;
  z-index: 1;
}
.animaexart-account-edit__hero h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .96;
  font-weight: 900;
}
.animaexart-account-edit__hero p:not(.animaexart-account-eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #c9c9d1;
  font-size: 17px;
  line-height: 1.55;
}
.animaexart-account-edit__badge {
  flex: 0 0 auto;
  min-width: 152px;
  padding: 18px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(0,0,0,.42);
}
.animaexart-account-edit__badge span {
  color: #a9a9b2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.animaexart-account-edit__badge strong {
  color: var(--animaexart-yellow);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}
.animaexart-account-edit__section {
  padding: clamp(24px, 3vw, 36px);
}
.animaexart-account-edit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit .form-row {
  margin: 0 0 18px;
}
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit .form-row-first,
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit .form-row-last {
  float: none;
  width: auto;
}
.animaexart-account-edit__hint,
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__hint {
  display: block;
  margin-top: 8px;
  color: #8f8f99;
  font-size: 13px;
  line-height: 1.45;
}
.animaexart-account-edit__password {
  margin: 0;
  border: 1px solid var(--animaexart-line);
}
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__password legend {
  float: none;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  font-weight: 900;
}
.animaexart-account-edit__actions {
  padding: 22px;
  display: flex;
  justify-content: flex-end;
}
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__submit,
body.woocommerce-account.theme-animaexart-dark button.animaexart-account-edit__submit {
  min-width: 210px;
  min-height: 56px;
  background: var(--animaexart-yellow);
  border-color: var(--animaexart-yellow);
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__submit:hover,
body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__submit:focus-visible,
body.woocommerce-account.theme-animaexart-dark button.animaexart-account-edit__submit:hover,
body.woocommerce-account.theme-animaexart-dark button.animaexart-account-edit__submit:focus-visible {
  background: var(--animaexart-yellow);
  border-color: var(--animaexart-yellow);
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-login,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-register,
body.woocommerce-account.theme-animaexart-dark .woocommerce-ResetPassword {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 42px);
}
body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce > h2 {
  max-width: 560px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content p,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-login p,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-register p,
body.woocommerce-account.theme-animaexart-dark .woocommerce-ResetPassword p {
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.65;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content strong,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content h2,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content h3,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content legend,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-login label,
body.woocommerce-account.theme-animaexart-dark .woocommerce-form-register label,
body.woocommerce-account.theme-animaexart-dark .woocommerce-EditAccountForm label,
body.woocommerce-account.theme-animaexart-dark .woocommerce-address-fields label,
body.woocommerce-account.theme-animaexart-dark .woocommerce-ResetPassword label {
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content a,
body.woocommerce-account.theme-animaexart-dark .woocommerce-LostPassword a {
  color: var(--animaexart-yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
body.woocommerce-account.theme-animaexart-dark .form-row {
  margin: 0 0 18px;
}
body.woocommerce-account.theme-animaexart-dark .form-row label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
}
body.woocommerce-account.theme-animaexart-dark .input-text,
body.woocommerce-account.theme-animaexart-dark input[type="text"],
body.woocommerce-account.theme-animaexart-dark input[type="email"],
body.woocommerce-account.theme-animaexart-dark input[type="password"],
body.woocommerce-account.theme-animaexart-dark input[type="tel"],
body.woocommerce-account.theme-animaexart-dark select,
body.woocommerce-account.theme-animaexart-dark textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: #050505;
  color: #fff;
  padding: 0 16px;
  outline: none;
}
body.woocommerce-account.theme-animaexart-dark select {
  appearance: none;
  background-color: #050505;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 8px 8px, 8px 8px;
  cursor: pointer;
  padding-right: 48px;
}
body.woocommerce-account.theme-animaexart-dark textarea {
  min-height: 120px;
  padding-top: 14px;
}
body.woocommerce-account.theme-animaexart-dark .input-text:focus,
body.woocommerce-account.theme-animaexart-dark input:focus,
body.woocommerce-account.theme-animaexart-dark select:focus,
body.woocommerce-account.theme-animaexart-dark textarea:focus {
  border-color: var(--animaexart-yellow);
  box-shadow: 0 0 0 3px rgba(248,232,24,.18);
}
body.woocommerce-account.theme-animaexart-dark .select2-container {
  width: 100% !important;
  color: #fff;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  min-height: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: #050505;
  color: #fff;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-selection--single .select2-selection__rendered {
  flex: 1 1 auto;
  padding: 0 48px 0 16px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255,255,255,.58);
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  right: 0;
  width: 48px;
  height: 50px;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -7px 0 0 -7px;
  border: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .18s ease, margin .18s ease;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default.select2-container--open .select2-selection--single,
body.woocommerce-account.theme-animaexart-dark .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--animaexart-yellow);
  box-shadow: 0 0 0 3px rgba(248,232,24,.18);
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  transform: rotate(225deg);
}
body.woocommerce-account.theme-animaexart-dark .select2-dropdown {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: #101014;
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
}
body.woocommerce-account.theme-animaexart-dark .select2-container--open .select2-dropdown--below {
  margin-top: 8px;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--open .select2-dropdown--above {
  margin-top: -8px;
}
body.woocommerce-account.theme-animaexart-dark .select2-search--dropdown {
  padding: 10px;
}
body.woocommerce-account.theme-animaexart-dark .select2-search--dropdown .select2-search__field {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: #050505;
  color: #fff;
  outline: 0;
  padding: 0 12px;
}
body.woocommerce-account.theme-animaexart-dark .select2-results__option {
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-results__option--highlighted[data-selected] {
  background: var(--animaexart-yellow);
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-results__option[aria-selected="true"],
body.woocommerce-account.theme-animaexart-dark .select2-container--default .select2-results__option[data-selected="true"] {
  background: rgba(248,232,24,.18);
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-form__input-checkbox,
body.woocommerce-account.theme-animaexart-dark input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--animaexart-yellow);
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-button,
body.woocommerce-account.theme-animaexart-dark .button,
body.woocommerce-account.theme-animaexart-dark button.button {
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--animaexart-yellow);
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-button:hover,
body.woocommerce-account.theme-animaexart-dark .button:hover,
body.woocommerce-account.theme-animaexart-dark button.button:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content a.button,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content a.button:hover,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content .button:focus-visible,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content .button:active,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content button.button:focus-visible,
body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content button.button:active {
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark table.shop_table {
  width: 100%;
  border: 1px solid var(--animaexart-line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #08080b;
}
body.woocommerce-account.theme-animaexart-dark table.shop_table th,
body.woocommerce-account.theme-animaexart-dark table.shop_table td {
  padding: 16px;
  border-color: var(--animaexart-line);
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark table.shop_table th {
  color: #9d9da5;
  font-size: 13px;
  text-transform: uppercase;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-Address,
body.woocommerce-account.theme-animaexart-dark .woocommerce-address-fields,
body.woocommerce-account.theme-animaexart-dark .woocommerce-EditAccountForm {
  padding: clamp(24px, 3vw, 38px);
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
body.woocommerce-account.theme-animaexart-dark address {
  color: #d7d7de;
  font-style: normal;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-message,
body.woocommerce-account.theme-animaexart-dark .woocommerce-info,
body.woocommerce-account.theme-animaexart-dark .woocommerce-error {
  border: 1px solid var(--animaexart-line);
  border-radius: 18px;
  background: #101014;
  color: #fff;
}
body.woocommerce-account.theme-animaexart-dark .woocommerce-error {
  border-color: rgba(255,77,101,.55);
}

body.woocommerce-account.theme-animaexart-dark:not(.logged-in),
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .site-main {
  background: #fff;
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .page-hero {
  display: none;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .content-area--account {
  width: min(calc(100% - 144px), 1920px);
  max-width: 1920px;
  padding: 120px 0;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .entry-content > .woocommerce {
  color: #000;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .woocommerce-notices-wrapper {
  margin-bottom: 28px;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .woocommerce-message,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .woocommerce-info,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .woocommerce-error {
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
.animaexart-login-page {
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: start;
  color: #000;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.animaexart-login-register,
.animaexart-login-customers,
.animaexart-recover-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.animaexart-login-register {
  align-items: flex-end;
}
.animaexart-login-customers {
  align-items: flex-start;
}
.animaexart-login-customers > * {
  width: 100%;
  max-width: 340px;
}
.animaexart-login-page h2 {
  margin: 0;
  color: #000;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
.animaexart-login-register h2 {
  margin-bottom: 1.625rem;
}
.animaexart-login-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.animaexart-login-benefit {
  width: 100%;
  max-width: 155px;
  margin: 0;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 6px rgb(0 0 0 / 19%);
  text-align: center;
}
.animaexart-login-benefit img {
  width: auto;
  height: 55px;
  object-fit: contain;
}
.animaexart-login-benefit p {
  margin: 0;
  padding: 0 14px;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.animaexart-login-create {
  width: 200px;
  min-height: 48px;
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none !important;
  transition: all .3s ease-in-out;
}
.animaexart-login-create:hover {
  color: #000;
  text-decoration: none !important;
}
.animaexart-login-customers h2 {
  max-width: 340px;
  margin-bottom: 1.625rem;
  line-height: 1.5;
}
.animaexart-login-copy {
  max-width: 340px;
  margin: 0 0 1.5rem;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-form {
  max-width: 340px;
  margin: 0 0 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-field {
  margin: 0 0 20px;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-field label {
  display: block;
  margin: 0 0 7px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-field input.input-text {
  width: 100%;
  min-height: 43px;
  padding: .625rem .9375rem;
  border: .5px solid #7c7c7c;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: .875rem;
  line-height: 1.4rem;
  font-weight: 400;
  box-shadow: none;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-field input.input-text:focus {
  border: 1px solid #2f2f2f;
  box-shadow: none;
}
.animaexart-login-password {
  position: relative;
  display: block;
}
.animaexart-login-password input.input-text {
  padding-right: 3.5rem;
}
.animaexart-login-password__toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.animaexart-login-password__icon {
  position: relative;
  width: 22px;
  height: 14px;
  display: block;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 999px / 70%;
}
.animaexart-login-password__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  transform: translate(-50%, -50%);
}
.animaexart-login-password .show-password-input {
  display: none !important;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-actions {
  margin: 0;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-submit,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) button.animaexart-login-submit {
  width: 200px;
  min-width: 120px;
  min-height: 48px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #c4c4c4;
  color: #4e5259;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-submit.is-ready,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-submit:hover,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) button.animaexart-login-submit:hover {
  background: var(--animaexart-yellow);
  color: #000;
}
.animaexart-login-lost {
  margin: 15px 0 0;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-lost a {
  color: #000;
  font-size: 14px;
  line-height: 10px;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.animaexart-recover-page {
  align-items: start;
}
.animaexart-recover-panel {
  align-items: flex-start;
}
.animaexart-recover-panel__inner {
  width: 100%;
  max-width: 340px;
}
.animaexart-recover-panel h1 {
  margin: 0 0 26px;
  color: #000;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}
.animaexart-recover-copy {
  margin: 0 0 24px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-form {
  max-width: none;
  margin: 0 0 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.animaexart-recover-field {
  display: flex;
  flex-direction: column;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-field label {
  display: block;
  margin: 0 0 7px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-field input.input-text {
  width: 100%;
  min-height: 43px;
  padding: .625rem .9375rem;
  border: .5px solid #7c7c7c;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: .875rem;
  line-height: 1.4rem;
  font-weight: 400;
  box-shadow: none;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-field input.input-text:focus {
  border: 1px solid #2f2f2f;
  box-shadow: none;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-actions {
  margin: 20px 0 0;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-submit,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) button.animaexart-recover-submit {
  width: 200px;
  min-width: 120px;
  min-height: 40px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #c4c4c4;
  color: #4e5259;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-submit.is-ready,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-recover-submit:hover,
body.woocommerce-account.theme-animaexart-dark:not(.logged-in) button.animaexart-recover-submit:hover {
  background: var(--animaexart-yellow);
  color: #000;
}
.animaexart-recover-cancel {
  width: max-content;
  height: max-content;
  display: inline-block;
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 14px;
  line-height: 10px;
  text-decoration: none;
}
.animaexart-recover-cancel:hover {
  color: #000;
  text-decoration: none;
}

body.woocommerce-checkout.theme-animaexart-dark {
  background: #fff;
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .site-main {
  background: #fff;
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .site-main a:hover {
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .content-area--checkout {
  width: min(calc(100% - 144px), 1180px);
  max-width: 1180px;
  padding: 32px 0 96px;
}
body.woocommerce-checkout.theme-animaexart-dark .content-area--checkout .entry-content {
  width: 100%;
}
body.woocommerce-checkout.theme-animaexart-dark .wp-block-woocommerce-checkout {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  color: #000;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-title,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-step__title,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-step__heading-content,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-order-summary__button-text,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-totals-item__label,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-totals-item__value,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-product-name,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-formatted-money-amount {
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-step__description,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-product-metadata,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-order-summary-item__description,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-validation-error,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-text-input label,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-combobox label {
  color: #747474;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-sidebar,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-main,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-checkout__main,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-checkout__sidebar {
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-text-input input,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-form .wc-block-components-text-input input,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-textarea,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-country-input input,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-state-input input {
  background: #fff;
  color: #000;
  border-color: #bdbdbd;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-panel,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-totals-wrapper,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-order-summary,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-step {
  background: #fff;
  color: #000;
  border-color: #dedede;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-button,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-place-order-button {
  background: var(--animaexart-yellow);
  color: #000;
  border-color: var(--animaexart-yellow);
  border-radius: 999px;
  font-weight: 900;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-button:hover,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-checkout-place-order-button:hover {
  background: var(--animaexart-yellow);
  color: #000;
}
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-sidebar-layout.is-small .wc-block-checkout__actions .checkout-order-summary-block-fill-wrapper,
body.woocommerce-checkout.theme-animaexart-dark .wc-block-components-sidebar-layout.is-mobile .wc-block-checkout__actions .checkout-order-summary-block-fill-wrapper {
  display: none;
}

.animaexart-cart-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px 120px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(320px, 420px);
  gap: 56px;
  align-items: start;
  color: #000;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.animaexart-cart-page h1 {
  margin: 0 0 44px;
  font-size: 42px;
  line-height: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
}
.animaexart-cart-page__form { margin: 0; }
.animaexart-cart-page__list { display: grid; }
.animaexart-cart-page__item {
  position: relative;
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr) 132px;
  gap: 44px;
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid #dedede;
}
.animaexart-cart-page__thumb {
  display: block;
  width: 166px;
  height: 166px;
  background: #f5f5f5;
  overflow: hidden;
}
.animaexart-cart-page__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.animaexart-cart-page__info { min-width: 0; display: grid; align-content: start; }
.animaexart-cart-page__vendor {
  color: #757575;
  font-size: 14px;
  line-height: 19px;
  font-weight: 800;
  text-transform: uppercase;
}
.animaexart-cart-page__title {
  margin-top: 8px;
  max-width: 350px;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  text-decoration: none;
}
.animaexart-cart-page__line-price {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}
.animaexart-cart-page__controls { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.animaexart-cart-page__qty {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #747474;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}
.animaexart-cart-page__qty.is-loading,
.animaexart-cart-page__remove.is-loading { opacity: .45; pointer-events: none; }
.animaexart-cart-page__quantity { min-width: 16px; text-align: center; color: #000; font-size: 18px; line-height: 24px; font-weight: 700; }
.animaexart-cart-page__variant {
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}
.animaexart-cart-page__remove {
  justify-self: start;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  cursor: pointer;
}
.animaexart-cart-page__badge {
  position: absolute;
  right: 0;
  bottom: 38px;
  min-height: 32px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}
.animaexart-cart-page__summary {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
  color: #000;
}
.animaexart-cart-page__summary > span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.animaexart-cart-page__summary > strong {
  margin-top: -8px;
  font-size: 44px;
  line-height: 52px;
  font-weight: 900;
  color: #000;
}
.animaexart-cart-page__notes {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #777;
  font-size: 15px;
  line-height: 23px;
  font-weight: 700;
}
.animaexart-cart-page__notes p { margin: 0; display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; }
.animaexart-cart-page__checkout {
  margin-top: 12px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 900;
  text-decoration: none;
}
.animaexart-cart-page__empty {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 22px;
}
.animaexart-cart-page__empty h2 { margin: 0; color: #000; font-size: 28px; line-height: 34px; font-weight: 900; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 520;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer.is-open,
.cart-drawer.is-closing {
  visibility: visible;
}
.cart-drawer.is-open {
  opacity: 1;
  pointer-events: none;
}
.cart-drawer.is-closing {
  opacity: 0;
}
.cart-drawer__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--cart-drawer-top, 74px);
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, .14);
  opacity: 0;
  pointer-events: auto;
  transition: opacity 300ms ease;
}
.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}
.cart-drawer__panel {
  position: absolute;
  right: 0;
  top: var(--cart-drawer-top, 74px);
  width: min(376px, 100vw);
  max-height: calc(100vh - var(--cart-drawer-top, 74px));
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -10px 12px 28px rgba(0,0,0,.14);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease;
  will-change: transform, opacity;
  pointer-events: auto;
}
.cart-drawer.is-open .cart-drawer__panel {
  opacity: 1;
  transform: translateX(0);
}
.cart-drawer.is-closing .cart-drawer__panel {
  opacity: 0;
  transform: translateX(100%);
}
.cart-drawer__body { min-height: 0; flex: 1 1 auto; max-height: 500px; overflow-y: auto; background: #fff; }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px;
}
.cart-drawer__header h2 {
  margin: 0;
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-drawer__close { display: none; }
.cart-drawer__items { display: grid; }
.cart-drawer__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 24px 22px;
  border-bottom: 1px solid #d9d9d9;
}
.cart-drawer__thumb {
  display: block;
  width: 88px;
  height: 88px;
  background: #f5f5f5;
  overflow: hidden;
}
.cart-drawer__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cart-drawer__info { min-width: 0; display: grid; align-content: start; }
.cart-drawer__vendor {
  color: #757575;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-drawer__title {
  margin-top: 4px;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-drawer__price {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
}
.cart-drawer__controls { margin-top: 12px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cart-drawer__qty {
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}
.cart-drawer__qty.is-loading,
.cart-drawer__remove.is-loading { opacity: .45; pointer-events: none; }
.cart-drawer__quantity { min-width: 18px; text-align: center; font-size: 16px; line-height: 20px; font-weight: 700; color: #000; }
.cart-drawer__variant {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #747474;
  border-radius: 999px;
  color: #000;
  font-size: 13px;
  line-height: 16px;
}
.cart-drawer__remove {
  justify-self: start;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #747474;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  cursor: pointer;
}
.cart-drawer__footer {
  min-height: 96px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #000;
  color: #fff;
}
.cart-drawer__subtotal { display: grid; gap: 3px; }
.cart-drawer__subtotal span { font-size: 14px; line-height: 18px; font-weight: 800; text-transform: uppercase; }
.cart-drawer__subtotal strong { font-size: 26px; line-height: 30px; font-weight: 900; color: #fff; white-space: nowrap; }
.cart-drawer__checkout {
  min-width: 134px;
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--animaexart-yellow);
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 900;
  text-decoration: none;
}
.cart-empty-state { min-height: 420px; display: grid; place-items: center; text-align: center; align-content: center; gap: 14px; padding: 48px; }
.cart-empty-state h3 { margin: 0; color: #000; font-size: 30px; line-height: 36px; font-weight: 900; }
.cart-empty-state p { margin: 0; color: #747474; font-size: 18px; line-height: 26px; }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .cart-drawer__overlay,
  .cart-drawer__panel {
    transition: none;
  }
}
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 950; display: flex; justify-content: space-between; align-items: center; gap: 18px; max-width: 960px; margin: 0 auto; background: var(--animaexart-panel); border: 1px solid var(--animaexart-line); border-radius: 22px; padding: 18px; box-shadow: var(--animaexart-shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--animaexart-muted); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .collection-products .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .site-search-panel__inner {
    grid-template-columns: 280px minmax(0, 1fr);
  }
  .site-search-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .collection-body { grid-template-columns: 1fr; }
  .collection-layout--animaexart .collection-body { grid-template-columns: 1fr; }
  .filters-drawer,
  .collection-layout--animaexart .filters-drawer { position: fixed; left: 0; top: 0; bottom: 0; width: min(360px, 100vw); z-index: 850; transform: translateX(-105%); transition: transform .22s ease; border-radius: 0 24px 24px 0; overflow-y: auto; }
  .filters-drawer.is-open,
  .collection-layout--animaexart .filters-drawer.is-open { transform: translateX(0); }
  .filters-drawer__close { display: block; position: absolute; right: 14px; top: 10px; border: 0; background: transparent; color: var(--animaexart-text); font-size: 34px; }
  .collection-layout--animaexart .filters-drawer { top: 0; border-radius: 0; background: #fff; padding: 26px 22px; color: #111; }
  .collection-layout--animaexart .filters-drawer__close { color: #111; }
  .woocommerce .collection-layout--animaexart button.collection-filter-toggle.button { display: inline-flex; background: #111; color: #fff; border-color: #111; }
  .pdp__top, .viewer-360, .lineup-feature, .artist-feature, .contact-layout, .footer-top { grid-template-columns: 1fr; }
  .contact-layout { gap: 54px; }
  .contact-aside { gap: 34px; }
  .buy-box { position: static; }
  .pdp-gallery__stage { min-height: min(86vw, 680px); }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 821px) {
  .woocommerce .collection-layout--animaexart button.collection-filter-toggle.button {
    display: none;
  }
  .collection-layout--animaexart .collection-body {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }
  .collection-layout--animaexart .filters-drawer {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    left: auto;
    bottom: auto;
    top: 96px;
    width: auto;
    z-index: auto;
    transform: none;
    transition: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
  }
  .collection-layout--animaexart .filters-drawer__close {
    display: none;
  }
}
@media (min-width: 821px) and (max-width: 1199px) {
  .collection-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  body {
    padding-top: 64px;
  }
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  html.mobile-menu-open,
  html.mobile-menu-open body,
  html.search-open,
  html.search-open body {
    overflow: hidden;
  }
  .site-header__inner.container-wide {
    width: calc(100% - 24px);
  }
  .site-header__inner {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }
  .site-branding {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: 0;
  }
  .site-branding .custom-logo,
  .site-logo-image {
    max-width: 126px;
    max-height: 42px;
  }
  .site-logo-text {
    max-width: 138px;
    gap: 8px;
    overflow: hidden;
    font-size: 15px;
    white-space: nowrap;
  }
  .site-logo-mark {
    width: 38px;
    height: 38px;
    font-size: 19px;
    flex: 0 0 auto;
  }
  .site-header.is-searching .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    gap: 5px;
    padding: 0;
    border-color: #000;
    background: #000;
    color: #fff;
  }
  .mobile-menu-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
  }
  .header-search {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }
  .header-search__icon,
  .header-search__icon svg {
    width: 23px;
    height: 23px;
  }
  .header-signin {
    display: none;
  }
  .header-cart {
    min-width: 62px;
    min-height: 36px;
    padding: 0 8px 0 13px;
    gap: 6px;
    font-size: 0;
  }
  .header-cart > span:first-child {
    display: none;
  }
  .header-cart__count {
    min-width: 24px;
    height: 24px;
    font-size: 13px;
  }
  .main-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    overflow: auto;
    padding: 18px 18px 36px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 0;
    background: #fff;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    -webkit-overflow-scrolling: touch;
  }
  body.admin-bar .main-nav {
    top: 110px;
  }
  html.mobile-menu-open .site-header .main-nav,
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav__menu {
    flex-direction: column;
    gap: 0;
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 0;
  }
  .main-nav__menu li {
    width: 100%;
  }
  .main-nav__menu a {
    width: 100%;
    min-height: 56px;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
    color: #000;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
  }
  .main-nav__menu a:hover {
    color: #000;
  }
  .main-nav__menu .sub-menu { position: static; transform: none; min-width: 0; padding: 8px 0 0 16px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; }
  .main-nav__menu .sub-menu::before { content: none; }
  .main-nav__menu .sub-menu a { color: #333; padding: 8px 0; font-size: 16px; font-weight: 600; }
  .main-nav__menu .sub-menu a:hover { background: transparent; color: #000; }
  .store-mega-menu {
    position: static;
    display: block;
    max-height: none;
    margin: 0;
    padding: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  body.admin-bar .store-mega-menu { top: auto; }
  .store-mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    padding: 16px 0 24px;
  }
  .category-mega-menu__inner {
    display: block;
    width: 100%;
  }
  .category-mega-menu__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .main-nav__menu .category-mega-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .category-mega-card__media {
    aspect-ratio: 1;
  }
  .category-mega-card strong {
    font-size: 17px;
    line-height: 22px;
  }
  .store-mega-menu h3 {
    margin: 0 0 12px;
    color: #6d6d6d;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .store-mega-menu__col {
    gap: 0;
  }
  .store-mega-menu__col a {
    min-height: 38px;
    padding: 0;
    border-bottom: 0;
    color: #000;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
  }
  .store-mega-menu__featured {
    display: none;
  }
  .site-header.is-searching .site-branding {
    display: none;
  }
  .site-header.is-searching .mobile-menu-toggle {
    display: none;
  }
  .header-search-form {
    grid-column: 1;
    width: 100%;
    justify-self: stretch;
    gap: 12px;
  }
  .site-header.is-searching .header-actions {
    grid-column: 2;
    grid-row: 1;
  }
  .header-search-form input[type="search"] {
    height: 42px;
    min-height: 42px;
  }
  .site-search-panel {
    top: 64px;
    max-height: calc(100vh - 64px);
    padding: 22px 0 34px;
  }
  body.admin-bar .site-search-panel {
    top: 110px;
    max-height: calc(100vh - 110px);
  }
  .site-search-panel__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-search-panel__collections {
    min-height: 0;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .site-search-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }
  .site-search-products .product-card__title {
    min-height: 40px;
    font-size: 14px;
    line-height: 20px;
  }
  .site-search-products .product-card__meta {
    font-size: 12px;
    line-height: 17px;
  }
  .site-search-products .product-card__price {
    min-height: 30px;
    padding-right: 34px;
    font-size: 16px;
    line-height: 20px;
  }
  .site-search-products .product-card__actions {
    width: 30px;
    min-height: 30px;
  }
  .header-country { display: none; }
  .hero-campaign { min-height: 600px; }
  .product-grid, .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .category-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-video__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .collection-products .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 16px; }
  .collection-layout--animaexart {
    padding: 40px 24px 72px;
    border-radius: 38px 38px 0 0;
    z-index: auto;
  }
  .collection-layout--animaexart .collection-toolbar { align-items: flex-start; flex-direction: column; }
  .collection-layout--animaexart .collection-toolbar__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(154px, 214px);
    width: 100%;
    justify-content: stretch;
    gap: 12px;
  }
  .collection-layout--animaexart .collection-sort {
    width: 100%;
    min-width: 0;
  }
  .woocommerce .collection-layout--animaexart button.collection-filter-toggle.button {
    width: 100%;
    justify-content: center;
  }
  .collection-hero--animaexart { height: 220px; min-height: 0; }
  .collection-hero__image { object-position: 30% center; }
  .collection-hero__lineup {
    right: -28px;
    bottom: 14px;
    width: min(78vw, 360px);
  }
  .collection-hero--animaexart .collection-hero__inner {
    left: 24px;
    top: 48%;
    width: min(44vw, 260px);
  }
  .collection-hero--animaexart h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
  .contact-hero,
  .contact-layout {
    width: min(calc(100% - 32px), 1280px);
  }
  .feature-collections { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2,1fr); }
  .footer-meta-row, .footer-app-row, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-region { text-align: left; }
  .newsletter-form__row, .search-form { flex-direction: column; }
  body.woocommerce-account.theme-animaexart-dark .content-area--account {
    width: min(calc(100% - 32px), 1180px);
    padding-top: 18px;
  }
  body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .content-area--account {
    width: min(calc(100% - 32px), 760px);
    padding: 56px 0;
  }
  .animaexart-login-page {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .animaexart-login-customers h2 {
    margin-bottom: 1.625rem;
  }
  .animaexart-login-copy {
    margin-bottom: 1.5rem;
  }
  body.woocommerce-account.theme-animaexart-dark .entry-content > .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .animaexart-account-stats,
  .animaexart-account-grid,
  .animaexart-account-addresses {
    grid-template-columns: 1fr;
  }
  .animaexart-account-order {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .animaexart-account-order__meta {
    text-align: left;
  }
  .animaexart-account-order__status,
  .animaexart-account-order__link {
    justify-self: start;
  }
  .animaexart-account-edit__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .animaexart-account-edit__hero {
    flex-direction: column;
  }
  .animaexart-account-edit__badge {
    width: min(100%, 220px);
  }
  .animaexart-cart-page {
    max-width: none;
    padding: 52px 20px 78px;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .animaexart-cart-page h1 {
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 1.1;
  }
  .animaexart-cart-page__form,
  .animaexart-cart-page__items,
  .animaexart-cart-page__list {
    width: 100%;
    min-width: 0;
  }
  .animaexart-cart-page__item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .animaexart-cart-page__thumb {
    width: 112px;
    height: 112px;
  }
  .animaexart-cart-page__title {
    max-width: none;
    font-size: 16px;
    line-height: 22px;
  }
  .animaexart-cart-page__controls {
    margin-top: 18px;
    gap: 12px;
  }
  .animaexart-cart-page__qty {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
  .animaexart-cart-page__line-price {
    grid-column: 2;
    text-align: left;
    white-space: normal;
    font-size: 17px;
    line-height: 22px;
  }
  .animaexart-cart-page__badge {
    right: auto;
    bottom: 30px;
    left: 130px;
  }
  .animaexart-cart-page__summary {
    position: static;
    width: 100%;
    min-width: 0;
  }
  .animaexart-cart-page__summary > strong {
    font-size: 34px;
    line-height: 40px;
  }
  .pdp { padding: 30px 0 76px; }
  .pdp__top { gap: 34px; }
  .pdp-gallery__stage { min-height: calc(100vw - 24px); }
  .pdp-gallery__slide img { max-width: 88%; max-height: 88%; }
  .pdp-gallery__nav { width: 40px; height: 40px; font-size: 30px; }
  .pdp-gallery__nav--prev { left: 12px; }
  .pdp-gallery__nav--next { right: 12px; }
  .pdp-gallery__thumb { width: 68px; height: 68px; }
  .buy-box .product_title {
    font-size: clamp(28px, 7.5vw, 36px);
    line-height: 1.08;
  }
  .buy-box__cart form.cart { align-items: stretch; flex-direction: column; }
  .buy-box .quantity,
  .buy-box .qty,
  .buy-box .single_add_to_cart_button,
  .buy-box .button.single_add_to_cart_button { width: 100%; }
  .pdp__accordion { margin-top: 48px; }
}
@media (max-width: 520px) {
  .container-wide { width: min(calc(100% - 24px), var(--animaexart-container)); }
  .hero-campaign__content { padding-bottom: 56px; }
  .product-grid, .post-grid, .perks-grid { grid-template-columns: 1fr; }
  .category-showcase-hero { padding: 52px 0 28px; }
  .category-showcase-hero h1 { font-size: clamp(38px, 11vw, 50px); }
  .category-showcase__grid { grid-template-columns: 1fr; gap: 20px; }
  .category-showcase-card__body { padding: 20px; }
  .collection-products .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .collection-layout--animaexart {
    padding: 34px 16px 64px;
    border-radius: 32px 32px 0 0;
  }
  .collection-breadcrumb {
    font-size: 1.375rem;
    line-height: 1.35;
  }
  .collection-products .product-card__title { font-size: 13px; min-height: 50px; }
  .collection-products .product-card__meta,
  .collection-products .product-card__price { font-size: 12px; }
  .home-section { padding: 56px 0; }
  .contact-hero,
  .contact-layout {
    width: min(calc(100% - 24px), 1280px);
  }
  .contact-hero { padding: 44px 0 28px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 28px; }
  .contact-form__submit { width: 100%; }
  .home-video { padding: 20px 0 64px; }
  .home-video__inner {
    padding: 24px;
    border-radius: 24px;
  }
  .home-video__copy h2 {
    font-size: clamp(30px, 10vw, 44px);
  }
  .home-section__head, .collection-toolbar { align-items: flex-start; flex-direction: column; }
  .collection-toolbar__actions { width: 100%; align-items: stretch; flex-direction: column; }
  .collection-layout--animaexart .collection-toolbar__actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .footer-columns { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .button { flex: 1; }
  body.woocommerce-account.theme-animaexart-dark .page-hero {
    padding-top: 44px;
  }
  body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }
  .animaexart-login-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .animaexart-login-benefit {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .animaexart-login-page h2 {
    font-size: 26px;
    line-height: 38px;
  }
  .animaexart-login-copy {
    font-size: 15px;
  }
  body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-field input.input-text {
    min-height: 43px;
  }
  body.woocommerce-account.theme-animaexart-dark:not(.logged-in) .animaexart-login-submit,
  body.woocommerce-account.theme-animaexart-dark:not(.logged-in) button.animaexart-login-submit,
  .animaexart-login-create {
    width: 100%;
    min-height: 48px;
  }
  body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content,
  body.woocommerce-account.theme-animaexart-dark .woocommerce-form-login,
  body.woocommerce-account.theme-animaexart-dark .woocommerce-form-register,
  body.woocommerce-account.theme-animaexart-dark .woocommerce-ResetPassword {
    border-radius: 22px;
    padding: 24px;
  }
  body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content:has(.animaexart-account-dashboard) {
    padding: 0;
  }
  body.woocommerce-account.theme-animaexart-dark .woocommerce-MyAccount-content:has(.animaexart-account-edit) {
    padding: 0;
  }
  .animaexart-account-hero {
    min-height: 0;
    flex-direction: column;
    border-radius: 24px;
  }
  .animaexart-account-hero::after {
    right: -120px;
    bottom: -150px;
  }
  .animaexart-account-hero h2 {
    font-size: 34px;
    line-height: 1;
  }
  .animaexart-account-hero p:not(.animaexart-account-eyebrow) {
    margin-top: 16px;
    font-size: 15px;
  }
  .animaexart-account-stats {
    gap: 12px;
  }
  .animaexart-account-stat {
    min-height: 100px;
    padding: 18px;
  }
  .animaexart-account-panel {
    padding: 20px;
    border-radius: 22px;
  }
  .animaexart-account-section-head {
    flex-direction: column;
  }
  .animaexart-account-order {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .animaexart-account-addresses {
    gap: 12px;
  }
  .animaexart-account-edit {
    gap: 16px;
  }
  .animaexart-account-edit__hero,
  .animaexart-account-edit__section,
  .animaexart-account-edit__actions {
    border-radius: 22px;
  }
  .animaexart-account-edit__hero {
    min-height: 0;
    padding: 24px;
  }
  .animaexart-account-edit__hero h2 {
    font-size: 34px;
    line-height: 1;
  }
  .animaexart-account-edit__hero p:not(.animaexart-account-eyebrow) {
    margin-top: 16px;
    font-size: 15px;
  }
  .animaexart-account-edit__hero::after {
    right: -150px;
    bottom: -180px;
  }
  .animaexart-account-edit__section,
  .animaexart-account-edit__actions {
    padding: 20px;
  }
  .animaexart-account-edit__actions {
    display: block;
  }
  body.woocommerce-account.theme-animaexart-dark .animaexart-account-edit__submit,
  body.woocommerce-account.theme-animaexart-dark button.animaexart-account-edit__submit {
    width: 100%;
  }
  .animaexart-cart-page {
    padding: 40px 16px 64px;
  }
  .animaexart-cart-page h1 {
    margin-bottom: 24px;
    font-size: 30px;
  }
  .animaexart-cart-page__item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 26px;
    margin-bottom: 26px;
  }
  .animaexart-cart-page__thumb {
    width: 96px;
    height: 96px;
  }
  .animaexart-cart-page__vendor {
    font-size: 11px;
    line-height: 15px;
  }
  .animaexart-cart-page__title {
    margin-top: 5px;
    font-size: 14px;
    line-height: 20px;
  }
  .animaexart-cart-page__controls {
    margin-top: 14px;
    gap: 10px;
  }
  .animaexart-cart-page__qty {
    width: 32px;
    height: 32px;
  }
  .animaexart-cart-page__variant {
    width: 100%;
    justify-content: center;
  }
  .animaexart-cart-page__remove {
    margin-top: 14px;
    font-size: 13px;
  }
  .animaexart-cart-page__line-price {
    font-size: 16px;
    line-height: 20px;
  }
  .animaexart-cart-page__badge {
    left: 110px;
    bottom: 26px;
  }
  .animaexart-cart-page__notes {
    padding: 18px;
    font-size: 13px;
    line-height: 20px;
  }
  .animaexart-cart-page__checkout {
    width: 100%;
  }
}
