:root {
  --ap-ink: #0b0f14;
  --ap-muted: #4a5968;
  --ap-soft: #f1fbff;
  --ap-soft-2: #e2f6ff;
  --ap-line: #dcecf4;
  --ap-surface: #f7fcff;
  --ap-accent: #29b7e8;
  --ap-accent-dark: #0787bf;
  --ap-star: #38bdf8;
  --ap-shadow: 0 18px 45px rgba(10, 45, 65, 0.08);
  --ap-radius: 8px;
  --ap-content: 1120px;
  --ap-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f0fbff 0, #fff 460px);
  color: var(--ap-ink);
  font-family: var(--ap-font-body);
  font-size: 16px;
  line-height: 1.55;
}

body.woocommerce-account,
body.woocommerce-cart {
  background: #f3fbff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ap-accent) !important;
  outline-offset: 3px !important;
}

.ap-wrap {
  width: min(var(--ap-content), calc(100% - 64px));
  margin: 0 auto;
}

.screen-reader-text,
.ap-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ap-skip-link:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ap-ink);
  color: #fff;
}

.ap-topbar {
  background: #101010;
  color: #fff;
  font-size: 11px;
}

.ap-topbar__inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ap-topbar__links,
.ap-topbar__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ap-topbar a {
  color: rgba(255, 255, 255, 0.82);
}

.ap-topbar a:hover,
.ap-topbar a:focus {
  color: #fff;
}

.ap-topbar__socials {
  gap: 13px;
}

.ap-topbar__socials a {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.ap-announcement {
  position: relative;
  z-index: 181;
  background: var(--ap-accent);
  color: #06151d;
  font-size: 12px;
  font-weight: 850;
}

.ap-announcement__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ap-announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ap-header {
  position: relative;
  z-index: 100;
  background: var(--ap-surface);
}

.ap-header--growly {
  position: sticky;
  top: 0;
  z-index: 180;
  background: #eaf9ff;
  padding: 24px 0 18px;
  transition: background-color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.ap-header--growly > .ap-wrap {
  position: relative;
}

.ap-header--growly.is-scrolled {
  background: rgba(234, 249, 255, 0.86);
  padding: 10px 0;
  box-shadow: 0 10px 28px rgba(10, 45, 65, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ap-growly-navbar {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(190px, 260px) auto;
  align-items: center;
  min-height: 60px;
  gap: 16px;
  border-radius: 999px;
  background: #101113;
  color: #fff;
  padding: 0 10px 0 22px;
  box-shadow: 0 18px 34px rgba(16, 17, 19, 0.12);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.ap-header--growly.is-scrolled .ap-growly-navbar {
  min-height: 54px;
  box-shadow: 0 14px 30px rgba(16, 17, 19, 0.16);
}

.ap-growly-navbar .ap-brand {
  color: #fff;
}

.ap-growly-navbar .ap-brand__name {
  max-width: 200px;
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

.ap-growly-nav {
  justify-self: center;
}

.ap-growly-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-growly-menu a,
.ap-shop-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 0 17px;
}

.ap-growly-menu a:hover,
.ap-growly-menu a:focus,
.ap-shop-dropdown__toggle:hover,
.ap-shop-dropdown__toggle:focus,
.ap-shop-dropdown.is-open .ap-shop-dropdown__toggle {
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
}

.ap-shop-dropdown {
  position: relative;
}

.ap-shop-dropdown::after {
  content: "";
  position: absolute;
  z-index: 39;
  top: 100%;
  left: 50%;
  width: max(100%, 240px);
  height: 16px;
  pointer-events: none;
  transform: translateX(-50%);
}

.ap-shop-dropdown:hover::after,
.ap-shop-dropdown:focus-within::after,
.ap-shop-dropdown.is-open::after {
  pointer-events: auto;
}

.ap-shop-dropdown__toggle span {
  width: 5px;
  height: 5px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

.ap-shop-dropdown.is-open .ap-shop-dropdown__toggle span {
  transform: translateY(1px) rotate(225deg);
}

.ap-shop-dropdown__panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 13px);
  left: 50%;
  display: grid;
  min-width: 240px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(16, 17, 19, 0.16);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.96);
  transform-origin: top center;
  transition: opacity 150ms ease, transform 160ms ease;
}

.ap-shop-dropdown:hover .ap-shop-dropdown__toggle,
.ap-shop-dropdown:focus-within .ap-shop-dropdown__toggle {
  background: var(--ap-accent);
  color: #fff;
}

.ap-shop-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(16, 17, 19, 0.08);
  border-top: 1px solid rgba(16, 17, 19, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.ap-shop-dropdown.is-open .ap-shop-dropdown__panel,
.ap-shop-dropdown:hover .ap-shop-dropdown__panel,
.ap-shop-dropdown:focus-within .ap-shop-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.ap-shop-dropdown__panel a {
  justify-content: space-between;
  min-height: 38px;
  border-radius: 12px;
  color: #303946;
  font-size: 12px;
  padding: 0 12px;
}

.ap-shop-dropdown__panel a:hover,
.ap-shop-dropdown__panel a:focus,
.ap-shop-dropdown__all {
  background: #eaf9ff;
  color: var(--ap-accent);
}

.ap-shop-dropdown__panel span {
  margin-left: 18px;
  color: #8a94a3;
  font-size: 10px;
  font-weight: 750;
}

.ap-growly-navbar .ap-menu {
  justify-content: center;
  gap: 4px;
}

.ap-growly-navbar .ap-menu a {
  min-height: 38px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 800;
  padding: 0 17px;
}

.ap-growly-navbar .ap-menu a:hover,
.ap-growly-navbar .ap-menu a:focus,
.ap-growly-navbar .ap-menu .current-menu-item > a {
  background: var(--ap-accent);
  color: #fff;
}

.ap-nav-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 38px;
  align-items: center;
  justify-self: stretch;
  height: 40px;
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ap-nav-search__shortcut {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  padding: 4px 6px;
}

.ap-nav-search:focus-within {
  border-color: rgba(42, 184, 228, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(42, 184, 228, 0.18);
}

.ap-nav-search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  padding: 0 4px 0 16px;
}

.ap-nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.ap-nav-search input:focus-visible {
  outline: 0 !important;
  outline-offset: 0 !important;
}

.ap-mobile-search-toggle,
.ap-mobile-search-popover {
  display: none;
}

.ap-nav-search button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.ap-nav-search button:hover,
.ap-nav-search button:focus {
  color: #fff;
}

.ap-nav-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.ap-search-suggest {
  position: relative;
}

.ap-search-suggest__panel {
  position: absolute;
  z-index: 220;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  overflow: hidden;
  min-width: 280px;
  border: 1px solid rgba(105, 134, 151, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(10, 45, 65, 0.18);
  padding: 8px;
}

.ap-nav-search .ap-search-suggest__panel {
  left: auto;
  right: 0;
  width: min(420px, 78vw);
  border-color: rgba(255, 255, 255, 0.1);
  background: #101113;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.ap-search-suggest__panel[hidden] {
  display: none;
}

.ap-search-suggest__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-radius: 12px;
  color: var(--ap-ink);
  padding: 7px;
}

.ap-nav-search .ap-search-suggest__item {
  color: #fff;
}

.ap-search-suggest__item:hover,
.ap-search-suggest__item:focus {
  background: #eaf9ff;
  color: var(--ap-ink);
  outline: 0;
}

.ap-nav-search .ap-search-suggest__item:hover,
.ap-nav-search .ap-search-suggest__item:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ap-search-suggest__image,
.ap-search-suggest__badge {
  display: grid;
  overflow: hidden;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: #eef8fd;
  color: var(--ap-accent);
  font-size: 12px;
  font-weight: 900;
}

.ap-nav-search .ap-search-suggest__image,
.ap-nav-search .ap-search-suggest__badge {
  background: rgba(255, 255, 255, 0.1);
}

.ap-search-suggest__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-search-suggest__content {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.ap-search-suggest__content strong,
.ap-search-suggest__content span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ap-search-suggest__content strong {
  font-size: 13px;
  font-weight: 900;
}

.ap-search-suggest__content span,
.ap-search-suggest__empty {
  color: var(--ap-muted);
  font-size: 11px;
  font-weight: 750;
}

.ap-nav-search .ap-search-suggest__content span,
.ap-nav-search .ap-search-suggest__empty {
  color: rgba(255, 255, 255, 0.62);
}

.ap-search-suggest__empty {
  padding: 12px;
}

.ap-growly-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 18px;
}

.ap-growly-actions .ap-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
}

.ap-growly-actions .ap-icon-button--account {
  margin-left: 2px;
}

.ap-growly-actions .ap-icon-button:hover,
.ap-growly-actions .ap-icon-button:focus {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.ap-account-menu {
  position: relative;
  display: grid;
  place-items: center;
}

.ap-account-menu__panel[hidden] {
  display: none;
}

.ap-account-menu__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -8px;
  z-index: 240;
  display: grid;
  width: 230px;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ap-ink);
  box-shadow: 0 24px 52px rgba(10, 45, 65, 0.2);
  padding: 8px;
}

.ap-account-menu__welcome {
  display: grid;
  gap: 3px;
  margin: -8px -8px 6px;
  border-bottom: 1px solid var(--ap-line);
  background: var(--ap-soft);
  padding: 15px 16px 13px;
}

.ap-account-menu__welcome span {
  color: var(--ap-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.ap-account-menu__welcome strong {
  overflow: hidden;
  color: var(--ap-ink);
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ap-account-menu__panel a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-radius: 6px;
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 850;
  padding: 0 10px;
  text-decoration: none;
}

.ap-account-menu__panel a:hover,
.ap-account-menu__panel a:focus-visible {
  background: var(--ap-soft);
  color: var(--ap-ink);
  outline: 0;
}

.ap-account-menu__panel .ap-account-menu__logout {
  margin-top: 6px;
  border-top: 1px solid var(--ap-line);
  border-radius: 0 0 6px 6px;
  color: #b42318;
  padding-top: 6px;
}

.ap-growly-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #101113;
  font-size: 11px;
  font-weight: 850;
  padding: 0 14px;
  white-space: nowrap;
}

.ap-growly-cta span {
  position: relative;
  width: 10px;
  height: 10px;
}

.ap-growly-cta span::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.ap-growly-cta span::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 9px;
  border-top: 1.6px solid currentColor;
}

.ap-growly-cta:hover,
.ap-growly-cta:focus {
  background: var(--ap-accent);
  color: #fff;
}

.ap-growly-navbar .ap-icon-button {
  color: #fff;
}

.ap-header__main {
  display: grid;
  grid-template-columns: 190px minmax(320px, 1fr) 190px;
  align-items: center;
  min-height: 74px;
  gap: 26px;
}

.ap-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ap-brand__logo {
  display: block;
  overflow: hidden;
  flex: 0 0 38px;
  width: 38px;
  height: 25px;
  border: 1px solid rgba(41, 183, 232, 0.58);
  border-radius: 6px;
  background-color: #fff;
  background-image: url("../images/anime-prints-logo.png");
  background-repeat: no-repeat;
  background-position: -6px -7px;
  background-size: 50px 50px;
  box-shadow: 0 0 0 1px rgba(41, 183, 232, 0.12), 0 5px 14px rgba(0, 0, 0, 0.14);
  filter: hue-rotate(-21deg) saturate(0.82) brightness(1.06);
}

.ap-brand__name {
  display: block;
  max-width: 150px;
  overflow: hidden;
  color: var(--ap-ink);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ap-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 178px 42px;
  align-items: center;
  height: 38px;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  background: #fafafa;
  overflow: visible;
}

.ap-search input,
.ap-search select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ap-ink);
}

.ap-search input {
  min-width: 0;
  padding: 0 20px;
}

.ap-search input::placeholder {
  color: #b4b8bd;
}

.ap-search__category {
  position: relative;
  height: 100%;
  border-left: 1px solid var(--ap-line);
}

.ap-search select {
  appearance: none;
  color: #8a8e94;
  cursor: pointer;
  font-size: 12px;
  padding: 0 30px 0 16px;
}

.ap-search__category::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #9aa0a7;
  border-bottom: 1px solid #9aa0a7;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.ap-search button {
  position: relative;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ap-search button span {
  position: absolute;
  left: 13px;
  top: 10px;
  width: 13px;
  height: 13px;
  border: 2px solid #92979d;
  border-radius: 50%;
}

.ap-search button span::after {
  content: "";
  position: absolute;
  width: 7px;
  border-top: 2px solid #92979d;
  right: -6px;
  bottom: -4px;
  transform: rotate(45deg);
}

.ap-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.ap-icon-button {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ap-ink);
  cursor: pointer;
}

.ap-icon-button span:first-child {
  position: relative;
  display: block;
}

.ap-nav-icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.ap-icon-button--menu span:first-child,
.ap-icon-button--close span:first-child {
  width: 17px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.ap-icon-button--menu span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 2px solid currentColor;
}

.ap-icon-button--close span:first-child {
  height: 17px;
  border: 0;
}

.ap-icon-button--close span:first-child::before,
.ap-icon-button--close span:first-child::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  width: 16px;
  border-top: 2px solid currentColor;
}

.ap-icon-button--close span:first-child::before {
  transform: rotate(45deg);
}

.ap-icon-button--close span:first-child::after {
  transform: rotate(-45deg);
}

.ap-icon-button:hover,
.ap-icon-button:focus {
  color: var(--ap-accent);
}

.ap-cart-count,
.ap-wishlist-count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  min-width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 999px;
  background: var(--ap-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.ap-mobile-toggle {
  display: none;
}

.ap-header__nav {
  border-top: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
}

.ap-nav-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  min-height: 56px;
  gap: 26px;
}

.ap-category-shell {
  position: relative;
  justify-self: start;
}

.ap-category-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ap-accent);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0 17px;
}

.ap-category-button:hover,
.ap-category-button:focus {
  background: var(--ap-accent-dark);
}

.ap-grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 2px;
}

.ap-grid-icon::before,
.ap-grid-icon::after,
.ap-grid-icon span {
  content: "";
}

.ap-grid-icon {
  width: 10px;
  height: 10px;
  background:
    linear-gradient(#fff, #fff) left top / 4px 4px no-repeat,
    linear-gradient(#fff, #fff) right top / 4px 4px no-repeat,
    linear-gradient(#fff, #fff) left bottom / 4px 4px no-repeat,
    linear-gradient(#fff, #fff) right bottom / 4px 4px no-repeat;
}

.ap-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.ap-mega {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(760px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius);
  background: var(--ap-surface);
  box-shadow: var(--ap-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ap-category-shell:hover .ap-mega,
.ap-category-shell:focus-within .ap-mega,
.ap-category-shell.is-open .ap-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ap-mega__feature {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--ap-radius);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.72)),
    url("../images/hero.png") 72% center / cover no-repeat;
  color: #fff;
}

.ap-mega__feature strong {
  display: block;
  max-width: 180px;
  font-size: 20px;
  line-height: 1.1;
}

.ap-mega__feature span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.ap-mega h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.ap-mega ul {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-mega a:not(.ap-mega__feature) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-ink);
  font-size: 13px;
  font-weight: 750;
}

.ap-mega a:not(.ap-mega__feature) span {
  color: var(--ap-muted);
  font-size: 11px;
  font-weight: 500;
}

.ap-mega a:hover,
.ap-mega a:focus {
  color: var(--ap-accent);
}

.ap-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 800;
}

.ap-menu a:hover,
.ap-menu a:focus,
.ap-menu .current-menu-item > a {
  color: var(--ap-accent);
}

.ap-support {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--ap-ink);
}

.ap-support__icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1.8px solid #a8adb4;
  border-radius: 50%;
}

.ap-support__icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 10px;
  border-left: 2px solid #a8adb4;
  border-bottom: 2px solid #a8adb4;
  transform: rotate(-35deg);
}

.ap-support strong,
.ap-support em {
  display: block;
  font-style: normal;
  line-height: 1.2;
}

.ap-support strong {
  font-size: 11px;
  font-weight: 800;
}

.ap-support em {
  color: var(--ap-muted);
  font-size: 11px;
}

.ap-home-hero {
  overflow: hidden;
  padding: 52px 0 60px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 27%),
    linear-gradient(135deg, #eaf9ff 0%, #c7effa 47%, #f7fcff 100%);
}

.ap-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  min-height: 560px;
}

.ap-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.ap-hero-copy > * {
  animation: ap-hero-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ap-hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.ap-hero-copy > :nth-child(3) {
  animation-delay: 140ms;
}

.ap-hero-copy > :nth-child(4) {
  animation-delay: 210ms;
}

.ap-hero-showcase {
  animation: ap-hero-image-enter 680ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ap-hero-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ap-hero-image-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ap-hero-copy h1 {
  margin: 12px 0 0;
  color: var(--ap-ink);
  font-size: 68px;
  font-weight: 950;
  line-height: 1.06;
}

.ap-hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #475c6a;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
}

.ap-hero-showcase {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: #ecf8fc;
  box-shadow: 0 34px 90px rgba(8, 61, 83, 0.18);
  isolation: isolate;
}

.ap-hero-showcase::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.ap-hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.ap-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.78fr);
  align-items: start;
  gap: 80px;
  margin-bottom: 38px;
}

.ap-hero-intro h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(36px, 5.2vw, 53px);
  font-weight: 900;
  line-height: 1.08;
}

.ap-hero-intro p {
  max-width: 430px;
  margin: 2px 0 0;
  color: #666d75;
  font-size: 14px;
}

.ap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--ap-ink);
  border-radius: 999px;
  background: var(--ap-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}

.ap-button span {
  display: none;
}

.ap-button--light {
  background: #fff;
  color: var(--ap-ink);
  border-color: #d5d8dd;
}

.ap-button:hover,
.ap-button:focus {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(41, 183, 232, 0.22);
  transform: translateY(-1px) scale(1.02);
}

.ap-hero-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.55fr) minmax(260px, 0.68fr);
  gap: 12px;
  align-items: stretch;
}

.ap-hero-collage__stack {
  display: grid;
  gap: 12px;
  grid-template-rows: 1fr;
}

.ap-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--ap-radius);
  background: #dfe2e6;
  color: #fff;
  isolation: isolate;
}

.ap-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.ap-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.ap-tile:hover img,
.ap-tile:focus img {
  transform: scale(1.035);
}

.ap-tile--large {
  min-height: 380px;
}

.ap-tile--large img {
  object-position: 72% center;
}

.ap-tile--small {
  min-height: 178px;
}

.ap-tile--small img,
.ap-tile--tall img {
  object-fit: cover;
  object-position: center;
}

.ap-tile--tall {
  min-height: 380px;
}

.ap-tile__caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.ap-tile__caption strong {
  display: block;
  max-width: 330px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.ap-tile__caption em {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-style: normal;
}

.ap-category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.ap-category-pill {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius);
  background: #fff;
  color: var(--ap-ink);
  padding: 13px 8px 11px;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ap-category-pill:hover,
.ap-category-pill:focus {
  border-color: rgba(41, 183, 232, 0.42);
  box-shadow: 0 14px 28px rgba(41, 183, 232, 0.12);
  transform: translateY(-2px);
}

.ap-category-pill__icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-bottom: 7px;
  border: 1.5px solid #a7adb4;
  border-radius: 50%;
  color: #737a83;
  font-size: 11px;
  font-weight: 900;
}

.ap-category-pill strong,
.ap-category-pill em {
  display: block;
  line-height: 1.2;
}

.ap-category-pill strong {
  font-size: 12px;
  font-weight: 850;
}

.ap-category-pill em {
  margin-top: 3px;
  color: var(--ap-muted);
  font-size: 11px;
  font-style: normal;
}

.ap-section {
  padding: 88px 0;
}

.ap-bestsellers {
  background: #fff;
}

.ap-home-categories {
  background: #fff;
}

.ap-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.ap-section__head h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 950;
  line-height: 1.1;
}

.ap-section__head .ap-kicker {
  margin-bottom: 8px;
}

.ap-category-image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.ap-category-image-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.18);
  border-radius: 14px;
  background: #eef8fc;
  color: #fff;
  box-shadow: 0 18px 42px rgba(10, 45, 65, 0.08);
  isolation: isolate;
}

.ap-category-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 17, 24, 0.08) 20%, rgba(4, 17, 24, 0.76) 100%);
}

.ap-category-image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.ap-category-image-card:hover img,
.ap-category-image-card:focus img {
  transform: scale(1.045);
}

.ap-category-image-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.ap-category-image-card strong,
.ap-category-image-card em {
  display: block;
  line-height: 1.2;
}

.ap-category-image-card strong {
  font-size: 22px;
  font-weight: 950;
}

.ap-category-image-card em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.ap-deal-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px 0 28px;
}

.ap-deal-filter-row button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(22, 32, 51, 0.22);
  border-radius: 999px;
	background: #fff;
	color: var(--ap-ink);
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ap-deal-filter-row button:hover,
.ap-deal-filter-row button:focus-visible,
.ap-deal-filter-row button.is-active {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.ap-deal-filter-row button:focus-visible {
  outline: 3px solid rgba(39, 181, 198, 0.3);
  outline-offset: 2px;
}

.ap-deals-grid {
  row-gap: 30px;
}

.ap-deals-grid .ap-product-card[hidden] {
  display: none;
}

.ap-deals-empty {
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid var(--ap-line);
  border-radius: 8px;
  color: var(--ap-muted);
  text-align: center;
}

.ap-section__center {
  max-width: 520px;
  margin: 0 auto 42px;
  text-align: center;
}

.ap-section__center h2,
.ap-split-promo h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 900;
  line-height: 1.14;
}

.ap-section__center p {
  margin: 16px auto 0;
  color: var(--ap-muted);
  font-size: 13px;
}

.ap-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ap-product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 45, 65, 0.08);
  padding: 12px;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.ap-product-card:hover {
  border-color: rgba(42, 184, 228, 0.52);
  box-shadow: 0 24px 54px rgba(10, 45, 65, 0.13), 0 0 0 3px rgba(42, 184, 228, 0.1);
  transform: translateY(-3px);
}

.ap-product-status {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: var(--ap-ink);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  padding: 0 10px;
  text-transform: uppercase;
}

.ap-product-card__media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #f6fbff 0%, #f2f7fb 100%);
}

.ap-product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  place-items: center;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
}

.ap-product-card__media.is-dragging,
.ap-product-image-card [data-product-gallery-main].is-dragging {
  cursor: grabbing;
}

.ap-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 180ms ease;
  pointer-events: none;
  user-select: none;
}

.ap-product-card:hover .ap-product-card__media img {
  transform: scale(1.035);
}

.ap-product-card__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  margin: 12px 2px 0;
  padding-bottom: 3px;
}

.ap-product-card__thumb {
  display: grid;
  flex: 0 0 58px;
  aspect-ratio: 1 / 0.72;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.18);
  border-radius: 8px;
  background: #f8fcff;
  cursor: pointer;
  padding: 0;
}

.ap-product-card__thumb:hover,
.ap-product-card__thumb:focus,
.ap-product-card__thumb.is-active {
  border-color: var(--ap-accent);
  box-shadow: 0 0 0 1px rgba(41, 183, 232, 0.2);
  outline: 0;
}

.ap-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.ap-wishlist-button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  z-index: 4;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.34));
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ap-wishlist-button svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ap-wishlist-button:hover,
.ap-wishlist-button:focus-visible {
  background: rgba(11, 15, 20, 0.12);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
  box-shadow: none;
}

.ap-wishlist-button.is-active,
.ap-wishlist-button.is-active:hover,
.ap-wishlist-button.is-active:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ap-accent);
}

.ap-wishlist-button.is-active svg {
  fill: currentColor;
}

.ap-wishlist-button--pill {
  position: static;
  display: inline-flex;
  width: auto;
  height: 44px;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.ap-wishlist-button--pill svg {
  width: 17px;
  height: 17px;
}

.ap-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ap-discount-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 999px;
  background: var(--ap-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  padding: 0 9px;
  white-space: nowrap;
}

.ap-product-card__body {
  display: grid;
  gap: 10px;
  padding: 18px 2px 0;
  text-align: left;
}

.ap-product-card h3 {
  margin: 0;
  min-height: 38px;
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.22;
}

.ap-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.ap-product-card h3 a:hover,
.ap-product-card h3 a:focus {
  color: var(--ap-accent);
  outline: 0;
}

.ap-product-meta {
  display: block;
  margin-top: -6px;
  color: var(--ap-accent-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ap-stars {
  display: block;
  margin-top: 8px;
  color: var(--ap-star);
  font-size: 12px;
  line-height: 1;
}

.ap-stars::before {
  content: "*****";
}

.ap-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ap-ink);
  font-size: 14px;
  font-weight: 900;
}

.ap-price del,
.woocommerce ul.products li.product .price del {
  color: #9aa7b2;
  font-weight: 750;
  opacity: 1;
}

.ap-price ins,
.woocommerce ul.products li.product .price ins {
  color: var(--ap-ink);
  font-weight: 900;
  text-decoration: none;
}

.ap-card-actions {
  display: grid;
  margin-top: 4px;
  padding: 0 4px 4px;
}

.ap-card-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  border: 1px solid #162033;
  border-radius: 7px;
  background: #162033;
  box-shadow: 0 10px 22px rgba(10, 45, 65, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ap-card-actions.is-updating {
  opacity: 0.72;
  pointer-events: none;
}

.ap-card-cart-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ap-card-cart-button--outline {
  border: 1px solid rgba(22, 32, 51, 0.14);
  background: #fff;
  color: #162033;
}

.ap-card-cart-button:hover,
.ap-card-cart-button:focus,
.ap-text-link:hover,
.ap-text-link:focus {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  box-shadow: 0 12px 26px rgba(41, 183, 232, 0.22);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.ap-card-added-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.ap-card-stepper {
  display: grid;
  grid-template-columns: 36px minmax(34px, 1fr) 36px;
  min-height: 44px;
  overflow: hidden;
  border-radius: 7px;
  background: #162033;
  color: #fff;
  box-shadow: 0 14px 24px rgba(10, 45, 65, 0.13);
}

.ap-card-stepper button,
.ap-card-stepper span {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.ap-card-stepper button {
  cursor: pointer;
}

.ap-card-stepper button:hover,
.ap-card-stepper button:focus {
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.ap-card-view-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--ap-line);
  border-radius: 7px;
  background: #fff;
  color: #162033;
  box-shadow: 0 12px 22px rgba(10, 45, 65, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.ap-card-view-cart:hover,
.ap-card-view-cart:focus {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
}

.ap-card-actions > .added_to_cart.wc-forward {
  display: none !important;
}

.ap-product-lightbox[hidden] {
  display: none;
}

.ap-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 9, 13, 0.78);
  backdrop-filter: blur(8px);
}

.ap-lightbox-open {
  overflow: hidden;
}

.ap-product-lightbox__frame {
  display: grid;
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  place-items: center;
}

.ap-product-lightbox__image {
  display: block;
  width: auto;
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.ap-product-lightbox__close,
.ap-product-lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #101114;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-weight: 900;
}

.ap-product-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 1;
}

.ap-product-lightbox__nav {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 22px;
}

.ap-product-lightbox__nav--prev {
  left: 20px;
}

.ap-product-lightbox__nav--next {
  right: 20px;
}

.ap-product-lightbox__close:hover,
.ap-product-lightbox__close:focus,
.ap-product-lightbox__nav:hover,
.ap-product-lightbox__nav:focus {
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
}

.ap-single-wishlist {
  display: flex;
  margin-top: 14px;
}

.ap-section--soft {
  background: var(--ap-soft);
}

.ap-split-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.ap-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--ap-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ap-split-promo p {
  margin: 0;
  color: var(--ap-muted);
}

.ap-text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ap-ink);
  font-weight: 900;
}

.ap-newsletter {
  background: var(--ap-accent);
  color: #fff;
  padding: 48px 0;
}

.ap-newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
}

.ap-newsletter h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.ap-newsletter p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.ap-newsletter form {
  display: flex;
  gap: 10px;
}

.ap-newsletter input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
}

.ap-newsletter button {
  height: 46px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--ap-accent);
  cursor: pointer;
  font-weight: 900;
  padding: 0 18px;
}

.ap-footer {
  background: #101010;
  color: #fff;
}

.ap-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: 30px;
  padding: 56px 0;
}

.ap-footer h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 900;
}

.ap-footer__brand {
  width: fit-content;
  margin-bottom: 16px;
  color: #fff;
}

.ap-footer__brand .ap-brand__name {
  max-width: none;
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

.ap-footer p,
.ap-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.ap-footer-phone {
  display: inline-grid;
  gap: 3px;
  margin-top: 14px;
}

.ap-footer-phone span {
  color: var(--ap-accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ap-footer-phone strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.ap-footer a:hover,
.ap-footer a:focus {
  color: #fff;
}

.ap-footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ap-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.ap-socials a:hover,
.ap-socials a:focus {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.ap-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ap-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.ap-footer__payments {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ap-footer__payments strong {
  font-size: 12px;
}

.ap-footer__payments > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.ap-footer__payments span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 850;
  padding: 0 9px;
}

.ap-socials a {
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ap-socials a:hover,
.ap-socials a:focus-visible {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #07151d;
  transform: translateY(-2px) scale(1.06);
}

.ap-back-to-top {
  position: fixed;
  z-index: 160;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--ap-ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(10, 45, 65, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.ap-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ap-back-to-top:hover {
  background: var(--ap-accent);
}

.ap-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ap-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms var(--ap-reveal-delay, 0ms) ease, transform 520ms var(--ap-reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
}

.ap-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.ap-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease;
}

.ap-mobile-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.ap-mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 17, 19, 0.18);
  backdrop-filter: blur(2px);
}

.ap-mobile-drawer__panel {
  position: absolute;
  top: 78px;
  right: max(16px, calc((100vw - var(--ap-content)) / 2));
  width: min(370px, calc(100vw - 32px));
  max-height: calc(100vh - 96px);
  background: #fff;
  border: 1px solid rgba(16, 17, 19, 0.06);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(16, 17, 19, 0.22);
  padding: 18px;
  overflow-y: auto;
  opacity: 0;
  transform: translate(18px, -16px) scale(0.88);
  transform-origin: top right;
  transition: opacity 150ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ap-mobile-drawer.is-open .ap-mobile-drawer__panel {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.ap-mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ap-mobile-drawer .ap-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  margin-bottom: 18px;
}

.ap-mobile-drawer .ap-search__category {
  display: none;
}

.ap-mobile-drawer .ap-menu {
  display: grid;
  justify-content: stretch;
  gap: 0;
  margin: 8px 0 0;
}

.ap-mobile-drawer .ap-menu a {
  min-height: 0;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ap-line);
  font-size: 14px;
}

.ap-growly-cta--drawer {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  background: #101113;
  color: #fff;
}

.ap-drawer-open {
  overflow: hidden;
}

.woocommerce main.site-main,
.site-main {
  width: min(var(--ap-content), calc(100% - 64px));
  margin: 64px auto 84px;
}

.ap-account-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: calc(100vh - 90px);
  padding: 48px max(32px, calc((100vw - var(--ap-content)) / 2)) 88px;
  background:
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.92) 0 16%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.64) 0 18%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(180deg, #ace8fb 0%, #e8faff 42%, #fff 100%);
}

.ap-account-main::before,
.ap-account-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ap-account-main::before {
  left: -8vw;
  right: -8vw;
  bottom: -130px;
  height: 320px;
  background:
    radial-gradient(circle at 13% 52%, rgba(255, 255, 255, 0.86) 0 13%, rgba(255, 255, 255, 0) 25%),
    radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.9) 0 18%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 56% 56%, rgba(255, 255, 255, 0.84) 0 20%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 78% 46%, rgba(255, 255, 255, 0.76) 0 15%, rgba(255, 255, 255, 0) 28%);
  filter: blur(3px);
  opacity: 0.92;
}

.ap-account-main::after {
  inset: 52px 7vw auto;
  height: 680px;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(255, 255, 255, 0) 0 43%, rgba(255, 255, 255, 0.52) 43.2% 43.5%, rgba(255, 255, 255, 0) 44% 57%, rgba(255, 255, 255, 0.42) 57.2% 57.5%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0.78;
}

.ap-account-main article {
  position: relative;
  z-index: 1;
  margin: 0;
}

.ap-account-intro {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto 34px;
  text-align: center;
}

.ap-account-intro::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    linear-gradient(#111318, #111318) 31px 15px / 3px 22px no-repeat,
    linear-gradient(#111318, #111318) 18px 25px / 16px 3px no-repeat,
    linear-gradient(45deg, transparent 0 45%, #111318 46% 63%, transparent 64%) 29px 20px / 10px 10px no-repeat,
    linear-gradient(-45deg, transparent 0 45%, #111318 46% 63%, transparent 64%) 29px 26px / 10px 10px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.72));
  box-shadow: 0 16px 30px rgba(38, 83, 111, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.ap-account-intro .ap-kicker {
  margin-bottom: 12px;
  color: rgba(17, 24, 39, 0.58);
  letter-spacing: 0;
}

.ap-account-intro h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 900;
  line-height: 1.06;
}

.ap-account-intro p {
  max-width: 500px;
  margin: 14px 0 0;
  color: #68707a;
  font-size: 14px;
}

.ap-account-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.woocommerce-account .woocommerce {
  width: 100%;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #4f5d6b;
  box-shadow: 0 18px 42px rgba(42, 79, 105, 0.12);
  backdrop-filter: blur(18px);
  padding: 16px 18px 16px 50px;
}

.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  top: 50%;
  left: 18px;
  margin: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.woocommerce .woocommerce-error {
  border-top: 3px solid var(--ap-accent);
}

.woocommerce .woocommerce-message {
  border-top: 3px solid var(--ap-accent);
}

.woocommerce .woocommerce-error li,
.woocommerce .woocommerce-message li,
.woocommerce .woocommerce-info li {
  margin: 0;
  list-style: none;
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: auto;
  min-height: 34px;
  margin: 0;
  padding: 0 16px;
  white-space: nowrap;
}

.woocommerce-account .woocommerce h2 {
  margin: 0 0 16px;
  color: var(--ap-ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.woocommerce-account .woocommerce h2::after {
  content: "";
  display: block;
  width: 42px;
  margin: 13px auto 0;
  border-top: 3px solid #111318;
  border-radius: 999px;
}

.woocommerce-account .woocommerce .u-columns {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  gap: 38px;
  align-items: start;
}

.woocommerce-account .woocommerce .u-column1,
.woocommerce-account .woocommerce .u-column2 {
  width: auto;
  float: none;
}

.woocommerce-account .ap-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.woocommerce-account .ap-auth-panel[hidden] {
  display: none;
}

.woocommerce-account .ap-auth-panel {
  width: 100%;
}

.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
  margin: 0;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 32px 72px rgba(42, 79, 105, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
}

.woocommerce-account .ap-auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.woocommerce-account .ap-auth-panel--login .ap-auth-actions {
  justify-content: space-between;
}

.woocommerce-account .ap-auth-panel--login .woocommerce-form-login__submit {
  margin-left: auto;
}

.woocommerce-account .woocommerce form .form-row {
  margin: 0 0 15px;
  padding: 0;
}

.woocommerce-account .woocommerce form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 850;
}

.woocommerce-account .woocommerce form .required {
  color: var(--ap-accent);
  text-decoration: none;
}

.woocommerce-account .woocommerce form .input-text,
.woocommerce-account .woocommerce form input[type="email"],
.woocommerce-account .woocommerce form input[type="password"],
.woocommerce-account .woocommerce form input[type="text"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(105, 134, 151, 0.16);
  border-radius: 999px;
  background: rgba(250, 252, 255, 0.74);
  color: var(--ap-ink);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  padding: 0 20px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.woocommerce-account .woocommerce form .input-text:focus,
.woocommerce-account .woocommerce form input[type="email"]:focus,
.woocommerce-account .woocommerce form input[type="password"]:focus,
.woocommerce-account .woocommerce form input[type="text"]:focus {
  border-color: rgba(75, 177, 212, 0.58);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 5px rgba(100, 207, 237, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.woocommerce-account .woocommerce form .password-input {
  display: block;
  width: 100%;
}

.woocommerce-account .woocommerce form .show-password-input {
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.woocommerce-account .woocommerce form .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 0 0;
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 750;
}

.woocommerce-account .woocommerce form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ap-accent);
}

.woocommerce-account .woocommerce form .button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #262836 0%, #101113 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(16, 17, 19, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 0 26px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 16px;
  max-width: none;
  margin: 0;
  padding: 16px 18px;
  text-align: left;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before {
  position: static;
  flex: 0 0 auto;
  transform: none;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .button {
  order: 2;
  flex: 0 0 auto;
  min-height: 42px;
  margin: 0 0 0 auto;
  padding: 0 22px;
  white-space: nowrap;
}

.woocommerce-account .woocommerce form .button:hover,
.woocommerce-account .woocommerce form .button:focus,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce button.button:focus {
  background: linear-gradient(180deg, #35c7f2 0%, var(--ap-accent-dark) 100%);
  color: #fff;
}

.woocommerce-account .woocommerce-LostPassword,
.woocommerce-account .woocommerce-privacy-policy-text {
  margin: 16px 0 0;
  color: var(--ap-muted);
  font-size: 13px;
}

.woocommerce-account .ap-auth-note {
  margin: 2px 0 14px;
  color: #4d5a67;
  font-size: 14px;
}

.woocommerce-account .ap-auth-context {
  max-width: 500px;
  margin: -4px auto 18px;
  color: #596675;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.woocommerce-account .ap-auth-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.woocommerce-account .ap-auth-switch {
  margin: 16px 0 0;
  color: #596675;
  font-size: 13px;
  font-weight: 750;
}

.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account .woocommerce-privacy-policy-text a,
.woocommerce-account .ap-auth-switch a {
  color: var(--ap-accent);
  font-weight: 850;
}

.woocommerce-account .ap-auth-switch a {
  margin-left: 4px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 260px;
  float: left;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 17, 19, 0.08);
}

.woocommerce-account .ap-account-nav-mobile {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  border-radius: 999px;
  color: var(--ap-muted);
  font-size: 13px;
  font-weight: 850;
  padding: 11px 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus {
  background: var(--ap-ink);
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% - 290px);
  min-height: 0;
  float: right;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 17, 19, 0.08);
  padding: 28px;
}

.logged-in.woocommerce-account .ap-account-content {
  max-width: 1100px;
}

.logged-in.woocommerce-account .ap-account-main::after {
  opacity: 0.36;
}

.woocommerce-account .ap-account-dashboard {
  display: grid;
  gap: 18px;
}

.woocommerce-account .ap-account-dashboard__eyebrow {
  color: var(--ap-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.woocommerce-account .ap-account-dashboard h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  text-align: left;
}

.woocommerce-account .ap-account-dashboard p {
  max-width: 620px;
  margin: 0;
  color: #536073;
  font-size: 15px;
  line-height: 1.7;
}

.woocommerce-account .ap-account-dashboard__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.woocommerce-account .ap-account-dashboard__actions a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 18px;
  background: rgba(250, 252, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.woocommerce-account .ap-account-dashboard__actions a:hover,
.woocommerce-account .ap-account-dashboard__actions a:focus {
  border-color: rgba(41, 183, 232, 0.42);
  box-shadow: 0 14px 28px rgba(41, 183, 232, 0.12);
  transform: translateY(-2px);
}

.woocommerce-account .ap-account-action__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(41, 183, 232, 0.12);
  color: var(--ap-accent-dark);
}

.woocommerce-account .ap-account-action__icon svg,
.woocommerce-account .ap-account-action__arrow,
.woocommerce-account .ap-account-address-body__icon svg,
.woocommerce-account .ap-account-empty__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.woocommerce-account .ap-account-action__icon svg {
  width: 21px;
  height: 21px;
}

.woocommerce-account .ap-account-action__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.woocommerce-account .ap-account-dashboard__actions strong {
  color: var(--ap-ink);
  font-size: 14px;
  font-weight: 900;
}

.woocommerce-account .ap-account-action__copy > span {
  color: var(--ap-muted);
  font-size: 13px;
  line-height: 1.5;
}

.woocommerce-account .ap-account-action__arrow {
  width: 18px;
  height: 18px;
  color: #7c8b98;
  transition: color 150ms ease, transform 150ms ease;
}

.woocommerce-account .ap-account-dashboard__actions a:hover .ap-account-action__arrow,
.woocommerce-account .ap-account-dashboard__actions a:focus .ap-account-action__arrow {
  color: var(--ap-accent-dark);
  transform: translateX(2px);
}

.woocommerce-account .ap-account-section__header {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.woocommerce-account .ap-account-section__header--with-action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.woocommerce-account .ap-account-section__eyebrow {
  color: var(--ap-accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-account .ap-account-section__header h1 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.12;
}

.woocommerce-account .ap-account-section__header p {
  max-width: 580px;
  margin: 0;
  color: #536073;
  font-size: 14px;
  line-height: 1.65;
}

.woocommerce-account .ap-account-addresses {
  display: block;
}

.woocommerce-account .ap-account-addresses__intro {
  max-width: 620px;
  margin: 0;
  color: #536073;
  font-size: 14px;
  line-height: 1.7;
}

.woocommerce-account .ap-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
}

.woocommerce-account .ap-address-grid::before,
.woocommerce-account .ap-address-grid::after {
  display: none;
}

.woocommerce-account .woocommerce-Address.ap-address-card {
  width: auto;
  float: none;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 18px;
  background: rgba(250, 252, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 22px;
}

.woocommerce-account .ap-address-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.woocommerce-account .ap-address-card__eyebrow {
  display: block;
  margin: 0 0 6px;
  color: var(--ap-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.woocommerce-account .ap-address-card__header h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 24px;
  text-align: left;
}

.woocommerce-account .ap-address-card__header h2::after {
  width: 36px;
  margin: 10px 0 0;
}

.woocommerce-account .ap-address-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #262836 0%, #101113 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(16, 17, 19, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 0 22px;
  white-space: nowrap;
}

.woocommerce-account .ap-address-card__button:hover,
.woocommerce-account .ap-address-card__button:focus {
  background: linear-gradient(180deg, #35c7f2 0%, var(--ap-accent-dark) 100%);
  color: #fff;
}

.woocommerce-account .ap-address-card__body {
  display: block;
  min-height: 78px;
  margin: 0;
  border: 1px dashed rgba(105, 134, 151, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: #536073;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  padding: 18px;
}

.woocommerce-account .ap-address-card__body--empty {
  display: grid;
  place-items: center start;
  color: #68707a;
  font-weight: 750;
}

.site-main h1,
.entry-header h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  text-align: left;
}

.woocommerce ul.products li.product .ap-wishlist-button {
  top: 10px;
  right: 10px;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  background: transparent;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.22;
}

.woocommerce ul.products li.product .star-rating {
  margin: 9px auto 0;
  color: var(--ap-star);
}

.woocommerce ul.products li.product .price {
  display: flex;
  margin: 0;
  color: var(--ap-ink);
  font-size: 14px;
  font-weight: 900;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ap-ink);
  border-radius: 999px;
  background: var(--ap-ink);
  box-shadow: 0 10px 22px rgba(10, 45, 65, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 0 20px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin: 2px 0 0;
  border-radius: 7px;
  padding: 0 18px;
}

.woocommerce ul.products li.product a.added_to_cart.wc-forward,
.woocommerce-page ul.products li.product a.added_to_cart.wc-forward,
.woocommerce ul.products li.product a.wc-forward:not(.button) {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: 10px 0 0;
  border: 1px solid var(--ap-line);
  border-radius: 7px;
  background: #fff;
  color: var(--ap-ink);
  box-shadow: 0 10px 22px rgba(10, 45, 65, 0.08);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 0 18px;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
}

.woocommerce ul.products li.product a.added_to_cart.wc-forward:hover,
.woocommerce ul.products li.product a.added_to_cart.wc-forward:focus,
.woocommerce ul.products li.product a.wc-forward:not(.button):hover,
.woocommerce ul.products li.product a.wc-forward:not(.button):focus {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
}

.woocommerce ul.products li.product .ap-card-actions > a.added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .ap-card-actions > a.added_to_cart.wc-forward {
  display: none !important;
}

.woocommerce ul.products li.product.ap-product-card,
.woocommerce-page ul.products li.product.ap-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 45, 65, 0.08);
  padding: 12px;
}

.woocommerce ul.products li.product.ap-product-card .ap-product-card__media-wrap,
.woocommerce-page ul.products li.product.ap-product-card .ap-product-card__media-wrap {
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #f6fbff 0%, #f2f7fb 100%);
}

.woocommerce ul.products li.product.ap-product-card .ap-product-card__media img,
.woocommerce-page ul.products li.product.ap-product-card .ap-product-card__media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

.woocommerce ul.products li.product.ap-product-card .ap-product-card__body,
.woocommerce-page ul.products li.product.ap-product-card .ap-product-card__body {
  gap: 10px;
  padding: 18px 2px 0;
}

.woocommerce ul.products li.product.ap-product-card .ap-card-actions,
.woocommerce-page ul.products li.product.ap-product-card .ap-card-actions {
  margin-top: 4px;
  padding: 0 4px 4px;
}

.woocommerce ul.products li.product.ap-product-card .ap-card-cart-button,
.woocommerce-page ul.products li.product.ap-product-card .ap-card-cart-button {
  margin-top: 4px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  box-shadow: 0 12px 26px rgba(41, 183, 232, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

.ap-product-main {
  padding: 56px 0 86px;
}

.ap-single-product {
  width: min(var(--ap-content), calc(100% - 64px));
  margin: 0 auto;
}

.ap-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 62px;
  align-items: center;
}

.ap-product-visual {
  display: grid;
  gap: 16px;
}

.ap-product-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
  box-shadow: 0 28px 62px rgba(10, 45, 65, 0.12);
  padding: 18px;
}

.ap-product-image-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-radius: 14px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.ap-product-image-card [data-product-gallery-main] {
  display: block;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
}

.ap-product-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.ap-product-thumbs button {
  flex: 0 0 78px;
  overflow: hidden;
  border: 1px solid var(--ap-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 4px;
}

.ap-product-thumbs button:hover,
.ap-product-thumbs button:focus,
.ap-product-thumbs button.is-active {
  border-color: var(--ap-accent);
  box-shadow: 0 0 0 1px rgba(41, 183, 232, 0.2);
  outline: 0;
}

.ap-product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 9px;
  object-fit: cover;
}

.ap-gallery-step {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(105, 134, 151, 0.2);
  border-radius: 50%;
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ap-ink);
  box-shadow: 0 10px 24px rgba(10, 45, 65, 0.14);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.ap-gallery-step::before {
  display: block;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.ap-gallery-step--previous {
  left: 28px;
}

.ap-gallery-step--previous::before {
  transform: translateX(1px) rotate(135deg);
}

.ap-gallery-step--next {
  right: 28px;
}

.ap-gallery-step--next::before {
  transform: translateX(-1px) rotate(-45deg);
}

.ap-product-card__media-wrap .ap-gallery-step {
  width: 34px;
  height: 34px;
}

.ap-product-card__media-wrap .ap-gallery-step--previous {
  left: 10px;
}

.ap-product-card__media-wrap .ap-gallery-step--next {
  right: 10px;
}

.ap-gallery-step:hover,
.ap-gallery-step:focus {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
}

.ap-product-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 16px 18px;
}

.ap-product-options > span {
  display: grid;
  gap: 3px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ap-product-options > span strong {
  color: var(--ap-accent-dark);
  font-size: 12px;
  line-height: 1.3;
  text-transform: none;
}

.ap-product-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-product-swatch {
  display: block;
  width: 30px;
  height: 30px;
  appearance: none;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(105, 134, 151, 0.24), 0 8px 18px rgba(10, 45, 65, 0.12);
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.ap-product-swatch[data-light-swatch="true"] {
  box-shadow: 0 0 0 1px rgba(105, 134, 151, 0.34), inset 0 0 0 1px rgba(105, 134, 151, 0.16);
}

.ap-product-swatch:hover,
.ap-product-swatch:focus-visible {
  box-shadow: 0 0 0 3px rgba(41, 183, 232, 0.24), 0 10px 22px rgba(10, 45, 65, 0.16);
  outline: 0;
  transform: translateY(-1px);
}

.ap-product-swatch.is-selected {
  box-shadow: 0 0 0 3px var(--ap-accent), 0 12px 24px rgba(41, 183, 232, 0.25);
  transform: scale(1.06);
}

.ap-product-summary {
  display: grid;
  align-content: center;
  gap: 18px;
}

.ap-product-summary .ap-kicker {
  margin: 0;
}

.ap-product-summary .ap-kicker a {
  color: inherit;
}

.ap-product-summary h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.ap-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #536073;
  font-size: 12px;
  font-weight: 850;
}

.ap-product-rating .star-rating {
  margin: 0;
  color: var(--ap-star);
}

.ap-product-excerpt {
  max-width: 560px;
  color: #536073;
  font-size: 15px;
  line-height: 1.7;
}

.ap-product-excerpt p {
  margin: 0;
}

.ap-product-price {
  color: var(--ap-ink);
  font-size: 26px;
  font-weight: 900;
}

.ap-product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ap-discount-badge--product {
  min-height: 26px;
  font-size: 10px;
  padding-inline: 11px;
}

.ap-product-buybox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ap-product-buybox form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.ap-product-buybox .single_add_to_cart_button {
  min-height: 48px;
  border-radius: 999px !important;
  background: var(--ap-accent) !important;
  box-shadow: 0 14px 28px rgba(41, 183, 232, 0.22);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  padding: 0 28px !important;
}

.ap-product-buybox .single_add_to_cart_button:hover,
.ap-product-buybox .single_add_to_cart_button:focus {
  background: var(--ap-ink) !important;
}

.ap-product-buybox .ap-wishlist-button--pill {
  height: 48px;
  border: 1px solid var(--ap-accent);
  background: var(--ap-accent);
  box-shadow: 0 14px 28px rgba(41, 183, 232, 0.22);
  color: #fff;
  filter: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ap-product-buybox .ap-wishlist-button--pill:hover,
.ap-product-buybox .ap-wishlist-button--pill:focus-visible {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
  box-shadow: 0 14px 28px rgba(10, 45, 65, 0.2);
  color: #fff;
}

.ap-product-buybox .ap-wishlist-button--pill.is-active,
.ap-product-buybox .ap-wishlist-button--pill.is-active:hover,
.ap-product-buybox .ap-wishlist-button--pill.is-active:focus-visible {
  border-color: var(--ap-accent-dark);
  background: var(--ap-accent-dark);
  color: #fff;
}

.ap-product-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.ap-product-note-grid span {
  min-height: 72px;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  padding: 14px;
}

.ap-product-detail-grid,
.ap-product-reviews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 22px;
  margin-top: 54px;
}

.ap-product-reviews--read-only {
  grid-template-columns: minmax(0, 1fr);
}

.ap-product-detail-card,
.ap-product-reviews__list,
.ap-product-review-form {
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 46px rgba(10, 45, 65, 0.08);
  padding: 28px;
}

.ap-product-detail-card h2,
.ap-product-section-head h2,
.ap-product-review-form .comment-reply-title {
  display: block;
  margin: 0 0 16px;
  color: var(--ap-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.ap-product-detail-card p,
.ap-product-detail-card li,
.ap-product-reviews p {
  color: #536073;
  font-size: 14px;
  line-height: 1.7;
}

.ap-product-detail-card > :last-child {
  margin-bottom: 0;
}

.ap-product-detail-card--meta ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-product-detail-card--meta li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ap-line);
  padding-bottom: 12px;
}

.ap-product-detail-card--meta li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ap-product-detail-card--meta span {
  color: var(--ap-muted);
  font-weight: 750;
}

.ap-product-detail-card--meta strong {
  color: var(--ap-ink);
  font-weight: 900;
  text-align: right;
}

.ap-product-reviews .commentlist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-product-reviews .comment_container {
  display: grid;
  gap: 12px;
  border: 1px solid var(--ap-line);
  border-radius: 16px;
  background: #f8fdff;
  padding: 18px;
}

.ap-product-reviews img.avatar {
  display: none;
}

.ap-product-reviews .comment-text {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

.ap-product-reviews .meta {
  color: var(--ap-muted);
  font-size: 12px;
}

.ap-product-review-form form {
  display: grid;
  gap: 14px;
}

.ap-product-review-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 850;
}

.ap-product-review-form select,
.ap-product-review-form textarea {
  width: 100%;
  border: 1px solid #d7e9f2;
  border-radius: 14px;
  background: #fff;
  color: var(--ap-ink);
  outline: 0;
  padding: 12px 14px;
}

.ap-product-review-form textarea {
  min-height: 130px;
  resize: vertical;
}

.ap-page-hero {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.ap-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.ap-page-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--ap-muted);
}

.ap-category-hero {
  margin-bottom: 28px;
}

.ap-shop-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 0 12px;
  border-top: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
}

.ap-shop-toolbar__summary {
  align-self: center;
  min-width: 0;
}

.ap-shop-toolbar__controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.ap-shop-control {
  position: relative;
  display: block;
  min-width: 0;
}

.ap-shop-control--category,
.ap-shop-control__trigger {
  display: none;
}

.ap-shop-control--sort {
  width: 100%;
}

.ap-desktop-sort {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ap-desktop-sort::-webkit-scrollbar {
  display: none;
}

.ap-desktop-sort__label,
.ap-desktop-sort__link {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.ap-desktop-sort__label {
  color: var(--ap-ink);
}

.ap-desktop-sort__link {
  position: relative;
  color: var(--ap-muted);
  padding: 5px 0 9px;
  text-decoration: none;
}

.ap-desktop-sort__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ap-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ap-desktop-sort__link:hover,
.ap-desktop-sort__link:focus-visible,
.ap-desktop-sort__link.is-active {
  color: var(--ap-accent-dark);
  outline: 0;
}

.ap-desktop-sort__link:hover::after,
.ap-desktop-sort__link:focus-visible::after,
.ap-desktop-sort__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ap-shop-control__label {
  color: var(--ap-muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.ap-category-select,
.ap-shop-toolbar .woocommerce-ordering select {
  width: 190px;
  min-height: 42px;
  border: 1px solid var(--ap-line);
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 50%, var(--ap-accent) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--ap-accent) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, #fff, #f7fcff);
  color: var(--ap-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  outline: 0;
  padding: 0 42px 0 16px;
  text-align: left;
  text-align-last: left;
  appearance: none;
  box-shadow: 0 12px 28px rgba(10, 45, 65, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.ap-category-select:hover,
.ap-category-select:focus-visible,
.ap-shop-toolbar .woocommerce-ordering select:hover,
.ap-shop-toolbar .woocommerce-ordering select:focus-visible {
  border-color: rgba(42, 184, 228, 0.48);
  color: var(--ap-ink);
  outline: 0;
  box-shadow: 0 14px 32px rgba(10, 45, 65, 0.1), 0 0 0 4px rgba(42, 184, 228, 0.12);
}

.ap-shop-toolbar .woocommerce-result-count,
.ap-shop-toolbar .woocommerce-ordering {
  float: none;
  margin: 0;
}

.ap-shop-toolbar .woocommerce-result-count {
  color: var(--ap-muted);
  font-size: 13px;
  line-height: 1.4;
}

.ap-category-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--ap-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 45, 65, 0.06);
}

.ap-category-sidebar h2 {
  margin: 0;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-ink);
  font-size: 18px;
  font-weight: 900;
  padding: 18px 20px;
}

.ap-category-sidebar nav {
  display: grid;
  padding: 8px;
}

.ap-category-sidebar__link {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 6px;
  color: var(--ap-muted);
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.ap-category-sidebar__link small {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--ap-soft);
  color: var(--ap-muted);
  font-size: 10px;
  line-height: 1;
}

.ap-category-sidebar__link:hover,
.ap-category-sidebar__link:focus-visible,
.ap-category-sidebar__link.is-active {
  background: var(--ap-soft);
  color: var(--ap-ink);
  outline: 0;
}

.ap-category-sidebar__link.is-active {
  box-shadow: inset 3px 0 0 var(--ap-accent);
}

.ap-category-sidebar__link.is-active small {
  background: var(--ap-accent);
  color: #fff;
}

.woocommerce-account .ap-account-address-body {
  display: block;
  min-height: 116px;
  margin: 0;
  border-top: 1px solid rgba(105, 134, 151, 0.18);
  color: #445467;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
  padding: 24px 2px 2px;
}

.woocommerce-account .ap-account-address-body--empty {
  display: flex;
  align-items: center;
  gap: 14px;
}

.woocommerce-account .ap-account-address-body__icon,
.woocommerce-account .ap-account-empty__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(41, 183, 232, 0.12);
  color: var(--ap-accent-dark);
}

.woocommerce-account .ap-account-address-body__icon svg,
.woocommerce-account .ap-account-empty__icon svg {
  width: 23px;
  height: 23px;
}

.woocommerce-account .ap-account-address-body--empty span:last-child {
  display: grid;
  gap: 3px;
}

.woocommerce-account .ap-account-address-body--empty strong {
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
}

.woocommerce-account .ap-account-address-body--empty small {
  color: var(--ap-muted);
  font-size: 13px;
}

.woocommerce-account .ap-account-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 230px;
  border-top: 1px solid rgba(105, 134, 151, 0.18);
  text-align: center;
  padding: 34px 18px 8px;
}

.woocommerce-account .ap-account-empty h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.woocommerce-account .ap-account-empty h2::after {
  display: none;
}

.woocommerce-account .ap-account-empty p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--ap-muted);
  font-size: 14px;
}

.woocommerce-account .ap-account-orders-table-wrap {
  overflow-x: auto;
  margin: -4px -2px 0;
}

.woocommerce-account .ap-account-orders-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.woocommerce-account .ap-account-orders-table thead th {
  border: 0;
  color: #607080;
  font-size: 11px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  padding: 0 12px 5px;
}

.woocommerce-account .ap-account-orders-table tbody th,
.woocommerce-account .ap-account-orders-table tbody td {
  border-top: 1px solid rgba(105, 134, 151, 0.16);
  border-bottom: 1px solid rgba(105, 134, 151, 0.16);
  background: rgba(250, 252, 255, 0.78);
  color: #445467;
  font-size: 13px;
  padding: 14px 12px;
  vertical-align: middle;
}

.woocommerce-account .ap-account-orders-table tbody th:first-child,
.woocommerce-account .ap-account-orders-table tbody td:first-child {
  border-left: 1px solid rgba(105, 134, 151, 0.16);
  border-radius: 12px 0 0 12px;
}

.woocommerce-account .ap-account-orders-table tbody td:last-child {
  border-right: 1px solid rgba(105, 134, 151, 0.16);
  border-radius: 0 12px 12px 0;
}

.woocommerce-account .ap-account-orders-table a:not(.button) {
  color: var(--ap-ink);
  font-weight: 900;
}

.woocommerce-account .ap-account-orders-table .button {
  min-height: 38px;
  padding: 0 16px;
}

.woocommerce-account .ap-order-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(41, 183, 232, 0.12);
  color: #087f9f;
  font-size: 11px;
  font-weight: 900;
  padding: 0 10px;
}

.woocommerce-account .woocommerce-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.woocommerce-account .ap-account-edit-form {
  display: grid;
  gap: 26px;
}

.woocommerce-account .ap-account-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .ap-account-edit-form .form-row {
  width: auto;
  float: none;
  margin: 0;
}

.woocommerce-account .ap-account-profile-grid__wide {
  grid-column: 1 / -1;
}

.woocommerce-account .ap-field-help {
  display: block;
  margin-top: 7px;
  color: #667483;
  font-size: 12px;
  line-height: 1.5;
}

.woocommerce-account .ap-account-password-section {
  display: grid;
  gap: 18px;
  border: 0;
  border-top: 1px solid rgba(105, 134, 151, 0.18);
  margin: 0;
  padding: 24px 0 0;
}

.woocommerce-account .ap-account-password-section header {
  display: grid;
  gap: 6px;
}

.woocommerce-account .ap-account-password-section h2 {
  margin: 0;
  font-size: 19px;
  text-align: left;
}

.woocommerce-account .ap-account-password-section h2::after {
  display: none;
}

.woocommerce-account .ap-account-password-section h2 span {
  color: var(--ap-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce-account .ap-account-password-section header p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 13px;
}

.woocommerce-account .ap-account-password-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .ap-account-password-fields .form-row:first-child {
  grid-column: 1 / -1;
}

.woocommerce-account .ap-account-save-row {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(105, 134, 151, 0.18);
  padding-top: 22px;
}

@media (min-width: 861px) {
  body.woocommerce-shop main.site-main,
  body.tax-product_cat main.site-main {
    display: grid;
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    column-gap: 30px;
    align-items: start;
    margin-top: 32px;
  }

  body.woocommerce-shop main.site-main > .page-title,
  body.tax-product_cat main.site-main > .ap-category-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    justify-items: start;
    margin: 0 0 20px;
    text-align: left;
  }

  body.woocommerce-shop main.site-main > .woocommerce-notices-wrapper,
  body.tax-product_cat main.site-main > .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body.woocommerce-shop main.site-main > .ap-category-sidebar,
  body.tax-product_cat main.site-main > .ap-category-sidebar {
    grid-column: 1;
    grid-row: 3 / span 3;
  }

  body.woocommerce-shop main.site-main > .ap-shop-toolbar,
  body.tax-product_cat main.site-main > .ap-shop-toolbar {
    grid-column: 2;
    grid-row: 3;
  }

  body.woocommerce-shop main.site-main > ul.products,
  body.tax-product_cat main.site-main > ul.products {
    grid-column: 2;
    grid-row: 4;
  }

  body.woocommerce-shop main.site-main > .woocommerce-pagination,
  body.tax-product_cat main.site-main > .woocommerce-pagination {
    grid-column: 2;
    grid-row: 5;
  }

  .ap-shop-control--sort .woocommerce-ordering {
    display: none;
  }
}

body.tax-product_cat .ap-category-hero .ap-kicker {
  display: none;
}

body.woocommerce-shop main.site-main > .page-title,
body.tax-product_cat main.site-main > .ap-category-hero h1 {
  color: var(--ap-ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
}

body.woocommerce-shop main.site-main > .page-title {
  margin: 0 0 20px;
}

body.tax-product_cat main.site-main > .ap-category-hero h1 {
  margin: 0;
}

body.tax-product_cat main.site-main > .ap-category-hero p {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.ap-shop-main,
.ap-commerce-page,
.ap-info-page,
.ap-blog-main,
.ap-post-main {
  margin-top: 0;
  padding-top: 54px;
}

.ap-shop-feature {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 36px;
  background: #111;
}

.ap-shop-feature img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.82;
}

.ap-shop-feature p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: italic;
}

.ap-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 34px;
}

.ap-shop-sidebar {
  order: 2;
  display: grid;
  gap: 18px;
}

.ap-shop-results {
  min-width: 0;
}

.ap-filter-panel {
  border: 1px solid var(--ap-line);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.ap-filter-panel h2 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
}

.ap-filter-panel ul {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-filter-panel li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-muted);
  font-size: 13px;
}

.ap-filter-panel li:last-child a {
  border-bottom: 0;
}

.ap-filter-panel li a:hover,
.ap-filter-panel li a:focus {
  color: var(--ap-accent);
}

.ap-filter-panel em {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--ap-soft);
  color: var(--ap-muted);
  font-size: 11px;
  font-style: normal;
}

.ap-filter-panel--dark {
  background: #101113;
  color: #fff;
}

.ap-filter-panel--dark p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.ap-filter-panel--dark a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ap-shop-results .woocommerce-result-count {
  margin: 0 0 22px;
  color: var(--ap-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.ap-shop-results .woocommerce-ordering {
  margin: -8px 0 22px;
}

.ap-shop-results .woocommerce-ordering select,
.woocommerce .woocommerce-ordering select {
  min-height: 38px;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ap-muted);
  padding: 0 16px;
}

.woocommerce .ap-shop-toolbar .woocommerce-ordering,
.woocommerce .ap-shop-toolbar .woocommerce-ordering select {
  width: 190px;
}

.woocommerce .ap-shop-toolbar .woocommerce-ordering select {
  min-height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 50%, var(--ap-accent) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--ap-accent) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, #fff, #f7fcff);
  padding: 0 42px 0 16px;
  appearance: none;
}

.ap-commerce-page {
  position: relative;
  padding-bottom: 86px;
}

.ap-cart-page::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -76px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 130px);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 78% 5%, rgba(174, 232, 251, 0.44), rgba(174, 232, 251, 0) 28%),
    radial-gradient(circle at 14% 28%, rgba(225, 248, 255, 0.95), rgba(225, 248, 255, 0) 32%),
    linear-gradient(180deg, #f4fbff 0%, #fff 48%);
  pointer-events: none;
}

.ap-cart-page {
  margin-top: 34px;
}

.ap-cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 28px;
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 750;
}

.ap-cart-progress span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ap-cart-progress span + span::before {
  content: "";
  width: 22px;
  height: 1px;
  margin-right: 8px;
  background: rgba(105, 134, 151, 0.26);
}

.ap-cart-progress i {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(105, 134, 151, 0.32);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.ap-cart-progress .is-active {
  color: var(--ap-ink);
}

.ap-cart-progress .is-complete {
  color: var(--ap-muted);
}

.ap-cart-progress .is-complete i {
  border-color: rgba(42, 184, 228, 0.68);
  background: #fff;
}

.ap-cart-progress .is-active i {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
}

.ap-cart-content {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.ap-commerce-card,
.ap-info-card {
  border: 1px solid rgba(16, 17, 19, 0.06);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 17, 19, 0.08);
  padding: 30px;
}

.ap-cart-page .ap-commerce-card {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 72px rgba(42, 79, 105, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.ap-cart-content .woocommerce {
  width: 100%;
}

.woocommerce-cart .wc-empty-cart-message {
  display: flex;
  justify-content: center;
  width: 100%;
}

.woocommerce-cart .cart-empty.woocommerce-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(760px, 100%);
  max-width: 100%;
  margin: 8px auto 0;
  padding: 18px 26px;
  text-align: center;
}

.woocommerce-cart .cart-empty.woocommerce-info::before {
  position: static;
  flex: 0 0 auto;
  transform: none;
}

.woocommerce-cart .return-to-shop {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
  text-align: center;
}

.woocommerce-cart .return-to-shop .button {
  margin: 0 auto;
}

.ap-wishlist-shell {
  min-height: 260px;
}

.ap-wishlist-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.ap-wishlist-summary h2,
.ap-wishlist-empty h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
}

.ap-wishlist-summary p,
.ap-wishlist-empty p {
  margin: 8px 0 0;
  color: var(--ap-muted);
}

.ap-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ap-wishlist-card {
  overflow: hidden;
  border: 1px solid var(--ap-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(10, 45, 65, 0.08);
}

.ap-wishlist-card__media {
  display: block;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #edf8fd;
}

.ap-wishlist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-wishlist-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ap-wishlist-card__body h3 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.ap-wishlist-card__price {
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 850;
}

.ap-wishlist-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.ap-wishlist-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ap-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  padding: 0 18px;
}

.ap-wishlist-remove:hover,
.ap-wishlist-remove:focus {
  border-color: var(--ap-accent);
  color: var(--ap-accent);
  outline: 0;
}

.ap-wishlist-empty {
  display: grid;
  justify-items: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 42px 20px;
  text-align: center;
}

.ap-wishlist-empty .ap-button {
  margin-top: 20px;
}

.ap-commerce-page .ap-page-hero,
.ap-info-page .ap-page-hero,
.ap-blog-main .ap-page-hero,
.ap-post-main .ap-page-hero {
  margin-bottom: 34px;
}

.woocommerce-checkout-review-order table,
.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--ap-line);
  border-radius: 14px;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}

.ap-cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 22px;
  align-items: start;
  margin: 0;
}

.ap-cart-items-panel,
.ap-cart-summary-panel {
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(42, 79, 105, 0.1);
}

.ap-cart-items-panel {
  padding: 24px;
}

.ap-cart-summary-panel {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.96), rgba(255, 255, 255, 0.94));
  padding: 22px;
}

.ap-cart-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.ap-cart-panel-head .ap-kicker {
  margin-bottom: 6px;
}

.ap-cart-panel-head h2,
.ap-cart-summary-lines h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.ap-cart-clear {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  color: #d64242;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.ap-cart-clear:hover,
.ap-cart-clear:focus {
  color: var(--ap-ink);
  outline: 0;
}

.ap-cart-table-head,
.ap-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px 120px 30px;
  gap: 18px;
  align-items: center;
}

.ap-cart-table-head {
  margin-bottom: 10px;
  padding: 0 18px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 900;
}

.ap-cart-list {
  display: grid;
  gap: 12px;
}

.ap-cart-row {
  min-height: 92px;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(10, 45, 65, 0.055);
  padding: 12px 16px 12px 12px;
}

.ap-cart-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.ap-cart-product__image {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8fd;
}

.ap-cart-product__image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.ap-cart-product__copy {
  min-width: 0;
}

.ap-cart-product__name {
  display: block;
  color: var(--ap-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  text-decoration: none;
}

.ap-cart-product__name:hover,
.ap-cart-product__name:focus {
  color: var(--ap-accent);
  outline: 0;
}

.ap-cart-product__copy dl.variation {
  margin: 4px 0 0;
  color: var(--ap-muted);
  font-size: 12px;
}

.ap-cart-quantity {
  display: flex;
  justify-content: flex-start;
}

.ap-cart-price {
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
}

.ap-cart-remove {
  display: flex;
  justify-content: flex-end;
}

.ap-cart-remove .remove {
  display: inline-grid !important;
  width: 28px !important;
  height: 28px !important;
  place-items: center;
  border-radius: 50%;
  color: #d64242 !important;
  font-size: 19px !important;
  line-height: 1 !important;
  text-decoration: none;
}

.ap-cart-remove .remove:hover,
.ap-cart-remove .remove:focus {
  background: rgba(214, 66, 66, 0.1) !important;
  color: #d64242 !important;
  outline: 0;
}

.ap-cart-coupon {
  display: grid;
  gap: 12px;
}

.ap-cart-coupon label {
  color: var(--ap-ink);
  font-size: 13px;
  font-weight: 900;
}

.ap-cart-coupon__control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(105, 134, 151, 0.16);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
}

.woocommerce-cart .ap-cart-coupon__control .input-text {
  width: 100% !important;
  min-height: 42px;
  border: 0 !important;
  border-radius: 999px;
  background: transparent;
  padding: 0 16px;
}

.ap-cart-coupon__control .button {
  min-height: 42px;
  border-radius: 999px !important;
  background: var(--ap-ink) !important;
  color: #fff !important;
  padding: 0 24px !important;
}

.ap-cart-summary-lines {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(105, 134, 151, 0.14);
  padding-top: 20px;
}

.ap-cart-summary-lines h2 {
  margin-bottom: 4px;
  font-size: 20px;
}

.ap-cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ap-muted);
  font-size: 13px;
}

.ap-cart-summary-line strong {
  color: var(--ap-ink);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.ap-cart-summary-line--total {
  border-top: 1px solid rgba(105, 134, 151, 0.16);
  margin-top: 4px;
  padding-top: 16px;
}

.ap-cart-summary-line--total span,
.ap-cart-summary-line--total strong {
  color: var(--ap-ink);
  font-size: 17px;
  font-weight: 900;
}

.ap-cart-summary-panel .wc-proceed-to-checkout {
  padding: 0;
}

.ap-cart-update-button {
  display: none !important;
}

.woocommerce table.shop_table th {
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  color: var(--ap-muted);
}

.woocommerce-cart table.cart td {
  vertical-align: middle;
}

.woocommerce-cart table.cart .product-thumbnail img {
  width: 56px;
  border-radius: 10px;
}

.woocommerce-cart table.cart .product-name a {
  color: #536073;
  font-weight: 600;
}

.woocommerce-cart table.cart td.actions {
  text-align: right;
  padding: 16px !important;
}

.woocommerce-cart table.cart td.actions::before,
.woocommerce-cart table.cart td.actions::after,
.woocommerce-cart table.cart td.actions .coupon::before,
.woocommerce-cart table.cart td.actions .coupon::after {
  display: none;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(700px, 100%);
  max-width: none;
  float: left;
  padding: 0;
  text-align: left;
}

.woocommerce-cart table.cart td.actions > button[name="update_cart"],
.woocommerce-cart .ap-cart-update-button {
  display: none !important;
}

.woocommerce-cart form.woocommerce-cart-form.is-auto-updating {
  opacity: 0.62;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.woocommerce-cart form.woocommerce-cart-form.is-auto-updating table.cart {
  box-shadow: 0 0 0 3px rgba(42, 184, 228, 0.12);
}

.woocommerce-cart .coupon .input-text,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-cart .quantity .qty {
  min-height: 46px;
  border: 1px solid #d7e9f2 !important;
  border-radius: 12px;
  background: #fff;
  color: var(--ap-ink);
  outline: 0;
  padding: 0 16px;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  border-color: rgba(42, 184, 228, 0.72);
  box-shadow: 0 0 0 4px rgba(42, 184, 228, 0.13);
}

.woocommerce-cart .coupon .input-text,
.woocommerce-cart .quantity .qty {
  min-height: 44px;
  border-radius: 999px;
  background: #fafafa;
}

.woocommerce .ap-quantity-stepper {
  display: inline-grid;
  grid-template-columns: 34px 44px 34px;
  align-items: center;
  width: auto;
  min-height: 52px;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  background: #fafafa;
  color: var(--ap-ink);
  overflow: hidden;
}

.woocommerce .ap-quantity-stepper .qty {
  width: 44px;
  min-height: 50px;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  color: var(--ap-ink);
  font-weight: 750;
  text-align: center;
  appearance: textfield;
  padding: 0;
}

.woocommerce .ap-quantity-stepper .qty::-webkit-outer-spin-button,
.woocommerce .ap-quantity-stepper .qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.ap-quantity-stepper__button {
  display: grid;
  width: 34px;
  height: 50px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4f5d6b;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease;
}

.ap-quantity-stepper__button:hover,
.ap-quantity-stepper__button:focus {
  background: #101113;
  color: #fff;
  outline: 0;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  flex: 1 1 250px;
  width: auto !important;
  min-width: 230px;
  max-width: none;
  margin: 0;
}

.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions > .button {
  min-height: 38px;
  margin: 0;
  white-space: nowrap;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 14px;
  background: var(--ap-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus {
  background: var(--ap-accent);
  color: #fff;
  outline: 0;
}

.woocommerce-checkout textarea {
  min-height: 110px;
  border-radius: 16px;
  padding: 14px 16px;
}

.ap-checkout-page {
  padding-bottom: 86px;
}

.ap-checkout-page .ap-page-hero {
  max-width: 820px;
  margin-bottom: 22px;
}

.ap-checkout-page .ap-page-hero h1 {
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.08;
}

.ap-checkout-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(640px, 100%);
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
}

.ap-checkout-steps::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16%;
  right: 16%;
  border-top: 1px solid rgba(105, 134, 151, 0.2);
}

.ap-checkout-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #7a8898;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.ap-checkout-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(105, 134, 151, 0.22);
  border-radius: 50%;
  background: #fff;
  color: #607084;
  box-shadow: 0 10px 22px rgba(42, 79, 105, 0.08);
}

.ap-checkout-step strong {
  font-weight: 850;
}

.ap-checkout-step.is-complete span,
.ap-checkout-step.is-active span {
  border-color: var(--ap-accent);
  background: var(--ap-accent);
  color: #fff;
}

.ap-checkout-step.is-active strong {
  color: var(--ap-ink);
}

.ap-checkout-auth-card {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  justify-content: center;
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 74px rgba(42, 79, 105, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  padding: 34px;
}

.ap-checkout-auth-copy {
  position: sticky;
  top: 112px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(234, 249, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
  padding: 30px;
}

.ap-checkout-auth-copy h2 {
  max-width: 440px;
  margin: 10px 0 14px;
  color: var(--ap-ink);
  font-size: 36px;
  line-height: 1.02;
}

.ap-checkout-auth-copy p {
  margin: 0;
  color: #506174;
  font-size: 15px;
  line-height: 1.7;
}

.ap-checkout-auth-card .ap-auth-shell {
  grid-template-columns: minmax(0, 1fr);
}

.ap-checkout-auth-card .woocommerce form.login,
.ap-checkout-auth-card .woocommerce form.register {
  background: rgba(255, 255, 255, 0.86);
}

.ap-checkout-auth-card .woocommerce-message,
.ap-checkout-auth-card .woocommerce-info,
.ap-checkout-auth-card .woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  border: 1px solid rgba(105, 134, 151, 0.16) !important;
  border-top: 3px solid var(--ap-accent) !important;
  border-radius: 18px;
  outline: 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(42, 79, 105, 0.1);
  color: #506174;
  padding: 16px 18px 16px 48px;
}

.ap-checkout-auth-card .woocommerce-message::before,
.ap-checkout-auth-card .woocommerce-info::before,
.ap-checkout-auth-card .woocommerce-error::before {
  left: 18px;
}

.ap-checkout-auth-card .woocommerce-message .button,
.ap-checkout-auth-card .woocommerce-info .button,
.ap-checkout-auth-card .woocommerce-error .button {
  flex: 0 0 auto;
  min-height: 40px;
  margin: 0;
  white-space: nowrap;
}

.ap-checkout-card {
  width: min(1240px, 100%);
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 74px rgba(42, 79, 105, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  padding: 30px;
}

.ap-checkout-card .woocommerce {
  width: 100%;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle {
  max-width: 760px;
  margin: 0 auto 22px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-top: 3px solid var(--ap-accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(42, 79, 105, 0.08);
  color: #506174;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--ap-accent-dark);
  font-weight: 850;
}

.woocommerce-checkout form.checkout_coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin: -8px auto 24px;
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(42, 79, 105, 0.08);
  padding: 18px;
}

.woocommerce-checkout form.checkout_coupon .form-row {
  margin: 0;
  padding: 0;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.68fr);
  grid-template-areas:
    "details review-title"
    "details review";
  align-items: start;
  gap: 28px;
  margin: 0;
}

.woocommerce-checkout #customer_details {
  grid-area: details;
  display: grid;
  gap: 22px;
  width: 100%;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.woocommerce-checkout #customer_details.col2-set {
  grid-template-columns: minmax(0, 1fr);
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: auto;
  float: none;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
  border: 1px solid rgba(105, 134, 151, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 52px rgba(42, 79, 105, 0.08);
  padding: 28px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: auto !important;
  float: none !important;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout .notes {
  grid-column: 1 / -1;
}

.woocommerce-checkout label {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-ink);
  font-size: 12px;
  font-weight: 850;
}

.ap-single-product.has-color-swatches .ap-product-buybox form.variations_form .variations,
.ap-single-product.has-color-swatches .ap-product-buybox form.variations_form .reset_variations {
  display: none !important;
}

.ap-single-product.has-color-swatches .ap-product-buybox form.variations_form,
.ap-single-product.has-color-swatches .ap-product-buybox .single_variation_wrap,
.ap-single-product.has-color-swatches .ap-product-buybox .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ap-single-product.has-color-swatches .ap-product-buybox .woocommerce-variation {
  width: 100%;
}

.woocommerce-checkout .wc-block-components-checkbox label {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 !important;
  line-height: 20px;
}

.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
  position: static;
  flex: 0 0 20px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0;
  border-color: rgba(105, 134, 151, 0.48);
}

.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
  border-color: var(--ap-accent-dark);
  background: var(--ap-accent-dark);
}

.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  top: 1px;
  left: 3px;
  width: 15px;
  height: 15px;
  margin: 0;
  fill: #fff;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container {
  width: 100% !important;
  box-sizing: border-box;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid #d7e9f2 !important;
  border-radius: 12px;
  background: #fff;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ap-ink);
  line-height: 46px;
  padding-left: 16px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
  right: 10px;
}

.woocommerce-checkout #order_review_heading {
  grid-area: review-title;
  margin: 4px 0 -8px;
  align-self: start;
}

.woocommerce-checkout #order_review {
  grid-area: review;
  width: 100%;
  position: sticky;
  top: 112px;
}

.woocommerce-checkout #order_review table {
  width: 100%;
  margin: 0 0 18px;
  border-radius: 18px;
  table-layout: fixed;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 14px 12px;
  vertical-align: middle;
}

.woocommerce-checkout-review-order-table th.product-name,
.woocommerce-checkout-review-order-table td.product-name {
  width: 68%;
  min-width: 0;
}

.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout-review-order-table td.product-total {
  width: 32%;
  text-align: right;
  white-space: nowrap;
}

.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  vertical-align: middle;
}

.ap-checkout-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.ap-checkout-product__image {
  display: block;
  overflow: hidden;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ap-line);
  border-radius: 12px;
  background: #edf8fd;
}

.ap-checkout-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-checkout-product__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ap-checkout-product__name {
  display: block;
  color: #536073;
  font-weight: 750;
  line-height: 1.35;
}

a.ap-checkout-product__name:hover,
a.ap-checkout-product__name:focus {
  color: var(--ap-accent);
}

.ap-checkout-product .product-quantity {
  display: inline-flex;
  width: max-content;
  margin-left: 0;
  color: var(--ap-ink);
  font-weight: 900;
}

.ap-checkout-product .variation {
  margin: 6px 0 0;
  color: var(--ap-muted);
  font-size: 11px;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 900;
}

.woocommerce-checkout #payment {
  border-radius: 20px;
  background: #f4fbfe;
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout #payment div.form-row {
  border: 0;
  padding: 18px;
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 16px;
  background: #fff;
  color: #506174;
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 54px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #262836 0%, #101113 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment #place_order:focus {
  background: linear-gradient(180deg, #35c7f2 0%, var(--ap-accent-dark) 100%);
}

.woocommerce-checkout h3,
.cart_totals h2 {
  font-size: 22px;
  font-weight: 900;
}

.ap-info-page {
  padding-bottom: 86px;
}

.ap-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.ap-info-copy,
.ap-prose-card {
  color: var(--ap-muted);
  font-size: 15px;
}

.ap-info-copy {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 17, 19, 0.08);
  padding: 30px;
}

.ap-info-card--image {
  padding: 0;
  overflow: hidden;
}

.ap-info-card--image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ap-mini-grid,
.ap-process-grid,
.ap-contact-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.ap-mini-grid,
.ap-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ap-contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ap-mini-grid article,
.ap-process-grid article,
.ap-contact-grid article {
  border: 1px solid var(--ap-line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
}

.ap-mini-grid strong,
.ap-process-grid strong,
.ap-contact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-ink);
  font-size: 16px;
  font-weight: 900;
}

.ap-mini-grid span,
.ap-process-grid span,
.ap-contact-grid span,
.ap-contact-grid a {
  color: var(--ap-muted);
}

.ap-contact-grid a {
  font-weight: 850;
}

.ap-process-grid em {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--ap-accent);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.ap-prose-card h2,
.ap-prose-card h3,
.ap-prose-card h4 {
  color: var(--ap-ink);
  font-weight: 900;
}

.ap-prose-card h3,
.ap-prose-card h4 {
  margin-bottom: 8px;
}

.ap-prose-card p {
  margin-top: 0;
}

.ap-prose-card p + h2,
.ap-prose-card ul + h2,
.ap-prose-card ol + h2 {
  margin-top: 26px;
}

.ap-prose-card p + h3,
.ap-prose-card ul + h3,
.ap-prose-card ol + h3 {
  margin-top: 20px;
}

.ap-prose-card ul,
.ap-prose-card ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.ap-prose-card li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.ap-prose-card strong {
  color: var(--ap-ink);
}

.ap-prose-card a {
  color: var(--ap-accent);
  font-weight: 850;
}

.ap-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ap-post-card {
  display: grid;
  gap: 16px;
}

.ap-post-card__media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ap-soft);
}

.ap-post-card__media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.ap-post-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--ap-muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.ap-post-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.ap-post-card p {
  color: var(--ap-muted);
  font-size: 13px;
}

.ap-post-hero-media {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 34px;
  border-radius: 18px;
}

.ap-post-hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.ap-search-page-form {
  max-width: 620px;
  margin: 0 auto 34px;
}

.ap-search-page-form .ap-search {
  background: #fff;
}

@media (max-width: 1080px) {

  .ap-hero-copy h1 {
    font-size: 58px;
  }

  .ap-growly-navbar {
    grid-template-columns: minmax(180px, 1fr) auto minmax(160px, 210px) auto;
    gap: 10px;
  }

  .ap-growly-navbar .ap-brand__name {
    max-width: 170px;
  }

  .ap-growly-menu {
    gap: 6px;
  }

  .ap-growly-menu a,
  .ap-shop-dropdown__toggle {
    font-size: 14px;
    padding: 0 12px;
  }

  .ap-header__main,
  .ap-nav-row {
    grid-template-columns: 170px minmax(0, 1fr) 170px;
    gap: 18px;
  }

  .ap-menu {
    gap: 22px;
  }

  .ap-support strong {
    display: none;
  }

  .ap-hero-collage {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  }

  .ap-home-hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    min-height: 500px;
  }

  .ap-hero-showcase,
  .ap-hero-showcase img {
    min-height: 460px;
  }

  .ap-category-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ap-tile--tall {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .ap-category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ap-product-grid,
  .woocommerce ul.products,
  .ap-wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ap-shop-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 24px;
  }

  .ap-product-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: 34px;
  }

  .ap-product-note-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout,
  .ap-checkout-auth-card {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout {
    grid-template-areas:
      "details"
      "review-title"
      "review";
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .ap-checkout-auth-copy {
    position: static;
  }

  .ap-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .ap-wrap,
  .woocommerce main.site-main,
  .site-main {
    width: min(var(--ap-content), calc(100% - 32px));
  }

  body.woocommerce-shop main.site-main,
  body.tax-product_cat main.site-main {
    margin-top: 22px;
  }

  body.woocommerce-shop main.site-main > .page-title,
  body.tax-product_cat main.site-main > .ap-category-hero {
    width: 100%;
    max-width: none;
    justify-items: start;
    margin: 0 0 14px;
    text-align: left;
  }

  body.woocommerce-shop main.site-main > .page-title,
  body.tax-product_cat main.site-main > .ap-category-hero h1 {
    font-size: 28px;
  }

  body.tax-product_cat main.site-main > .ap-category-hero p {
    margin-top: 6px;
    font-size: 12px;
  }

  .ap-category-sidebar,
  .ap-desktop-sort {
    display: none;
  }

  .ap-shop-toolbar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 0 10px;
  }

  .ap-shop-toolbar__controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
    gap: 0;
    border: 1px solid var(--ap-line);
    border-radius: 8px;
    background: #fff;
  }

  .ap-shop-control {
    width: 100%;
    min-height: 46px;
  }

  .ap-shop-control--sort {
    grid-column: 1;
    grid-row: 1;
  }

  .ap-shop-control--category {
    display: block;
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid var(--ap-line);
  }

  .ap-shop-control__trigger {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ap-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 0 10px;
  }

  .ap-shop-control__trigger svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .ap-shop-control__trigger .ap-shop-control__chevron {
    width: 14px;
    height: 14px;
    margin-left: 2px;
    color: var(--ap-muted);
  }

  .ap-category-select,
  .ap-shop-control--sort .woocommerce-ordering,
  .ap-shop-control--sort .woocommerce-ordering select {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100%;
    min-height: 46px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
  }

  .ap-shop-control:focus-within .ap-shop-control__trigger {
    background: var(--ap-soft);
    box-shadow: inset 0 0 0 2px rgba(42, 184, 228, 0.34);
    color: var(--ap-accent-dark);
  }

  .ap-topbar__links a:nth-child(n + 3),
  .ap-topbar__socials,
  .ap-header__nav,
  .ap-growly-nav,
  .ap-growly-menu,
  .ap-nav-search,
  .ap-header__main > .ap-search,
  .ap-actions .ap-hide-mobile {
    display: none;
  }

  .ap-header--growly {
    padding: 14px 0 12px;
  }

  .ap-header--growly.is-scrolled {
    padding: 8px 0;
  }

  .ap-growly-navbar {
    grid-template-columns: auto 1fr auto;
    min-height: 50px;
    padding-left: 18px;
  }

  .ap-mobile-search-toggle {
    display: inline-grid;
  }

  .ap-mobile-search-popover {
    position: absolute;
    z-index: 195;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: #101113;
    box-shadow: 0 22px 48px rgba(16, 17, 19, 0.2);
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 150ms ease, transform 170ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .ap-mobile-search-popover.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .ap-nav-search.ap-mobile-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    width: 100%;
    height: 42px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
  }

  .ap-mobile-search-form input {
    font-size: 16px;
    padding-left: 16px;
  }

  .ap-mobile-search-form button {
    width: 42px;
    height: 40px;
  }

  .ap-mobile-search-form .ap-search-suggest__panel {
    right: 0;
    left: 0;
    width: 100%;
  }

  .ap-growly-actions .ap-growly-cta {
    display: none;
  }

  .ap-mobile-toggle {
    display: inline-grid;
  }

  .ap-header__main {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .ap-brand__name {
    max-width: 210px;
  }

  .ap-growly-navbar .ap-brand__name {
    max-width: 190px;
  }

  .ap-hero-intro,
  .ap-home-hero__inner,
  .ap-split-promo,
  .ap-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ap-home-hero {
    padding-top: 42px;
  }

  .ap-home-hero__inner {
    min-height: auto;
  }

  .ap-hero-copy {
    max-width: none;
  }

  .ap-hero-showcase,
  .ap-hero-showcase img {
    min-height: 360px;
  }

  .ap-section__head {
    align-items: start;
    flex-direction: column;
  }

  .ap-section {
    padding: 72px 0;
  }

  .ap-category-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-hero-collage {
    grid-template-columns: 1fr;
  }

  .ap-hero-collage__stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ap-tile--large,
  .ap-tile--tall {
    min-height: 320px;
  }

  .ap-product-grid,
  .woocommerce ul.products,
  .ap-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-shop-layout,
  .ap-cart-shell,
  .ap-product-hero,
  .ap-product-detail-grid,
  .ap-product-reviews,
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout .col2-set,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
  .ap-checkout-auth-card,
  .ap-info-grid,
  .ap-mini-grid,
  .ap-process-grid,
  .ap-contact-grid {
    grid-template-columns: 1fr;
  }

  .ap-single-product {
    width: min(var(--ap-content), calc(100% - 32px));
  }

  .ap-product-summary h1 {
    font-size: 38px;
  }

  .woocommerce-checkout form.checkout {
    grid-template-areas:
      "details"
      "review-title"
      "review";
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .ap-checkout-auth-copy {
    position: static;
  }

  .ap-shop-sidebar {
    order: 0;
  }

  .ap-shop-feature img {
    height: 230px;
  }

  .ap-account-main {
    width: 100%;
    max-width: none;
    padding: 42px 16px 64px;
  }

  .woocommerce-account .woocommerce .u-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .woocommerce-account .woocommerce .u-column2 {
    margin-top: 0;
  }

  .woocommerce-cart table.cart td.actions {
    text-align: left;
  }

  .ap-cart-summary-panel {
    position: static;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    width: 100%;
    max-width: none;
    float: none;
    margin-bottom: 10px;
  }

  .woocommerce-cart table.cart td.actions > .button {
    float: none;
    margin-left: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 18px;
  }

  .ap-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 12px;
  }
}

@media (max-width: 620px) {

  .ap-gallery-step--previous {
    left: 12px;
  }

  .ap-gallery-step--next {
    right: 12px;
  }
  body {
    font-size: 15px;
  }

  .ap-announcement__inner {
    min-height: 30px;
    justify-content: center;
    text-align: center;
  }

  .ap-announcement a {
    display: none;
  }

  .ap-topbar__inner {
    justify-content: center;
  }

  .ap-topbar__links {
    gap: 14px;
  }

  .ap-brand__name {
    max-width: 170px;
    font-size: 14px;
  }

  .ap-growly-navbar .ap-brand__name {
    max-width: 132px;
  }

  .ap-growly-navbar .ap-brand__logo {
    flex-basis: 34px;
    width: 34px;
    height: 23px;
    background-position: -5px -6px;
    background-size: 45px 45px;
  }

  .ap-growly-navbar {
    gap: 6px;
    padding-left: 14px;
    padding-right: 8px;
  }

  .ap-growly-actions {
    gap: 4px;
    padding-right: 4px;
  }

  .ap-growly-actions .ap-icon-button {
    width: 34px;
    height: 34px;
  }

  .ap-growly-actions .ap-nav-icon {
    width: 22px;
    height: 22px;
  }

  .ap-hero-intro h1 {
    font-size: 35px;
  }

  .ap-hero-copy h1 {
    font-size: 38px;
  }

  .ap-hero-copy p {
    font-size: 15px;
  }

  .ap-hero-showcase,
  .ap-hero-showcase img {
    min-height: 280px;
  }

  .ap-category-image-grid {
    grid-template-columns: 1fr;
  }

  .ap-category-image-card,
  .ap-category-image-card img {
    min-height: 190px;
  }

  .ap-deal-filter-row {
    flex-wrap: nowrap;
    margin-right: -18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .ap-deal-filter-row::-webkit-scrollbar {
    display: none;
  }

  .ap-deal-filter-row button {
    flex: 0 0 auto;
  }

  .ap-account-intro h1 {
    font-size: 34px;
  }

  .ap-page-hero h1 {
    font-size: 34px;
  }

  .ap-category-hero {
    justify-items: start;
    margin-bottom: 20px;
    text-align: left;
  }

  .ap-shop-toolbar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 0 10px;
  }

  .ap-shop-toolbar__controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0;
  }

  .ap-shop-toolbar__controls > .ap-shop-control:only-child {
    grid-column: 1 / -1;
  }

  .ap-shop-control,
  .ap-category-select {
    width: 100%;
  }

  .ap-category-select,
  .woocommerce .ap-shop-toolbar .woocommerce-ordering,
  .woocommerce .ap-shop-toolbar .woocommerce-ordering select {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }

  .ap-shop-main,
  .ap-commerce-page,
  .ap-info-page,
  .ap-blog-main,
  .ap-post-main {
    padding-top: 36px;
  }

  .ap-commerce-card,
  .ap-checkout-card,
  .ap-checkout-auth-card,
  .ap-info-card,
  .ap-info-copy,
  .ap-product-detail-card,
  .ap-product-reviews__list,
  .ap-product-review-form,
  .ap-filter-panel,
  .ap-mini-grid article,
  .ap-process-grid article,
  .ap-contact-grid article {
    border-radius: 16px;
    padding: 20px;
  }

  .ap-product-main {
    padding-top: 34px;
  }

  .ap-product-image-card {
    border-radius: 16px;
    padding: 10px;
  }

  .ap-product-image-card img {
    aspect-ratio: 1 / 1;
  }

  .ap-product-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .ap-product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ap-product-buybox,
  .ap-product-buybox form.cart {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ap-product-buybox .quantity,
  .ap-product-buybox .single_add_to_cart_button,
  .ap-product-buybox .ap-wishlist-button--pill {
    width: 100%;
  }

  .ap-product-buybox .ap-quantity-stepper {
    justify-content: center;
  }

  .ap-checkout-auth-copy,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review {
    border-radius: 16px;
    padding: 20px;
  }

  .ap-checkout-auth-copy h2 {
    font-size: 28px;
  }

  .ap-post-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce form.login,
  .woocommerce-account .woocommerce form.register,
  .woocommerce-account .woocommerce-MyAccount-content {
    border-radius: 16px;
    padding: 22px;
  }

  .woocommerce-account .woocommerce form .form-row {
    margin-bottom: 14px;
  }

  .woocommerce-account .woocommerce h2 {
    font-size: 22px;
  }

  .woocommerce-account .ap-account-dashboard__actions {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .ap-account-dashboard__actions a {
    min-height: 86px;
  }

  .woocommerce-account .ap-account-section__header--with-action {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .woocommerce-account .ap-account-profile-grid,
  .woocommerce-account .ap-account-password-fields {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .ap-account-password-fields .form-row:first-child {
    grid-column: auto;
  }

  .woocommerce-account .ap-account-save-row .button {
    width: 100%;
  }

  .woocommerce-account .ap-account-empty {
    min-height: 210px;
    padding-left: 0;
    padding-right: 0;
  }

  .woocommerce-account .ap-account-orders-table thead {
    display: none;
  }

  .woocommerce-account .ap-account-orders-table,
  .woocommerce-account .ap-account-orders-table tbody,
  .woocommerce-account .ap-account-orders-table tr,
  .woocommerce-account .ap-account-orders-table th,
  .woocommerce-account .ap-account-orders-table td {
    display: block;
    width: 100%;
  }

  .woocommerce-account .ap-account-orders-table tbody tr {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(105, 134, 151, 0.16);
    border-radius: 14px;
    background: rgba(250, 252, 255, 0.78);
  }

  .woocommerce-account .ap-account-orders-table tbody th,
  .woocommerce-account .ap-account-orders-table tbody td,
  .woocommerce-account .ap-account-orders-table tbody th:first-child,
  .woocommerce-account .ap-account-orders-table tbody td:first-child,
  .woocommerce-account .ap-account-orders-table tbody td:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    border-bottom: 1px solid rgba(105, 134, 151, 0.12);
    border-radius: 0;
    text-align: right;
  }

  .woocommerce-account .ap-account-orders-table tbody td:last-child {
    border-bottom: 0;
  }

  .woocommerce-account .ap-account-orders-table tbody th::before,
  .woocommerce-account .ap-account-orders-table tbody td::before {
    content: attr(data-title);
    color: #607080;
    font-size: 11px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .woocommerce-account .ap-address-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce-account .ap-address-card__button {
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .button {
    width: 100%;
    margin-left: 0;
  }

  .woocommerce .woocommerce-error,
  .woocommerce .woocommerce-message,
  .woocommerce .woocommerce-info {
    grid-template-columns: 1fr;
  }

  .woocommerce .woocommerce-error .button,
  .woocommerce .woocommerce-message .button,
  .woocommerce .woocommerce-info .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .woocommerce-cart table.cart td.actions,
  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ap-cart-page {
    margin-top: 22px;
  }

  .ap-cart-progress {
    gap: 8px;
    margin-bottom: 22px;
    font-size: 11px;
  }

  .ap-cart-progress span + span::before {
    width: 10px;
    margin-right: 4px;
  }

  .ap-cart-items-panel,
  .ap-cart-summary-panel {
    border-radius: 16px;
    padding: 18px;
  }

  .ap-cart-panel-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .ap-cart-table-head {
    display: none;
  }

  .ap-cart-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px;
  }

  .ap-cart-product {
    grid-column: 1 / -1;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ap-cart-product__image img {
    width: 64px;
    height: 64px;
  }

  .ap-cart-quantity {
    grid-column: 1;
  }

  .ap-cart-price {
    grid-column: 2;
    align-self: center;
    text-align: right;
  }

  .ap-cart-remove {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .ap-cart-row {
    position: relative;
  }

  .ap-cart-coupon__control {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 6px;
  }

  .ap-cart-coupon__control .button {
    width: 100%;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .button,
  .woocommerce-cart table.cart td.actions > .button {
    width: 100% !important;
    max-width: none;
  }

  .ap-hero__actions,
  .ap-newsletter form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .ap-button,
  .ap-newsletter input,
  .ap-newsletter button {
    width: 100%;
  }

  .ap-hero-collage__stack {
    grid-template-columns: 1fr;
  }

  .ap-tile,
  .ap-tile--large,
  .ap-tile--small,
  .ap-tile--tall {
    min-height: 265px;
  }

  .ap-tile__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .ap-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-product-grid,
  .ap-wishlist-grid,
  .ap-footer__main {
    grid-template-columns: 1fr;
  }

  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card,
  body.tax-product_cat ul.products li.product.ap-product-card {
    min-width: 0;
    border-radius: 10px;
    padding: 7px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-card__media-wrap,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-card__media-wrap {
    border-radius: 8px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-card__media,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-card__media {
    aspect-ratio: 1 / 1;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-card__media img,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-card__media img {
    padding: 6px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-card__thumbs,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-card__thumbs {
    display: none;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-card__body,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-card__body {
    gap: 7px;
    padding: 11px 2px 0;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card h3,
  body.tax-product_cat ul.products li.product.ap-product-card h3,
  body.woocommerce-shop ul.products li.product.ap-product-card .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product.ap-product-card .woocommerce-loop-product__title {
    display: -webkit-box;
    min-height: 32px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-meta,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-meta {
    margin-top: -3px;
    font-size: 8px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-price-row,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-price-row,
  body.woocommerce-shop ul.products li.product.ap-product-card .price,
  body.tax-product_cat ul.products li.product.ap-product-card .price {
    gap: 4px;
    font-size: 11px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-discount-badge,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-discount-badge {
    min-height: 18px;
    font-size: 7px;
    padding: 0 6px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-product-status,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-product-status {
    top: 7px;
    left: 7px;
    min-height: 20px;
    font-size: 7px;
    padding: 0 7px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-wishlist-button,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-wishlist-button {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-wishlist-button svg,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-wishlist-button svg {
    width: 17px;
    height: 17px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-gallery-step,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-gallery-step {
    top: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    transform: translateY(-50%);
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-gallery-step--previous,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-gallery-step--previous {
    left: 5px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-gallery-step--next,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-gallery-step--next {
    right: 5px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-actions,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-actions {
    margin-top: 2px;
    padding: 0 1px 1px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-cart-button,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-cart-button {
    min-height: 38px;
    gap: 5px;
    font-size: 9px;
    padding: 0 5px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-cart-button svg,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-cart-button svg {
    width: 13px;
    height: 13px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-added-actions,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-added-actions {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 4px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-stepper,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-stepper {
    grid-template-columns: 24px minmax(22px, 1fr) 24px;
    min-height: 36px;
  }

  body.woocommerce-shop ul.products li.product.ap-product-card .ap-card-view-cart,
  body.tax-product_cat ul.products li.product.ap-product-card .ap-card-view-cart {
    min-height: 36px;
    font-size: 8px;
    padding: 0 3px;
    white-space: normal;
  }

  .ap-wishlist-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .ap-product-card__media {
    aspect-ratio: 1.35 / 1;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.added_to_cart.wc-forward,
  .woocommerce-page ul.products li.product a.added_to_cart.wc-forward,
  .woocommerce ul.products li.product a.wc-forward:not(.button) {
    width: 100%;
    margin: 10px 0 0;
  }

  .woocommerce ul.products li.product a.added_to_cart.wc-forward,
  .woocommerce-page ul.products li.product a.added_to_cart.wc-forward,
  .woocommerce ul.products li.product a.wc-forward:not(.button) {
    margin-bottom: 18px;
  }

  .ap-footer__bottom {
    display: block;
  }

  .ap-footer__payments {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .ap-footer__payments > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ap-reveal,
  .ap-reveal.is-revealed {
    opacity: 1;
    transform: none;
  }
}
