:root {
  --primary: #0b2239;
  --accent: #f3872f;
  --bg: #08101a;
  --surface: #0f1a28;
  --surface-soft: #132236;
  --text: #eef4fb;
  --muted: #a8b7c8;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1240px;
  --bottom-nav-h: 66px;
  --bottom-freeship-offset: 0px;
  --bottom-stack-h: calc(var(--bottom-nav-h) + var(--bottom-freeship-offset));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 0%, #11243c 0%, var(--bg) 48%), var(--bg);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

body.is-locked {
  overflow: hidden;
}

.site-content {
  overflow-x: clip;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.polaris-content {
  padding: 24px 0 36px;
}

.polaris-section {
  margin: 18px 0 28px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.section-title a {
  color: var(--muted);
  font-size: .88rem;
}

.section-title a:hover {
  color: var(--accent);
}

.section-kicker {
  margin: 0 0 14px;
  color: rgba(220, 232, 247, 0.74);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  cursor: pointer;
  transition: .2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #121212;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hidden {
  display: none !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(9, 21, 34, .9);
  border-bottom: 1px solid var(--border);
}

.trustbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trustbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  font-size: .78rem;
  color: var(--muted);
}

.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trustbar__item i {
  color: var(--accent);
}

.trustbar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.logo img {
  max-height: 36px;
  width: auto;
}

.polaris-checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 42px;
  padding: 0 14px;
  font-size: .92rem;
  font-weight: 600;
}

.polaris-checkout-back-link i {
  color: var(--accent);
}

.polaris-checkout-back-link:hover {
  transform: translateY(-1px);
}

.desktop-menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.desktop-menu .desktop-menu__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0 8px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.desktop-menu .desktop-menu__list > li {
  position: relative;
  flex: 0 0 auto;
}

.desktop-menu .desktop-menu__list > li > a {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  position: relative;
  color: #dbe8f5;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .24s var(--ease);
  border: 1px solid transparent;
  background: transparent;
  white-space: nowrap;
}

.desktop-menu .desktop-menu__list > li:hover > a,
.desktop-menu .desktop-menu__list > li:focus-within > a,
.desktop-menu .desktop-menu__list > li.current-menu-item > a,
.desktop-menu .desktop-menu__list > li.current-menu-ancestor > a {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 18% 0, rgba(243, 135, 47, .28), rgba(243, 135, 47, 0) 58%),
    rgba(255, 255, 255, .06);
}

.desktop-menu li {
  list-style: none;
}

.desktop-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 30px;
}

.desktop-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(225, 237, 249, .9);
  border-bottom: 1.8px solid rgba(225, 237, 249, .9);
  transform: rotate(45deg);
  position: absolute;
  right: 13px;
  top: calc(50% - 5px);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.desktop-menu .desktop-menu__list > .menu-item-has-children:hover > a::after,
.desktop-menu .desktop-menu__list > .menu-item-has-children:focus-within > a::after {
  transform: rotate(225deg);
  top: calc(50% - 1px);
}

.desktop-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 260px;
  margin: 0;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 0 0, rgba(243, 135, 47, .14), rgba(243, 135, 47, 0) 48%),
    linear-gradient(168deg, rgba(12, 28, 44, .98), rgba(8, 20, 33, .97));
  box-shadow: 0 20px 40px rgba(2, 9, 16, .48);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  z-index: 1200;
}

.desktop-menu li:hover > .sub-menu,
.desktop-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-menu .sub-menu .sub-menu {
  left: calc(100% + 8px);
  top: -10px;
  transform: translateX(8px);
}

.desktop-menu .sub-menu li:hover > .sub-menu,
.desktop-menu .sub-menu li:focus-within > .sub-menu {
  transform: translateX(0);
}

.desktop-menu .sub-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 12px;
  padding: 9px 12px;
  color: rgba(233, 243, 251, .92);
  font-size: .88rem;
  border: 1px solid transparent;
  transition: .2s var(--ease);
  line-height: 1.35;
}

.desktop-menu .sub-menu > li:hover > a,
.desktop-menu .sub-menu > li:focus-within > a,
.desktop-menu .sub-menu > li.current-menu-item > a {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.desktop-menu .sub-menu .menu-item-has-children > a::after {
  transform: rotate(-45deg);
  right: 12px;
  top: calc(50% - 4px);
}

.desktop-menu .sub-menu .menu-item-has-children:hover > a::after,
.desktop-menu .sub-menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(135deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.header-icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .12);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #111;
  font-size: .68rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: #fff;
  transition: transform .22s var(--ease), opacity .2s var(--ease);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(5.8px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-5.8px) rotate(-45deg);
}

.polaris-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2100;
}

.polaris-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 16, .54);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .24s var(--ease);
}

.polaris-mobile-menu__panel {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: clamp(16px, 4vw, 24px);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .24), rgba(243, 135, 47, 0) 46%),
    radial-gradient(circle at 0 100%, rgba(48, 99, 169, .2), rgba(48, 99, 169, 0) 50%),
    linear-gradient(160deg, rgba(10, 24, 39, .98), rgba(6, 16, 28, .98));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.polaris-mobile-menu.is-open .polaris-mobile-menu__backdrop {
  opacity: 1;
}

.polaris-mobile-menu.is-open .polaris-mobile-menu__panel {
  opacity: 1;
  transform: translateY(0);
}

.polaris-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.polaris-mobile-menu__brand {
  display: grid;
  gap: 3px;
}

.polaris-mobile-menu__brand strong {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 700;
}

.polaris-mobile-menu__brand span {
  color: rgba(218, 231, 247, .78);
  font-size: .78rem;
}

.polaris-mobile-menu__close {
  flex: 0 0 auto;
}

.polaris-mobile-menu__nav {
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}

.polaris-mobile-menu__list,
.polaris-mobile-menu__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.polaris-mobile-menu__list {
  display: grid;
  gap: 8px;
}

.polaris-mobile-menu__list > li {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  padding: 4px;
  opacity: 0;
  transform: translateY(8px);
}

.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li {
  animation: mobile-menu-item-in .42s var(--ease) forwards;
}

.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(1) { animation-delay: .03s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(2) { animation-delay: .06s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(3) { animation-delay: .09s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(4) { animation-delay: .12s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(5) { animation-delay: .15s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(6) { animation-delay: .18s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(7) { animation-delay: .21s; }
.polaris-mobile-menu.is-open .polaris-mobile-menu__list > li:nth-child(8) { animation-delay: .24s; }

.polaris-mobile-menu__list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 12px;
  color: #eef4fb;
  font-size: .94rem;
  font-weight: 500;
}

.polaris-mobile-menu__list > li > a {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: .01em;
}

.polaris-mobile-menu__list li.has-mobile-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.polaris-mobile-menu__list li.has-mobile-toggle > .sub-menu {
  grid-column: 1 / -1;
}

.polaris-mobile-menu__list .sub-menu {
  display: grid;
  gap: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 10px;
  transition: max-height .3s var(--ease), opacity .2s var(--ease), margin-top .24s var(--ease);
}

.polaris-mobile-menu__list li.is-open > .sub-menu {
  opacity: 1;
  max-height: 720px;
  margin-top: 4px;
}

.polaris-mobile-menu__list .sub-menu a {
  min-height: 40px;
  font-size: .9rem;
  color: rgba(226, 238, 250, .9);
  background: rgba(255, 255, 255, .03);
}

.polaris-mobile-menu__list .sub-menu a:hover,
.polaris-mobile-menu__list .sub-menu li.current-menu-item > a {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.polaris-mobile-menu__submenu-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  transition: .2s var(--ease);
}

.polaris-mobile-menu__submenu-toggle i {
  font-size: .78rem;
  transition: transform .2s var(--ease);
}

.polaris-mobile-menu__list li.is-open > .polaris-mobile-menu__submenu-toggle i {
  transform: rotate(180deg);
}

.polaris-mobile-menu__footer {
  display: grid;
  gap: 10px;
}

.polaris-mobile-menu__support-btn {
  min-height: 50px;
  border-radius: 15px;
  width: 100%;
  font-weight: 700;
  gap: 10px;
}

.polaris-mobile-menu__social {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.polaris-mobile-menu__social-link {
  min-height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: .74rem;
  color: rgba(233, 242, 251, .92);
  transition: .2s var(--ease);
}

.polaris-mobile-menu__social-link i {
  font-size: 1.15rem;
}

.polaris-mobile-menu__social-link:hover {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .11);
  transform: translateY(-1px);
}

@keyframes mobile-menu-item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 901px) {
  .polaris-mobile-menu {
    display: none !important;
  }
}

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 6;
}

.hero__track,
.hero__slide {
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 20px;
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8, 16, 26, .72);
  color: #fff;
  cursor: pointer;
  z-index: 4;
}

.hero__nav--prev {
  left: 14px;
}

.hero__nav--next {
  right: 14px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: transparent;
  cursor: pointer;
}

.hero__dot.is-active {
  width: 28px;
  border-color: var(--accent);
  background: var(--accent);
}

.cat-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cat-item {
  --cat-hue: 220;
  min-width: 0;
  min-height: 250px;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid hsla(var(--cat-hue), 72%, 82%, 0.22);
  background:
    radial-gradient(92% 130% at 10% 0%, hsla(calc(var(--cat-hue) - 20), 78%, 58%, 0.34), transparent 55%),
    radial-gradient(80% 100% at 100% 100%, hsla(calc(var(--cat-hue) + 12), 74%, 54%, 0.22), transparent 62%),
    linear-gradient(160deg, rgba(9, 24, 40, 0.96), rgba(7, 19, 32, 0.96));
  box-shadow: 0 18px 34px rgba(2, 8, 15, 0.45);
  display: grid;
  grid-template-rows: 142px minmax(0, 1fr);
  gap: 11px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.cat-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.cat-item:hover {
  transform: translateY(-4px);
  border-color: hsla(var(--cat-hue), 88%, 74%, 0.45);
  box-shadow: 0 22px 40px rgba(2, 8, 15, 0.52);
  filter: saturate(1.1);
}

.cat-item__media {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  overflow: hidden;
  display: grid;
  place-items: center;
}

.cat-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.cat-item:hover .cat-item__media img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.cat-item__media-fallback {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, .94);
  background: hsla(var(--cat-hue), 78%, 62%, 0.35);
  border: 1px solid hsla(var(--cat-hue), 88%, 78%, 0.4);
}

.cat-item__content {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
}

.cat-item__name {
  font-weight: 680;
  font-size: clamp(1.02rem, 1.3vw, 1.24rem);
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-item__desc {
  color: rgba(218, 232, 246, 0.74);
  font-size: .8rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-item__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cat-item__count {
  color: #d7e7f8;
  font-size: .78rem;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  width: fit-content;
}

.cat-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: hsla(var(--cat-hue), 100%, 82%, 1);
}

.product-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.p-card {
  scroll-snap-align: start;
}

.p-card {
  width: 228px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  flex: 0 0 auto;
}

.p-card__media {
  position: relative;
  display: block;
  padding: 10px;
}

.p-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(243, 135, 47, .18);
  color: #ffd8be;
  border: 1px solid rgba(243, 135, 47, .38);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
}

.p-card__body {
  padding: 12px;
  display: grid;
  gap: 9px;
}

.p-card__title {
  font-weight: 600;
  line-height: 1.3;
  min-height: 36px;
}

.p-card__price {
  color: #fff;
}

.p-card__price ins {
  color: var(--accent);
  text-decoration: none;
}

.p-card__price del {
  color: var(--muted);
  margin-right: 6px;
}

.p-card__cta {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--accent);
  color: #131313;
  font-weight: 600;
  cursor: pointer;
}

.p-card__cta--disabled {
  background: rgba(255, 255, 255, .12);
  color: var(--muted);
}

.p-card__cart-actions {
  display: block;
}

.p-card__qty {
  min-height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(243, 135, 47, 0.35);
  background: rgba(243, 135, 47, 0.12);
  padding: 4px;
}

.p-card__qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 16, 26, 0.62);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.p-card__qty-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.p-card__qty-center {
  flex: 1 1 auto;
  text-align: center;
  line-height: 1.05;
}

.p-card__qty-label {
  display: block;
  color: rgba(238, 244, 251, 0.85);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}

.p-card__qty-value {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.polaris-catalog-page {
  padding: 18px 0 36px;
  display: grid;
  gap: 14px;
}

.polaris-catalog-hero {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 0 0, rgba(243, 135, 47, .2), rgba(243, 135, 47, 0) 42%),
    linear-gradient(152deg, rgba(13, 30, 49, .96), rgba(7, 18, 31, .96));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.25fr);
  min-height: 280px;
}

.polaris-catalog-hero__visual {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .01));
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.polaris-catalog-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaris-catalog-hero__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(230, 239, 248, .9);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.polaris-catalog-hero__content {
  padding: clamp(18px, 2vw, 28px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.polaris-catalog-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(213, 228, 244, .82);
  font-size: .84rem;
}

.polaris-catalog-breadcrumbs a {
  color: rgba(213, 228, 244, .9);
}

.polaris-catalog-breadcrumbs strong {
  color: #fff;
}

.polaris-catalog-breadcrumbs a:hover {
  color: #fff;
}

.polaris-catalog-hero h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.2;
}

.polaris-catalog-hero p {
  margin: 0;
  color: rgba(216, 231, 247, .84);
  line-height: 1.55;
  max-width: 62ch;
}

.polaris-catalog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polaris-catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(239, 246, 253, .95);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 12px;
}

.polaris-catalog-chip i {
  color: #ffd39f;
}

.polaris-catalog-toolbar {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.polaris-catalog-toolbar__result {
  color: rgba(214, 229, 245, .88);
  font-size: .9rem;
}

.polaris-catalog-toolbar .woocommerce-result-count {
  margin: 0;
}

.polaris-catalog-toolbar .woocommerce-ordering {
  margin: 0;
}

.polaris-catalog-toolbar .woocommerce-ordering select {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(6, 16, 28, .88);
  color: #eef5fc;
  padding: 0 16px;
}

.polaris-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.polaris-catalog-grid .p-card {
  width: auto;
  min-width: 0;
  height: 100%;
}

.polaris-catalog-grid .p-card__title {
  min-height: 44px;
}

.polaris-catalog-page .woocommerce-pagination {
  margin-top: 8px;
}

.polaris-catalog-page .woocommerce-pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polaris-catalog-page .woocommerce-pagination ul.page-numbers li {
  border: 0;
  float: none;
}

.polaris-catalog-page .woocommerce-pagination .page-numbers {
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  color: rgba(229, 239, 250, .95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
}

.polaris-catalog-page .woocommerce-pagination .page-numbers.current,
.polaris-catalog-page .woocommerce-pagination .page-numbers:hover {
  background: var(--accent);
  color: #17212f;
  border-color: transparent;
}

.polaris-catalog-page .woocommerce-info,
.polaris-catalog-page .woocommerce-message,
.polaris-catalog-page .woocommerce-error {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 20, 32, .84);
  color: rgba(231, 241, 251, .95);
  margin: 0;
  padding: 12px 14px;
}

.polaris-catalog-page .woocommerce-info::before,
.polaris-catalog-page .woocommerce-message::before,
.polaris-catalog-page .woocommerce-error::before {
  color: #ffd9b2;
}

@media (max-width: 1100px) {
  .polaris-catalog-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .polaris-catalog-hero__visual {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

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

@media (max-width: 780px) {
  .polaris-catalog-page {
    padding-bottom: calc(var(--bottom-stack-h) + 22px);
  }

  .polaris-catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .polaris-catalog-toolbar .woocommerce-ordering {
    width: 100%;
  }

  .polaris-catalog-toolbar .woocommerce-ordering select {
    width: 100%;
  }

  .polaris-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .polaris-catalog-hero {
    border-radius: 18px;
  }

  .polaris-catalog-hero__visual {
    min-height: 180px;
  }

  .polaris-catalog-hero__content {
    padding: 14px;
    gap: 10px;
  }

  .polaris-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .polaris-catalog-grid .p-card__media {
    padding: 8px;
  }

  .polaris-catalog-grid .p-card__body {
    padding: 10px;
    gap: 8px;
  }
}

.polaris-search-overlay,
.polaris-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.polaris-search-overlay {
  display: grid;
  place-items: start center;
  background: rgba(3, 8, 14, .56);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  padding: 16px;
}

.polaris-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.polaris-search-panel {
  width: min(760px, 100%);
  margin-top: 68px;
  background: rgba(11, 22, 36, .95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transform: translateY(10px);
  opacity: 0;
  transition: .25s var(--ease);
}

.polaris-search-overlay.is-open .polaris-search-panel {
  transform: translateY(0);
  opacity: 1;
}

.polaris-search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.polaris-search-heading {
  font-weight: 700;
}

.polaris-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px;
}

.polaris-search-form input[type="search"] {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  padding: 0 14px;
}

.polaris-search-results {
  max-height: 56vh;
  overflow: auto;
  padding: 6px 10px 12px;
}

.search-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
}

.search-item:hover {
  background: rgba(255, 255, 255, .05);
}

.search-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-title {
  font-weight: 600;
}

.search-meta,
.search-empty {
  color: var(--muted);
  font-size: .88rem;
}

.search-price {
  color: var(--accent);
  font-weight: 600;
}

.polaris-drawer.hidden {
  display: none;
}

.polaris-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, .55);
  backdrop-filter: blur(8px);
}

.polaris-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: rgba(11, 22, 36, .98);
  border-left: 1px solid var(--border);
  transform: translateX(20px);
  opacity: 0;
  transition: .25s var(--ease);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.polaris-drawer.is-open .polaris-drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

.polaris-drawer__top,
.polaris-drawer__bottom {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.polaris-drawer__bottom {
  border-bottom: 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 22, 36, 0.96), rgba(11, 22, 36, 1));
  position: relative;
  z-index: 2;
}

.polaris-drawer__title {
  font-weight: 700;
}

.polaris-freeship {
  margin: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  padding: 12px;
}

.polaris-freeship__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.polaris-freeship__meta {
  color: var(--muted);
  font-size: .82rem;
  text-align: right;
}

.polaris-freeship__bar {
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.polaris-freeship__fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.polaris-freeship.is-done .polaris-freeship__fill {
  background: linear-gradient(90deg, #14b86b, #35d58a);
}

.polaris-drawer__body {
  padding: 10px;
  overflow: auto;
}

.polaris-minicart-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  padding: 10px;
  margin-bottom: 10px;
}

.polaris-minicart-content {
  min-width: 0;
}

.polaris-minicart-thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.polaris-minicart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.polaris-minicart-title {
  font-weight: 600;
}

.polaris-minicart-meta {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-end;
}

.polaris-minicart-price {
  min-width: 0;
}

.polaris-minicart-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.polaris-minicart-total {
  margin: 6px 4px 2px;
  color: var(--muted);
  font-size: .92rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 6px;
}

.qty-stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
}

.polaris-minicart-remove {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(243, 135, 47, 0.45);
  background: rgba(243, 135, 47, 0.12);
  color: #ffd7bd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s var(--ease);
}

.polaris-minicart-remove:hover {
  background: rgba(243, 135, 47, 0.22);
  color: #fff0e4;
}

.polaris-minicart-summary {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  padding: 10px 12px;
  margin-bottom: 12px;
}

.polaris-minicart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .9rem;
  padding: 3px 0;
}

.polaris-minicart-summary__row strong {
  color: #eaf2fb;
  font-weight: 600;
}

.polaris-minicart-summary__row--total {
  margin-top: 3px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, .12);
  font-size: 1rem;
}

.polaris-minicart-summary__row--total strong {
  color: var(--accent);
  font-size: 1.04rem;
}

.polaris-toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  bottom: calc(var(--bottom-stack-h) + 12px);
  min-width: min(500px, 90vw);
  background: rgba(7, 14, 22, .95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 2600;
  opacity: 0;
  transition: .2s var(--ease);
}

.polaris-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer {
  margin-top: 44px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(9, 20, 33, .93) 0%, rgba(7, 15, 26, .98) 100%);
}

.footer .container {
  padding: 28px 0 22px;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 30px);
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(80, 123, 189, .18) 0%, rgba(80, 123, 189, 0) 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(243, 135, 47, .2) 0%, rgba(243, 135, 47, 0) 54%),
    rgba(10, 22, 36, .86);
  box-shadow: 0 20px 42px rgba(2, 6, 12, .38);
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 36%);
  opacity: .55;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) minmax(190px, 1fr) minmax(190px, 1fr) minmax(210px, .95fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-column {
  min-width: 0;
}

.footer-column--about {
  display: grid;
  gap: 14px;
}

.footer h4 {
  margin: 0 0 12px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: .96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f0f6ff;
}

.footer-copy {
  margin: 0;
  color: rgba(218, 230, 245, .92);
  line-height: 1.6;
  font-size: .95rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #e8f1fb;
  font-size: .84rem;
  font-weight: 600;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.footer-social i {
  font-size: 1.02rem;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .14);
}

.footer-social--facebook i {
  color: #7ea9ff;
}

.footer-social--instagram i {
  color: #ff8ac6;
}

.footer-social--youtube i {
  color: #ff7f7f;
}

.footer-social--whatsapp i {
  color: #74e59e;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: inline-block;
  color: rgba(207, 221, 236, .9);
  font-size: .92rem;
  line-height: 1.45;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-column--etbis {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-etbis-link {
  display: inline-flex;
  width: min(180px, 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 26px rgba(4, 10, 18, .3);
}

.footer-etbis-link img {
  width: 100%;
  height: auto;
}

.footer-etbis-text {
  font-size: .83rem;
  font-weight: 600;
  color: rgba(240, 247, 255, .95);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(236, 244, 255, .94);
}

.footer-payment i {
  font-size: 1.32rem;
}

.footer-payment--troy span {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.footer-quick-menu {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  position: relative;
  z-index: 1;
}

.footer-quick-menu h4 {
  margin-bottom: 10px;
}

.footer-quick-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-quick-menu__list li {
  margin: 0;
}

.footer-quick-menu__list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  color: rgba(230, 241, 253, .96);
  font-size: .84rem;
  font-weight: 600;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.footer-quick-menu__list a:hover {
  border-color: rgba(243, 135, 47, .62);
  background: rgba(243, 135, 47, .2);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: rgba(180, 198, 218, .94);
  font-size: .84rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}

@media (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-column--etbis {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .footer .container {
    padding: 22px 0 18px;
  }

  .footer-shell {
    border-radius: 20px;
    padding: 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-social {
    min-height: 38px;
    padding: 0 12px;
  }

  .footer-quick-menu {
    margin-top: 18px;
    padding-top: 14px;
  }

  .footer-quick-menu__list {
    gap: 8px;
  }

  .footer-quick-menu__list a {
    min-height: 34px;
    padding: 0 12px;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-social span {
    display: none;
  }

  .footer-social {
    width: 38px;
    padding: 0;
  }
}

.bottom-freeship {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--bottom-nav-h) - 1px);
  z-index: 1210;
  display: none;
  pointer-events: none;
}

.bottom-freeship__tab {
  position: absolute;
  left: 50%;
  top: -31px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(243, 135, 47, 0.42);
  background: linear-gradient(150deg, rgba(243, 135, 47, 0.96), rgba(233, 118, 42, 0.94));
  color: #171717;
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  padding: 5px 12px;
  max-width: min(92vw, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(243, 135, 47, 0.32);
  pointer-events: auto;
}

.bottom-freeship__tab span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-freeship__panel {
  width: min(calc(100% - 16px), 640px);
  margin: 0 auto;
  border-radius: 14px 14px 0 0;
  border: 1px solid transparent;
  border-bottom: 0;
  background: rgba(9, 19, 31, 0.96);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.24);
  max-height: 0;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: max-height .26s var(--ease), opacity .2s var(--ease), transform .26s var(--ease), padding .26s var(--ease), border-color .26s var(--ease);
  pointer-events: auto;
}

.bottom-freeship.is-open .bottom-freeship__panel {
  max-height: 110px;
  padding: 8px 12px 10px;
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 255, 255, .12);
}

.bottom-freeship__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bottom-freeship__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 650;
  color: #eaf3fc;
}

.bottom-freeship__title i {
  color: #ffd2ac;
}

.bottom-freeship__close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #d9e8f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bottom-freeship__meta {
  margin-top: 4px;
  color: rgba(214, 230, 245, .86);
  font-size: .79rem;
  line-height: 1.35;
}

.bottom-freeship__bar {
  margin-top: 7px;
  background: rgba(255, 255, 255, .11);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.bottom-freeship__fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.bottom-freeship.is-done .bottom-freeship__fill {
  background: linear-gradient(90deg, #14b86b, #35d58a);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  height: var(--bottom-nav-h);
  display: none;
  align-items: center;
  justify-content: space-around;
  background: rgba(9, 19, 31, .95);
  border-top: 1px solid var(--border);
}

.bottom-nav a {
  width: 20%;
  display: grid;
  place-items: center;
  gap: 4px;
  font-size: .68rem;
  color: var(--muted);
  text-align: center;
}

.bottom-nav a span {
  white-space: nowrap;
}

.bottom-nav a i {
  font-size: 1.08rem;
}

.bottom-nav__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav .bottom-nav__icon-wrap .cart-count {
  top: -8px;
  right: -10px;
  width: 16px;
  height: 16px;
  font-size: .6rem;
}

.bottom-nav a.is-active,
.bottom-nav a:hover {
  color: var(--accent);
}

.cart-bump {
  animation: cartBump .45s var(--ease);
}

@keyframes cartBump {
  0% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.pd-shell {
  padding: 22px 0 28px;
}

.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.pd-gallery,
.pd-info,
.pd-tabs {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .03);
  min-width: 0;
}

.pd-gallery {
  padding: 14px;
  overflow: hidden;
}

.pd-gallery__viewer {
  position: relative;
  border-radius: 18px;
  min-height: 440px;
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 135, 47, .12), transparent 36%),
    rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pd-gallery__slide {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  display: none;
  cursor: zoom-in;
}

.pd-gallery__slide.is-active {
  display: block;
}

.pd-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8, 16, 26, .75);
  color: #fff;
  cursor: pointer;
  z-index: 3;
}

.pd-gallery__nav--prev {
  left: 12px;
}

.pd-gallery__nav--next {
  right: 12px;
}

.pd-gallery__thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
}

.pd-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.pd-gallery__thumb {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 4px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pd-gallery__thumb.is-active {
  border-color: rgba(243, 135, 47, .72);
  box-shadow: 0 0 0 1px rgba(243, 135, 47, .5) inset;
}

.pd-info {
  padding: 18px;
}

.pd-kicker {
  color: #c8d9ec;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pd-title {
  margin: 8px 0 10px;
  line-height: 1.2;
  font-size: clamp(1.22rem, 2vw, 1.9rem);
}

.pd-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-price {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 700;
}

.pd-price ins {
  color: var(--accent);
  text-decoration: none;
}

.pd-price del {
  color: var(--muted);
  font-size: .95rem;
  margin-right: 8px;
}

.pd-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pd-rating .star-rating {
  margin: 0;
}

.pd-shortdesc {
  margin-top: 10px;
  color: rgba(238, 244, 251, 0.85);
  font-size: .95rem;
  line-height: 1.5;
}

.pd-wa {
  margin-top: 12px;
  width: 100%;
  gap: 8px;
}

.pd-wa i {
  color: #1fa754;
}

.pd-family {
  margin-top: 16px;
}

.pd-family__lead {
  margin-bottom: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: #dbe8f5;
  font-weight: 600;
}

.pd-family__list {
  display: grid;
  gap: 10px;
}

.pd-variant {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  padding: 10px 12px;
}

.pd-variant.is-current {
  border-color: rgba(30, 195, 135, .58);
  box-shadow: 0 0 0 1px rgba(30, 195, 135, .35) inset;
}

.pd-variant__sale {
  position: absolute;
  left: 6px;
  top: 6px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: .68rem;
}

.pd-variant__current {
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 999px;
  font-size: .64rem;
  line-height: 1;
  padding: 6px 9px;
  background: #0eb188;
  color: #fff;
  font-weight: 700;
}

.pd-variant__thumb {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.pd-variant__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-variant__title {
  display: block;
  line-height: 1.28;
  font-weight: 600;
  padding-right: 8px;
}

.pd-variant__main {
  min-width: 0;
}

.pd-variant__price {
  margin-top: 4px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.pd-variant__price ins {
  color: var(--accent);
  text-decoration: none;
}

.pd-variant__price del {
  color: var(--muted);
  margin-right: 6px;
  font-size: .92rem;
}

.pd-variant__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

.pd-variant__add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #0eb188;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
}

.pd-variant__add--disabled {
  background: rgba(255, 255, 255, .14);
  cursor: not-allowed;
}

.pd-variant__qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  padding: 4px;
}

.pd-variant__qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.pd-tabs {
  margin-top: 16px;
  padding: 14px;
}

.pd-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pd-tab-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: #dbe8f5;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pd-tab-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #101010;
  font-weight: 600;
}

.pd-tab-btn__count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .22);
  font-size: .72rem;
}

.pd-tab-panel {
  display: none;
}

.pd-tab-panel.is-active {
  display: block;
}

.pd-richtext {
  color: #dce9f6;
  line-height: 1.65;
}

.pd-richtext p:first-child {
  margin-top: 0;
}

.pd-features {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.pd-feature-row {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pd-feature-row:last-child {
  border-bottom: 0;
}

.pd-feature-row span {
  color: var(--muted);
}

.pd-review-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.pd-review-score {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  padding: 14px;
}

.pd-review-score strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.pd-review-score span,
.pd-review-score small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.pd-review-bars {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  padding: 12px;
}

.pd-review-bar {
  display: grid;
  grid-template-columns: 14px 1fr 28px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.pd-review-bar:last-child {
  margin-bottom: 0;
}

.pd-review-bar__track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.pd-review-bar__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffca57, #ffa726);
}

.pd-review-bar em {
  font-style: normal;
  color: var(--muted);
  text-align: right;
}

.pd-review-list {
  display: grid;
  gap: 10px;
}

.pd-review-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, .03);
}

.pd-review-item__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pd-review-item__top span {
  color: var(--muted);
  font-size: .82rem;
}

.pd-review-item__rating .star-rating {
  margin: 7px 0 0;
}

.pd-review-item__content {
  margin-top: 8px;
  color: #dce9f6;
  line-height: 1.55;
}

.pd-review-form-wrap {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, .03);
}

.pd-review-form-wrap .comment-reply-title {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.pd-review-form-wrap form {
  display: grid;
  gap: 9px;
}

.pd-review-form-wrap input,
.pd-review-form-wrap select,
.pd-review-form-wrap textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  padding: 10px 12px;
}

.pd-review-form-wrap textarea {
  min-height: 110px;
  resize: vertical;
}

.pd-review-form-wrap .form-submit {
  margin: 0;
}

.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2800;
  display: grid;
  place-items: center;
  background: rgba(3, 8, 14, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}

.pd-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pd-lightbox__track {
  width: min(1000px, 94vw);
  height: min(84vh, 800px);
  position: relative;
}

.pd-lightbox__slide {
  width: 100%;
  height: 100%;
  display: none;
  margin: 0;
}

.pd-lightbox__slide.is-active {
  display: block;
}

.pd-lightbox__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-lightbox__close,
.pd-lightbox__nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(8, 16, 26, .72);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
}

.pd-lightbox__close {
  right: 18px;
  top: 18px;
}

.pd-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.pd-lightbox__nav--prev {
  left: 14px;
}

.pd-lightbox__nav--next {
  right: 14px;
}

.polaris-cart-page,
.polaris-checkout-page {
  padding: 22px 0 34px;
}

.polaris-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.polaris-page-head h1 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
}

.polaris-page-head p {
  margin: 6px 0 0;
  color: rgba(220, 232, 247, 0.78);
}

.polaris-page-head .btn {
  gap: 8px;
  white-space: nowrap;
}

.polaris-surface {
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 14% 10%, rgba(243, 135, 47, 0.1), transparent 36%),
    rgba(255, 255, 255, .03);
}

.polaris-cart-form {
  display: grid;
  gap: 12px;
}

.polaris-cart-items {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.polaris-cart-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 16, 26, .48);
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
}

.polaris-cart-item__thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.polaris-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.polaris-cart-item__content {
  min-width: 0;
}

.polaris-cart-item__title {
  display: block;
  font-weight: 650;
  line-height: 1.28;
}

.polaris-cart-item__unit-price {
  margin-top: 5px;
  color: rgba(226, 237, 251, .85);
}

.polaris-cart-item__unit-price ins {
  color: var(--accent);
  text-decoration: none;
}

.polaris-cart-item__meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: .84rem;
}

.polaris-cart-item__meta dl {
  margin: 0;
}

.polaris-cart-item__controls {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
}

.polaris-cart-item__subtotal {
  font-weight: 700;
  font-size: 1rem;
}

.polaris-cart-item__remove {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .05);
}

.polaris-qty {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, .06);
}

.polaris-qty button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(8, 16, 26, .7);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.polaris-qty .qty {
  width: 52px;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  text-align: center;
  padding: 0 8px;
}

.polaris-qty .screen-reader-text {
  display: none;
}

.polaris-qty--readonly {
  min-height: 36px;
  padding: 0 12px;
}

.polaris-qty--readonly span {
  font-weight: 700;
}

.polaris-cart-actions {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.polaris-cart-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.polaris-cart-coupon label {
  color: var(--muted);
  font-size: .88rem;
}

.polaris-cart-coupon .input-text {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  padding: 0 14px;
}

.polaris-cart-collaterals {
  margin-top: 2px;
}

.polaris-cart-collaterals .cart_totals {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  padding: 14px;
}

.polaris-cart-collaterals .cart_totals h2 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.polaris-cart-collaterals .shop_table {
  border: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.polaris-cart-collaterals .shop_table th,
.polaris-cart-collaterals .shop_table td {
  border-color: rgba(255, 255, 255, .08) !important;
}

.polaris-cart-collaterals .wc-proceed-to-checkout {
  margin: 12px 0 0 !important;
}

.polaris-cart-collaterals .wc-proceed-to-checkout .button,
.polaris-checkout-form #place_order {
  width: 100% !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: var(--accent) !important;
  color: #131313 !important;
  font-weight: 700 !important;
  padding: 12px 16px !important;
}

.polaris-checkout-head .polaris-checkout-summary-toggle {
  display: none;
}

.polaris-checkout-form .polaris-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 14px;
  align-items: start;
}

.polaris-checkout-main {
  min-width: 0;
}

.polaris-checkout-main #customer_details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.polaris-checkout-card {
  padding: 14px;
}

.polaris-checkout-card h2 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.polaris-checkout-side {
  padding: 14px;
  position: sticky;
  top: 84px;
  align-self: start;
}

.polaris-checkout-side h2 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.polaris-checkout-form .woocommerce-billing-fields__field-wrapper,
.polaris-checkout-form .woocommerce-shipping-fields__field-wrapper,
.polaris-checkout-form .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 8px;
}

.polaris-checkout-form .form-row {
  margin: 0;
}

.polaris-checkout-form .form-row label {
  margin-bottom: 5px;
  font-size: .85rem;
  color: #d9e7f4;
}

.polaris-checkout-form input.input-text,
.polaris-checkout-form select,
.polaris-checkout-form textarea {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  padding: 10px 12px;
}

.polaris-checkout-form textarea {
  min-height: 98px;
  resize: vertical;
}

.polaris-checkout-form .select2-container .select2-selection--single {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 42px;
}

.polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

.polaris-checkout-form #order_review table.shop_table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.polaris-checkout-form #order_review table th,
.polaris-checkout-form #order_review table td {
  border-color: rgba(255, 255, 255, .08);
}

.polaris-checkout-form #payment {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.polaris-checkout-form #payment ul.payment_methods {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.polaris-checkout-form #payment ul.payment_methods li {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 0;
}

.polaris-checkout-form #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

.polaris-checkout-form #payment div.payment_box {
  background: rgba(8, 16, 26, .7);
  color: #dce8f4;
  border-radius: 10px;
}

.polaris-checkout-form #payment div.payment_box::before {
  border-bottom-color: rgba(8, 16, 26, .7);
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(var(--bottom-stack-h) + 10px);
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 64px;
    padding: 6px 0;
  }

  .logo img {
    max-height: 30px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-icon-btn {
    width: 40px;
    height: 40px;
  }

  .polaris-mobile-menu__panel {
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .bottom-nav {
    display: flex;
  }

  .bottom-freeship {
    display: block;
  }

  .polaris-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .polaris-page-head .btn {
    width: 100%;
    justify-content: center;
  }

  .polaris-cart-items {
    padding: 8px;
  }

  .polaris-cart-item {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 8px;
  }

  .polaris-cart-item__thumb {
    width: 70px;
    height: 70px;
  }

  .polaris-cart-item__title {
    font-size: .92rem;
  }

  .polaris-cart-item__controls {
    grid-column: 1 / -1;
    justify-items: stretch;
    align-content: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .polaris-cart-item__subtotal {
    order: 3;
    margin-left: auto;
    padding-left: 8px;
    font-size: .94rem;
    white-space: nowrap;
  }

  .polaris-cart-item__remove {
    width: 32px;
    height: 32px;
  }

  .polaris-qty .qty {
    width: 46px;
  }

  .polaris-cart-actions {
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .polaris-checkout-head .polaris-checkout-summary-toggle {
    display: none;
  }

  .polaris-checkout-form .polaris-checkout-layout {
    grid-template-columns: 1fr;
  }

  .polaris-checkout-main #customer_details {
    grid-template-columns: 1fr;
  }

  .polaris-checkout-side {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    border-radius: 18px;
    transform: none;
    transition: none;
    max-height: none;
    overflow: visible;
  }

  body.woocommerce-checkout .polaris-checkout-page {
    padding-bottom: calc(var(--bottom-stack-h) + 20px);
  }

  .pd-shell {
    padding: 8px 0 20px;
  }

  .pd-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pd-gallery {
    padding: 10px;
    border-radius: 20px;
  }

  .pd-gallery__viewer,
  .pd-gallery__slide {
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-height: min(58vh, 340px);
  }

  .pd-info {
    padding: 14px;
    border-radius: 20px;
  }

  .pd-title {
    font-size: 1.2rem;
  }

  .pd-family__lead {
    font-size: .9rem;
  }

  .pd-variant {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    padding: 9px 10px;
  }

  .pd-variant__thumb {
    width: 56px;
    height: 56px;
  }

  .pd-variant__title {
    font-size: .92rem;
    line-height: 1.24;
    word-break: break-word;
  }

  .pd-variant__price {
    font-size: 1rem;
  }

  .pd-variant__add {
    width: 40px;
    height: 40px;
  }

  .pd-tabs {
    margin-top: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .pd-tabs__nav {
    position: sticky;
    top: 74px;
    z-index: 20;
    background: linear-gradient(180deg, rgba(9, 21, 34, .98), rgba(9, 21, 34, .9));
    padding-bottom: 8px;
  }

  .pd-tab-btn {
    padding: 8px 12px;
    font-size: .85rem;
  }

  .pd-review-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pd-lightbox__track {
    width: 100vw;
    height: 100vh;
    padding: 16px 10px 68px;
  }

  .pd-lightbox__close {
    right: 10px;
    top: 10px;
  }

  .pd-lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .pd-lightbox__nav--prev {
    left: 8px;
  }

  .pd-lightbox__nav--next {
    right: 8px;
  }

  .hero {
    aspect-ratio: 16 / 8;
  }

  .cat-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cat-rail::-webkit-scrollbar {
    display: none;
  }

  .cat-item {
    flex: 0 0 min(72vw, 330px);
    min-height: 236px;
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(95%, var(--container));
  }

  .trustbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px;
  }

  .hero__nav {
    width: 38px;
    height: 38px;
  }

  .p-card {
    width: clamp(164px, 70vw, 220px);
  }

  .cat-item {
    flex-basis: min(84vw, 300px);
    min-height: 224px;
  }

  .cat-item__media {
    border-radius: 13px;
  }

  .cat-item__content {
    gap: 6px;
  }

  .cat-item__name {
    font-size: 1rem;
  }

  .cat-item__desc {
    font-size: .76rem;
  }

  .cat-item__cta {
    font-size: .76rem;
  }

  .polaris-search-form {
    grid-template-columns: 1fr;
  }

  .polaris-drawer__panel {
    width: 100%;
    max-width: 100vw;
  }

  .section-title a {
    font-size: .82rem;
    white-space: nowrap;
  }

  .pd-gallery__viewer,
  .pd-gallery__slide {
    max-height: min(50vh, 280px);
  }

  .pd-gallery__thumb {
    width: 62px;
    height: 62px;
  }

  .pd-variant {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    padding: 8px;
  }

  .pd-variant__thumb {
    width: 52px;
    height: 52px;
  }

  .pd-variant__title {
    font-size: .86rem;
  }

  .pd-variant__add {
    width: 36px;
    height: 36px;
    font-size: .92rem;
  }

  .pd-variant__qty {
    padding: 3px;
    gap: 4px;
  }

  .pd-variant__qty .p-card__qty-btn {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .cat-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Checkout + Thank You Redesign */
body.woocommerce-checkout .polaris-checkout-page {
  position: relative;
}

body.woocommerce-checkout .polaris-checkout-shell {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 6% 2%, rgba(243, 135, 47, .2), transparent 30%),
    linear-gradient(135deg, rgba(9, 23, 38, .92), rgba(14, 32, 52, .86));
}

body.woocommerce-checkout .polaris-checkout-overlay {
  display: none;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon {
  width: min(92%, var(--container));
  margin: 12px auto 0;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info,
body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(140deg, rgba(24, 47, 74, .92), rgba(20, 39, 62, .88));
  color: #ebf3fb;
  padding: 12px 14px;
  margin: 0 0 10px;
}

body.woocommerce-checkout .checkout_coupon {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 18, 30, .65);
  padding: 14px;
}

body.woocommerce-checkout .checkout_coupon .form-row {
  margin: 0 0 10px;
}

body.woocommerce-checkout .checkout_coupon .form-row:last-child {
  margin-bottom: 0;
}

body.woocommerce-checkout .checkout_coupon input.input-text {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(10, 29, 49, .2);
  background: #fff;
  color: #16293d;
  padding: 10px 12px;
}

body.woocommerce-checkout .checkout_coupon .button {
  border-radius: 999px;
}

body.woocommerce-checkout .polaris-checkout-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

body.woocommerce-checkout .polaris-checkout-head__main {
  max-width: 760px;
}

body.woocommerce-checkout .polaris-checkout-head__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.woocommerce-checkout .polaris-checkout-head .polaris-checkout-head__back {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

body.woocommerce-checkout .polaris-checkout-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(243, 135, 47, .4);
  padding: 6px 12px;
  color: #ffe9d6;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.woocommerce-checkout .polaris-checkout-kicker i {
  color: var(--accent);
}

body.woocommerce-checkout .polaris-checkout-head h1 {
  margin-top: 10px;
}

body.woocommerce-checkout .polaris-checkout-steps {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.woocommerce-checkout .polaris-checkout-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  padding: 6px 12px 6px 8px;
  font-size: .81rem;
  color: rgba(220, 232, 247, .86);
}

body.woocommerce-checkout .polaris-checkout-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
}

body.woocommerce-checkout .polaris-checkout-steps li.is-active {
  border-color: rgba(243, 135, 47, .64);
  color: #fff;
  background: rgba(243, 135, 47, .13);
}

body.woocommerce-checkout .polaris-checkout-steps li.is-active span {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a2230;
}

body.woocommerce-checkout .polaris-checkout-head .polaris-checkout-summary-toggle {
  display: none;
  align-self: center;
}

body.woocommerce-checkout .polaris-checkout-form .polaris-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
  gap: 16px;
  align-items: start;
}

body.woocommerce-checkout .polaris-checkout-main {
  min-width: 0;
}

body.woocommerce-checkout .polaris-checkout-main #customer_details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.woocommerce-checkout .polaris-checkout-card {
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .15), transparent 32%),
    linear-gradient(150deg, rgba(17, 37, 58, .96), rgba(12, 29, 47, .9));
}

body.woocommerce-checkout .polaris-checkout-card__head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

body.woocommerce-checkout .polaris-checkout-card__index {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(243, 135, 47, .5);
  color: #ffe3cc;
  background: rgba(243, 135, 47, .16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
}

body.woocommerce-checkout .polaris-checkout-card h2 {
  margin: 1px 0 4px;
  font-size: 1.03rem;
}

body.woocommerce-checkout .polaris-checkout-card__head p {
  margin: 0;
  color: rgba(211, 225, 241, .78);
  font-size: .82rem;
  line-height: 1.4;
}

body.woocommerce-checkout .polaris-checkout-side {
  padding: 16px;
  position: sticky;
  top: 82px;
  align-self: start;
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0, rgba(243, 135, 47, .16), transparent 36%),
    linear-gradient(160deg, rgba(17, 36, 56, .96), rgba(10, 25, 43, .9));
}

body.woocommerce-checkout .polaris-checkout-side__handle {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  margin: -2px auto 10px;
  display: none;
}

body.woocommerce-checkout .polaris-checkout-side__head {
  margin-bottom: 12px;
}

body.woocommerce-checkout .polaris-checkout-side__head h2 {
  margin: 0;
  font-size: 1.06rem;
}

body.woocommerce-checkout .polaris-checkout-side__head p {
  margin: 6px 0 0;
  color: rgba(217, 230, 245, .78);
  font-size: .84rem;
  line-height: 1.38;
}

body.woocommerce-checkout .polaris-checkout-assurance {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

body.woocommerce-checkout .polaris-checkout-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .05);
  padding: 7px 11px;
  font-size: .82rem;
  color: rgba(234, 242, 249, .92);
}

body.woocommerce-checkout .polaris-checkout-assurance i {
  color: var(--accent);
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.woocommerce-checkout .polaris-checkout-form .form-row-first,
body.woocommerce-checkout .polaris-checkout-form .form-row-last,
body.woocommerce-checkout .polaris-checkout-form .form-row-wide {
  float: none;
  width: auto;
}

body.woocommerce-checkout .polaris-checkout-form .form-row-wide {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .polaris-checkout-form .form-row {
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(140deg, rgba(24, 46, 71, .92), rgba(17, 37, 60, .9));
}

body.woocommerce-checkout .polaris-checkout-form .form-row label {
  margin-bottom: 6px;
  font-size: .81rem;
  color: #f4f8fd;
  font-weight: 600;
  letter-spacing: .015em;
}

body.woocommerce-checkout .polaris-checkout-form input.input-text,
body.woocommerce-checkout .polaris-checkout-form select,
body.woocommerce-checkout .polaris-checkout-form textarea {
  min-height: 46px;
  border-radius: 11px;
  border: 1px solid rgba(14, 35, 58, .18);
  background: #fff;
  color: #13283f;
  padding: 10px 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

body.woocommerce-checkout .polaris-checkout-form input.input-text::placeholder,
body.woocommerce-checkout .polaris-checkout-form textarea::placeholder {
  color: #8498ab;
}

body.woocommerce-checkout .polaris-checkout-form input.input-text:focus,
body.woocommerce-checkout .polaris-checkout-form select:focus,
body.woocommerce-checkout .polaris-checkout-form textarea:focus {
  outline: 0;
  border-color: rgba(16, 108, 202, .42);
  box-shadow: 0 0 0 3px rgba(52, 145, 238, .22);
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-invalid .input-text,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-invalid select {
  border-color: rgba(209, 74, 77, .6);
  box-shadow: 0 0 0 3px rgba(209, 74, 77, .18);
}

body.woocommerce-checkout .polaris-checkout-form textarea {
  min-height: 98px;
  resize: vertical;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container .select2-selection--single {
  min-height: 46px;
  border-radius: 11px;
  border: 1px solid rgba(14, 35, 58, .18);
  background: #fff;
  color: #13283f;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #13283f;
  line-height: 44px;
  padding-left: 12px;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-shipping-fields,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-additional-fields {
  margin-top: 12px;
}

body.woocommerce-checkout .polaris-checkout-form #ship-to-different-address {
  margin: 0 0 10px;
}

body.woocommerce-checkout .polaris-checkout-form #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.woocommerce-checkout .polaris-checkout-form #ship-to-different-address input,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-terms-and-conditions-wrapper input {
  accent-color: var(--accent);
}

body.woocommerce-checkout .polaris-checkout-form #order_review table.shop_table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 18, 30, .7);
  margin: 0 !important;
}

body.woocommerce-checkout .polaris-checkout-form #order_review table th,
body.woocommerce-checkout .polaris-checkout-form #order_review table td {
  border-color: rgba(255, 255, 255, .08);
  padding: 11px 10px;
}

body.woocommerce-checkout .polaris-checkout-form #order_review .product-name {
  font-weight: 500;
  color: rgba(238, 244, 251, .95);
}

body.woocommerce-checkout .polaris-checkout-form #order_review .product-total {
  text-align: right;
  white-space: nowrap;
}

body.woocommerce-checkout .polaris-checkout-form #payment {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 18, 30, .74);
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 9px 10px 0;
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods li {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(26, 47, 71, .94), rgba(19, 39, 61, .88));
  padding: 10px 10px 6px;
  margin-bottom: 8px;
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods li:last-child {
  margin-bottom: 10px;
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods li input {
  accent-color: var(--accent);
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods li label {
  color: #eef5fc;
  font-weight: 600;
}

body.woocommerce-checkout .polaris-checkout-form #payment ul.payment_methods li img {
  max-height: 20px;
  vertical-align: middle;
}

body.woocommerce-checkout .polaris-checkout-form #payment div.payment_box {
  background: rgba(6, 16, 27, .78);
  color: #dce8f4;
  border-radius: 10px;
  margin: 8px 0 2px;
  border: 1px solid rgba(255, 255, 255, .1);
}

body.woocommerce-checkout .polaris-checkout-form #payment div.payment_box::before {
  border-bottom-color: rgba(6, 16, 27, .78);
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-privacy-policy-text {
  color: rgba(218, 230, 244, .8);
  font-size: .79rem;
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-terms-and-conditions-checkbox-text {
  color: rgba(236, 242, 250, .92);
}

body.woocommerce-checkout .polaris-checkout-form #place_order {
  margin-top: 10px;
  border-radius: 13px !important;
  background: linear-gradient(135deg, #f7a04f, #f3872f) !important;
  box-shadow: 0 10px 26px rgba(243, 135, 47, .3);
  letter-spacing: .01em;
}

body.woocommerce-checkout .polaris-checkout-form #place_order:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.polaris-thankyou-page {
  padding: 24px 0 34px;
}

.polaris-thankyou-shell {
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 8% 6%, rgba(243, 135, 47, .2), transparent 31%),
    linear-gradient(140deg, rgba(11, 27, 44, .92), rgba(8, 21, 36, .9));
  display: grid;
  gap: 14px;
}

.polaris-thankyou-hero {
  padding: 16px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.polaris-thankyou-hero.is-failed {
  background:
    radial-gradient(circle at 100% 0, rgba(217, 78, 78, .25), transparent 34%),
    linear-gradient(140deg, rgba(45, 18, 24, .94), rgba(28, 12, 18, .9));
}

.polaris-thankyou-hero__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #42d189;
}

.polaris-thankyou-hero.is-failed .polaris-thankyou-hero__icon {
  color: #f07d7d;
}

.polaris-thankyou-hero h1 {
  margin: 0;
  font-size: clamp(1.18rem, 2.3vw, 1.65rem);
}

.polaris-thankyou-hero p {
  margin: 6px 0 0;
  color: rgba(223, 233, 245, .82);
  line-height: 1.5;
}

.polaris-thankyou-hero__chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polaris-thankyou-hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 6px 10px;
  background: rgba(255, 255, 255, .05);
  font-size: .8rem;
}

.polaris-thankyou-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 14px;
}

.polaris-thankyou-card {
  padding: 15px;
  border-radius: 18px;
}

.polaris-thankyou-card h2 {
  margin: 0 0 12px;
  font-size: 1.04rem;
}

.polaris-thankyou-meta {
  margin: 0;
  display: grid;
  gap: 8px;
}

.polaris-thankyou-meta div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  padding: 9px 10px;
}

.polaris-thankyou-meta dt {
  color: rgba(204, 217, 234, .84);
}

.polaris-thankyou-meta dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.polaris-thankyou-contact {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  padding: 10px;
  display: grid;
  gap: 7px;
}

.polaris-thankyou-contact p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(233, 241, 250, .92);
}

.polaris-thankyou-contact i {
  color: var(--accent);
}

.polaris-thankyou-items {
  display: grid;
  gap: 9px;
}

.polaris-thankyou-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 8px;
}

.polaris-thankyou-item__thumb {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(7, 18, 30, .56);
}

.polaris-thankyou-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.polaris-thankyou-item__content {
  min-width: 0;
}

.polaris-thankyou-item__content a,
.polaris-thankyou-item__content span {
  display: block;
  line-height: 1.35;
  font-weight: 600;
}

.polaris-thankyou-item__content small {
  color: rgba(205, 219, 235, .82);
}

.polaris-thankyou-item__price {
  white-space: nowrap;
  font-size: .95rem;
}

.polaris-thankyou-totals {
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
}

.polaris-thankyou-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .13);
}

.polaris-thankyou-totals div:last-child {
  border-bottom: 0;
  font-weight: 700;
  font-size: 1.02rem;
}

.polaris-thankyou-totals dt,
.polaris-thankyou-totals dd {
  margin: 0;
}

.polaris-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.polaris-thankyou-actions .btn {
  min-width: 180px;
}

@media (max-width: 900px) {
  body.woocommerce-checkout .polaris-checkout-page {
    padding: 8px 0 calc(var(--bottom-stack-h) + 20px);
  }

  body.woocommerce-checkout .polaris-checkout-shell {
    border-radius: 22px;
    padding: 12px;
  }

  body.woocommerce-checkout .polaris-checkout-head {
    margin-bottom: 12px;
  }

  body.woocommerce-checkout .polaris-checkout-head__actions {
    width: 100%;
  }

  body.woocommerce-checkout .polaris-checkout-head .polaris-checkout-head__back {
    width: 100%;
    justify-content: center;
  }

  body.woocommerce-checkout .polaris-checkout-head .polaris-checkout-summary-toggle {
    display: none;
  }

  body.woocommerce-checkout .polaris-checkout-form .polaris-checkout-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.woocommerce-checkout .polaris-checkout-main #customer_details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.woocommerce-checkout .polaris-checkout-form .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .polaris-checkout-form .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .polaris-checkout-form .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout .polaris-checkout-side {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    border-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    border-right: 1px solid rgba(255, 255, 255, .12);
    transform: none;
    transition: none;
    max-height: none;
    overflow: visible;
  }

  body.woocommerce-checkout .polaris-checkout-side__handle {
    display: none;
  }

  body.woocommerce-checkout .polaris-checkout-overlay {
    display: none;
  }

  body.woocommerce-checkout .polaris-checkout-form #payment {
    margin-bottom: 6px;
  }

  .polaris-thankyou-page {
    padding: 8px 0 24px;
  }

  .polaris-thankyou-shell {
    border-radius: 22px;
    padding: 12px;
  }

  .polaris-thankyou-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .polaris-thankyou-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  body.woocommerce-checkout .polaris-checkout-kicker {
    font-size: .7rem;
    padding: 5px 10px;
  }

  body.woocommerce-checkout .polaris-checkout-steps {
    gap: 6px;
  }

  body.woocommerce-checkout .polaris-checkout-steps li {
    font-size: .74rem;
    padding: 5px 10px 5px 7px;
  }

  body.woocommerce-checkout .polaris-checkout-steps li span {
    width: 21px;
    height: 21px;
  }

  body.woocommerce-checkout .polaris-checkout-card {
    padding: 12px;
  }

  body.woocommerce-checkout .polaris-checkout-form .form-row {
    padding: 8px;
    border-radius: 14px;
  }

  body.woocommerce-checkout .polaris-checkout-form input.input-text,
  body.woocommerce-checkout .polaris-checkout-form select,
  body.woocommerce-checkout .polaris-checkout-form textarea {
    min-height: 44px;
    font-size: .95rem;
  }

  body.woocommerce-checkout .polaris-checkout-side {
    border-radius: 20px;
  }

  .polaris-thankyou-hero {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .polaris-thankyou-hero__icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .polaris-thankyou-meta div {
    grid-template-columns: 94px minmax(0, 1fr);
    padding: 8px;
  }

  .polaris-thankyou-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .polaris-thankyou-item__thumb {
    width: 58px;
    height: 58px;
  }
}

/* Checkout Fix Pass */
body.woocommerce-checkout .container.polaris-checkout-page {
  width: min(96%, 1520px);
  max-width: 1520px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon {
  display: none !important;
}

body.woocommerce-checkout .polaris-checkout-shell {
  padding: 24px;
}

body.woocommerce-checkout .polaris-checkout-form .polaris-checkout-layout {
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, .76fr);
  gap: 20px;
}

body.woocommerce-checkout .polaris-checkout-main #customer_details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.woocommerce-checkout .polaris-checkout-main #customer_details > .col-1,
body.woocommerce-checkout .polaris-checkout-main #customer_details > .col-2 {
  float: none;
  width: auto;
  margin: 0;
}

body.woocommerce-checkout .polaris-checkout-main #customer_details > .polaris-checkout-card:only-child {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .polaris-checkout-form .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .polaris-checkout-form .woocommerce-additional-fields__field-wrapper {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.woocommerce-checkout .polaris-checkout-form .form-row {
  min-width: 0;
}

body.woocommerce-checkout .polaris-checkout-form input.input-text,
body.woocommerce-checkout .polaris-checkout-form select,
body.woocommerce-checkout .polaris-checkout-form textarea {
  width: 100%;
  background: rgba(7, 18, 30, .78);
  color: #eaf2fb;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: none;
}

body.woocommerce-checkout .polaris-checkout-form input.input-text::placeholder,
body.woocommerce-checkout .polaris-checkout-form textarea::placeholder {
  color: rgba(193, 210, 227, .72);
}

body.woocommerce-checkout .polaris-checkout-form input.input-text:focus,
body.woocommerce-checkout .polaris-checkout-form select:focus,
body.woocommerce-checkout .polaris-checkout-form textarea:focus {
  border-color: rgba(243, 135, 47, .72);
  box-shadow: 0 0 0 3px rgba(243, 135, 47, .2);
}

body.woocommerce-checkout .polaris-checkout-form .select2-container {
  width: 100% !important;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container .select2-selection--single {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 18, 30, .78);
  color: #eaf2fb;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #eaf2fb;
}

body.woocommerce-checkout .polaris-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #dce8f4 transparent transparent transparent;
}

@media (max-width: 1200px) {
  body.woocommerce-checkout .polaris-checkout-form .polaris-checkout-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  }
}

@media (max-width: 900px) {
  body.woocommerce-checkout .container.polaris-checkout-page {
    width: min(96%, 720px);
  }

  body.woocommerce-checkout .polaris-checkout-shell {
    padding: 12px;
  }

  body.woocommerce-checkout .polaris-checkout-form .polaris-checkout-layout {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout .polaris-checkout-main #customer_details,
  body.woocommerce-checkout .polaris-checkout-form .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .polaris-checkout-form .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .polaris-checkout-form .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  body.woocommerce-checkout .polaris-checkout-main #customer_details > .polaris-checkout-card:only-child {
    grid-column: auto;
  }
}

/* Google Login */
.polaris-google-login {
  margin-top: 12px;
}

.polaris-google-login__button {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(145deg, rgba(19, 39, 61, .94), rgba(12, 29, 48, .92));
  color: #eef5fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: .18s var(--ease);
}

.polaris-google-login__button:hover {
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}

.polaris-google-login__button:disabled {
  opacity: .72;
  cursor: not-allowed;
}

.polaris-google-login__button.is-loading {
  filter: saturate(.8);
}

.polaris-google-login__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.polaris-google-login__icon svg {
  width: 20px;
  height: 20px;
}

.polaris-google-login__label {
  font-weight: 600;
}

.polaris-google-login__status {
  margin: 8px 2px 0;
  min-height: 18px;
  font-size: .83rem;
  color: rgba(214, 228, 244, .86);
}

.polaris-google-login__status.is-success {
  color: #76d3a0;
}

.polaris-google-login__status.is-error {
  color: #ff9797;
}

.polaris-auth-page {
  padding: 20px 0 36px;
}

.polaris-auth-shell {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 18px;
  background:
    radial-gradient(circle at 8% 0, rgba(243, 135, 47, .18), transparent 34%),
    linear-gradient(145deg, rgba(10, 25, 42, .95), rgba(11, 29, 49, .9));
}

.polaris-auth-head h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.22rem, 2.2vw, 1.9rem);
}

.polaris-auth-head p {
  margin: 0;
  color: rgba(214, 228, 244, .84);
}

.polaris-auth-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(243, 135, 47, .46);
  color: #ffe4cd;
  background: rgba(243, 135, 47, .13);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.polaris-auth-card {
  margin-top: 14px;
  padding: 16px;
}

.polaris-auth-card .woocommerce {
  width: 100%;
}

@media (max-width: 900px) {
  .polaris-auth-page {
    padding: 10px 0 22px;
  }

  .polaris-auth-shell {
    padding: 12px;
    border-radius: 20px;
  }

  .polaris-auth-card {
    margin-top: 10px;
    padding: 12px;
  }
}

/* Auth Premium UI */
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-page {
  padding: 24px 0 40px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(7, 18, 30, .96), rgba(12, 31, 51, .9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 70px rgba(0, 0, 0, .35);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::before,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::before {
  width: 460px;
  height: 460px;
  left: -190px;
  top: -170px;
  background: radial-gradient(circle, rgba(243, 135, 47, .26), rgba(243, 135, 47, 0));
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::after {
  width: 440px;
  height: 440px;
  right: -220px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(63, 143, 231, .2), rgba(63, 143, 231, 0));
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: polarisAuthFloat 8s ease-in-out infinite;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-orb--one {
  width: 190px;
  height: 190px;
  top: 20px;
  right: 16%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-orb--two {
  width: 140px;
  height: 140px;
  left: 34%;
  bottom: 20px;
  background: radial-gradient(circle, rgba(243, 135, 47, .2), rgba(243, 135, 47, 0));
  animation-delay: 1.3s;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
  animation: polarisAuthReveal .55s var(--ease) both;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand {
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(160deg, rgba(20, 40, 62, .9), rgba(11, 27, 44, .85));
  display: grid;
  align-content: start;
  gap: 14px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 54px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo img,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo .custom-logo {
  max-height: 52px;
  width: auto;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo-fallback {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-kicker {
  width: fit-content;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(243, 135, 47, .46);
  color: #ffe8d5;
  background: rgba(243, 135, 47, .16);
  padding: 7px 12px;
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-kicker i {
  color: var(--accent);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand h1 {
  margin: 0;
  line-height: 1.14;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand p {
  margin: 0;
  color: rgba(216, 230, 244, .86);
  line-height: 1.6;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust {
  margin-top: 2px;
  display: grid;
  gap: 9px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  padding: 7px 12px;
  color: rgba(237, 244, 251, .94);
  font-size: .84rem;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust i {
  color: var(--accent);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .1), rgba(243, 135, 47, 0) 38%),
    linear-gradient(160deg, rgba(17, 38, 60, .95), rgba(9, 23, 38, .9));
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-head {
  margin-bottom: 14px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-head h2 {
  margin: 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-head p {
  margin: 6px 0 0;
  color: rgba(208, 223, 240, .82);
  font-size: .88rem;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce {
  width: 100%;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-notices-wrapper {
  margin-bottom: 12px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-error,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-message,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-info {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 16, 27, .72);
  color: #eaf2fb;
  margin: 0 0 10px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-form-login-toggle,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce-form-register-toggle {
  display: none;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.login,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.register {
  position: relative;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(160deg, rgba(20, 43, 69, .9), rgba(9, 24, 40, .84));
  padding: 18px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.login::before,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.register::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .05);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .u-column1,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .u-column2 {
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .form-row {
  margin: 0 0 10px;
  padding: 0;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .form-row label {
  margin-bottom: 6px;
  font-size: .81rem;
  color: #f2f8ff;
  letter-spacing: .01em;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input.input-text,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="email"],
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="text"],
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="password"] {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(5, 15, 26, .8);
  color: #eaf2fb;
  padding: 10px 13px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input.input-text::placeholder,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="email"]::placeholder,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="text"]::placeholder,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="password"]::placeholder {
  color: rgba(195, 211, 227, .72);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input.input-text:focus,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="email"]:focus,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="text"]:focus,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="password"]:focus {
  outline: 0;
  border-color: rgba(243, 135, 47, .74);
  box-shadow: 0 0 0 3px rgba(243, 135, 47, .22);
  background: rgba(8, 19, 31, .86);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .form-row .button,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce button.button,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce a.button {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 0;
  background: linear-gradient(135deg, #f8aa5c, #f3872f);
  color: #151515;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 12px 24px rgba(243, 135, 47, .28);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .form-row .button:hover,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce button.button:hover,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce a.button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .woocommerce-form__label-for-checkbox,
body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .lost_password a {
  color: rgba(214, 228, 244, .88);
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .lost_password a:hover {
  color: #fff;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .clear {
  display: none;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .polaris-google-login {
  margin-top: 10px;
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .polaris-google-login__button {
  min-height: 46px;
  border-radius: 13px;
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, rgba(24, 49, 76, .94), rgba(14, 31, 50, .9));
}

body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .polaris-google-login__status {
  font-size: .8rem;
}

@keyframes polarisAuthReveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes polarisAuthFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-layout {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-page {
    padding: 10px 0 26px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell {
    border-radius: 30px;
    padding: 12px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
    border-radius: 24px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand {
    padding: 16px;
    gap: 10px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand h1 {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust::-webkit-scrollbar {
    display: none;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-trust span {
    white-space: nowrap;
    font-size: .78rem;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
    padding: 14px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .u-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.login,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce form.register {
    border-radius: 20px;
    padding: 14px;
  }
}

@media (max-width: 560px) {
  body:is(.page-template-page-login, .woocommerce-account) .container.polaris-auth-page {
    width: min(96%, 520px);
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell {
    border-radius: 28px 28px 22px 22px;
    padding: 10px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::before {
    width: 300px;
    height: 300px;
    left: -120px;
    top: -120px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-shell::after {
    width: 280px;
    height: 280px;
    right: -140px;
    bottom: -120px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
    border-radius: 22px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand {
    padding: 14px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo img,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-brand__logo .custom-logo {
    max-height: 42px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-head {
    margin-bottom: 10px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card {
    padding: 12px;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce h2 {
    font-size: 1rem;
  }

  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input.input-text,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="email"],
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="text"],
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce input[type="password"],
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .polaris-google-login__button,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce .form-row .button,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce button.button,
  body:is(.page-template-page-login, .woocommerce-account) .polaris-auth-card .woocommerce a.button {
    min-height: 44px;
    border-radius: 12px;
  }
}

/* Auth Form Refresh */
body.polaris-auth-screen .polaris-auth-card .woocommerce .u-columns {
  display: block;
  margin: 0;
}

body.polaris-auth-screen .polaris-auth-card .woocommerce .u-column1,
body.polaris-auth-screen .polaris-auth-card .woocommerce .u-column2 {
  float: none;
  width: 100%;
  margin: 0;
}

body.polaris-auth-screen .polaris-auth-forms {
  display: grid;
  gap: 12px;
}

body.polaris-auth-screen .polaris-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 25, 41, .62);
}

body.polaris-auth-screen .polaris-auth-tab {
  min-height: 38px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(231, 241, 251, .92);
  font-weight: 600;
  cursor: pointer;
  transition: .2s var(--ease);
}

body.polaris-auth-screen .polaris-auth-tab.is-active {
  background: linear-gradient(135deg, #f8aa5c, #f3872f);
  color: #182230;
  box-shadow: 0 10px 22px rgba(243, 135, 47, .34);
}

body.polaris-auth-screen .polaris-auth-panel {
  display: none;
}

body.polaris-auth-screen .polaris-auth-panel.is-active {
  display: block;
}

body.polaris-auth-screen .polaris-auth-card .woocommerce form.login,
body.polaris-auth-screen .polaris-auth-card .woocommerce form.register {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .08), rgba(243, 135, 47, 0) 38%),
    linear-gradient(165deg, rgba(14, 34, 54, .95), rgba(8, 21, 36, .93));
  box-shadow: 0 18px 36px rgba(4, 10, 18, .28);
  color: #eaf2fb;
  padding: 18px;
}

body.polaris-auth-screen .polaris-auth-panel__title {
  margin: 0 0 14px;
  text-align: center;
  color: #f2f8ff;
  font-size: 1.18rem;
  font-weight: 700;
}

body.polaris-auth-screen .polaris-auth-field {
  position: relative;
  margin-bottom: 10px;
}

body.polaris-auth-screen .polaris-auth-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(215, 229, 244, .82);
  font-size: .86rem;
  pointer-events: none;
  z-index: 2;
}

body.polaris-auth-screen .polaris-auth-field input.input-text,
body.polaris-auth-screen .polaris-auth-field input[type="email"],
body.polaris-auth-screen .polaris-auth-field input[type="text"],
body.polaris-auth-screen .polaris-auth-field input[type="password"] {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(5, 16, 28, .82);
  color: #ecf4fd;
  padding: 10px 14px 10px 42px;
}

body.polaris-auth-screen .polaris-auth-field input.input-text::placeholder,
body.polaris-auth-screen .polaris-auth-field input[type="email"]::placeholder,
body.polaris-auth-screen .polaris-auth-field input[type="text"]::placeholder,
body.polaris-auth-screen .polaris-auth-field input[type="password"]::placeholder {
  color: rgba(196, 211, 228, .75);
}

body.polaris-auth-screen .polaris-auth-field input.input-text:focus,
body.polaris-auth-screen .polaris-auth-field input[type="email"]:focus,
body.polaris-auth-screen .polaris-auth-field input[type="text"]:focus,
body.polaris-auth-screen .polaris-auth-field input[type="password"]:focus {
  border-color: rgba(243, 135, 47, .82);
  box-shadow: 0 0 0 3px rgba(243, 135, 47, .22);
  background: rgba(8, 20, 34, .9);
}

body.polaris-auth-screen .polaris-auth-row {
  margin-bottom: 10px;
}

body.polaris-auth-screen .polaris-auth-row--remember {
  margin-bottom: 8px;
}

body.polaris-auth-screen .polaris-auth-row--remember .woocommerce-form__label-for-checkbox {
  color: rgba(221, 234, 248, .88);
  font-size: .9rem;
}

body.polaris-auth-screen .polaris-auth-row--submit .button,
body.polaris-auth-screen .polaris-auth-row--submit button.button,
body.polaris-auth-screen .polaris-auth-row--submit .woocommerce-button {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #f8aa5c, #f3872f);
  color: #1b1f28;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(243, 135, 47, .3);
}

body.polaris-auth-screen .polaris-auth-card .woocommerce .lost_password {
  margin: 6px 0 0;
  text-align: center;
}

body.polaris-auth-screen .polaris-auth-card .woocommerce .lost_password a {
  color: rgba(227, 238, 249, .88);
  font-size: .8rem;
  text-decoration: underline;
}

body.polaris-auth-screen .polaris-auth-help {
  margin: 8px 0 4px;
  color: rgba(205, 220, 236, .86);
  font-size: .88rem;
}

body.polaris-auth-screen .polaris-auth-card .woocommerce .woocommerce-privacy-policy-text,
body.polaris-auth-screen .polaris-auth-card .woocommerce .woocommerce-privacy-policy-text p,
body.polaris-auth-screen .polaris-auth-privacy,
body.polaris-auth-screen .polaris-auth-privacy p {
  margin: 0 0 10px;
  color: rgba(211, 224, 239, .86);
  font-size: .86rem;
  line-height: 1.5;
}

body.polaris-auth-screen .polaris-auth-card .woocommerce .woocommerce-privacy-policy-text a {
  color: #f8aa5c;
  text-decoration: underline;
}

body.polaris-auth-screen .polaris-auth-switch-note {
  margin: 10px 0 0;
  text-align: center;
}

body.polaris-auth-screen .polaris-auth-switch-btn {
  border: 0;
  background: none;
  color: rgba(221, 234, 248, .9);
  font-size: .85rem;
  text-decoration: underline;
  cursor: pointer;
}

body.polaris-auth-screen .polaris-auth-switch-btn:hover {
  color: #f8aa5c;
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login__button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, rgba(20, 44, 70, .94), rgba(12, 28, 45, .92));
  color: #edf4fc;
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login__button:hover {
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(0);
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login__button[disabled] {
  background: linear-gradient(145deg, rgba(20, 37, 55, .86), rgba(12, 24, 38, .86));
  border-color: rgba(255, 255, 255, .12);
  color: rgba(184, 203, 223, .62);
  cursor: not-allowed;
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login__status {
  color: rgba(205, 220, 236, .82);
  font-size: .8rem;
}

body.polaris-auth-screen .polaris-auth-card .polaris-google-login__status.is-info {
  color: rgba(205, 220, 236, .82);
}

@media (max-width: 560px) {
  body.polaris-auth-screen .polaris-auth-tabs {
    gap: 6px;
    padding: 5px;
  }

  body.polaris-auth-screen .polaris-auth-card .woocommerce form.login,
  body.polaris-auth-screen .polaris-auth-card .woocommerce form.register {
    border-radius: 22px;
    padding: 14px;
  }

  body.polaris-auth-screen .polaris-auth-panel__title {
    font-size: 1.1rem;
  }
}
/* Cart Refresh 2026 */
body.woocommerce-cart .polaris-cart-template-content {
  padding: 0;
}

body.woocommerce-cart .header {
  display: block;
}

body.woocommerce-cart .polaris-cart-page {
  padding: 24px 0 34px;
}

body.woocommerce-cart .polaris-cart-shell {
  display: grid;
  gap: 14px;
}

body.woocommerce-cart .polaris-cart-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 0 0, rgba(243, 135, 47, .2), rgba(243, 135, 47, 0) 46%),
    linear-gradient(160deg, rgba(16, 33, 51, .96), rgba(8, 18, 31, .95));
  padding: 18px;
}

body.woocommerce-cart .polaris-cart-top__left h1 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

body.woocommerce-cart .polaris-cart-top__left p {
  margin: 6px 0 0;
  color: rgba(216, 231, 248, .8);
}

body.woocommerce-cart .polaris-cart-top__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  padding: 6px 11px;
  color: rgba(236, 244, 252, .95);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

body.woocommerce-cart .polaris-cart-top__kicker i {
  color: #ffd39f;
}

body.woocommerce-cart .polaris-cart-top__back {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

body.woocommerce-cart .polaris-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .85fr);
  gap: 14px;
  align-items: start;
}

body.woocommerce-cart .polaris-cart-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

body.woocommerce-cart .polaris-cart-items {
  padding: 10px;
  display: grid;
  gap: 10px;
}

body.woocommerce-cart .polaris-cart-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(7, 15, 25, .58);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 11px;
}

body.woocommerce-cart .polaris-cart-item__thumb {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

body.woocommerce-cart .polaris-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.woocommerce-cart .polaris-cart-item__content {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}

body.woocommerce-cart .polaris-cart-item__title {
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.28;
}

body.woocommerce-cart .polaris-cart-item__unit-price {
  color: rgba(219, 232, 247, .86);
  font-size: .9rem;
}

body.woocommerce-cart .polaris-cart-item__unit-price strong {
  margin-left: 4px;
  font-weight: 600;
  color: #fff;
}

body.woocommerce-cart .polaris-cart-item__meta {
  color: rgba(194, 211, 229, .85);
  font-size: .82rem;
}

body.woocommerce-cart .polaris-cart-item__meta dl {
  margin: 0;
}

body.woocommerce-cart .polaris-cart-item__controls {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 7px;
}

body.woocommerce-cart .polaris-cart-item__subtotal-label {
  color: rgba(198, 215, 233, .76);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.woocommerce-cart .polaris-cart-item__subtotal {
  font-weight: 700;
  font-size: 1rem;
}

body.woocommerce-cart .polaris-cart-item__remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .05);
  color: #ffffff;
  font-size: .78rem;
}

body.woocommerce-cart .polaris-cart-item__remove:hover {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

body.woocommerce-cart .polaris-cart-item__remove.remove,
body.woocommerce-cart .polaris-cart-item__remove.remove:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .05) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  font-size: 0 !important;
}

body.woocommerce-cart .polaris-cart-item__remove.remove:hover {
  background: rgba(255, 255, 255, .12) !important;
}

body.woocommerce-cart .polaris-cart-item__remove.remove i {
  display: block;
  font-size: .74rem;
  line-height: 1;
  margin: 0;
}

body.woocommerce-cart .polaris-cart-actions {
  padding: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

body.woocommerce-cart .polaris-cart-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.woocommerce-cart .polaris-cart-coupon label {
  color: rgba(213, 228, 244, .9);
}

body.woocommerce-cart .polaris-cart-coupon .input-text {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  min-width: 220px;
  padding: 0 14px;
}

body.woocommerce-cart .polaris-cart-summary {
  padding: 14px;
  position: sticky;
  top: 96px;
  align-self: start;
}

body.woocommerce-cart .polaris-cart-summary__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

body.woocommerce-cart .polaris-cart-summary__head h2 {
  margin: 0;
  font-size: 1.06rem;
}

body.woocommerce-cart .polaris-cart-summary__head span {
  color: rgba(198, 214, 231, .82);
  font-size: .85rem;
}

body.woocommerce-cart .polaris-cart-summary__rows {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  padding: 10px;
}

body.woocommerce-cart .polaris-cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: rgba(213, 227, 243, .88);
  font-size: .94rem;
}

body.woocommerce-cart .polaris-cart-summary__row strong {
  color: #f0f7ff;
  font-weight: 600;
}

body.woocommerce-cart .polaris-cart-summary__row--total {
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 12px;
  font-size: 1.02rem;
}

body.woocommerce-cart .polaris-cart-summary__row--total strong {
  color: var(--accent);
}

body.woocommerce-cart .polaris-cart-summary .btn {
  width: 100%;
  margin-top: 12px;
  min-height: 46px;
  border-radius: 14px;
  font-size: 1rem;
}

body.woocommerce-cart .polaris-cart-summary__hint {
  margin: 10px 2px 0;
  color: rgba(195, 213, 231, .8);
  font-size: .82rem;
  line-height: 1.45;
}

body.woocommerce-cart .polaris-cart-empty {
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .03);
  padding: 24px 16px;
  text-align: center;
}

body.woocommerce-cart .polaris-cart-empty__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(243, 135, 47, .2);
  color: #ffd9bd;
  font-size: 1.32rem;
}

body.woocommerce-cart .polaris-cart-empty h2 {
  margin: 0;
  font-size: 1.15rem;
}

body.woocommerce-cart .polaris-cart-empty p {
  margin: 8px 0 14px;
  color: rgba(205, 220, 236, .82);
}

body.woocommerce-cart .polaris-cart-sticky-mobile {
  display: none;
}

@media (max-width: 1100px) {
  body.woocommerce-cart .polaris-cart-layout {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .polaris-cart-summary {
    position: static;
  }
}

@media (max-width: 900px) {
  body.woocommerce-cart .polaris-cart-page {
    padding-bottom: calc(var(--bottom-stack-h) + 100px);
  }

  body.woocommerce-cart .polaris-cart-top {
    border-radius: 20px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  body.woocommerce-cart .polaris-cart-top__back {
    justify-content: center;
    width: 100%;
  }

  body.woocommerce-cart .polaris-cart-items {
    padding: 8px;
  }

  body.woocommerce-cart .polaris-cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
  }

  body.woocommerce-cart .polaris-cart-item__thumb {
    width: 68px;
    height: 68px;
  }

  body.woocommerce-cart .polaris-cart-item__title {
    font-size: .93rem;
  }

  body.woocommerce-cart .polaris-cart-item__controls {
    grid-column: 1 / -1;
    justify-items: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 8px;
    gap: 8px;
  }

  body.woocommerce-cart .polaris-cart-item__subtotal-label {
    display: none;
  }

  body.woocommerce-cart .polaris-cart-item__subtotal {
    margin-left: auto;
    white-space: nowrap;
    font-size: .95rem;
  }

  body.woocommerce-cart .polaris-cart-item__remove {
    width: 28px;
    height: 28px;
    font-size: .72rem;
  }

  body.woocommerce-cart .polaris-cart-actions {
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  body.woocommerce-cart .polaris-cart-coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.woocommerce-cart .polaris-cart-coupon .input-text {
    min-width: 0;
    width: 100%;
  }

  body.woocommerce-cart .polaris-cart-summary {
    display: none;
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(var(--bottom-stack-h) + 8px);
    width: min(95%, 680px);
    z-index: 1700;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(160deg, rgba(11, 23, 37, .97), rgba(7, 16, 27, .98));
    box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
    padding: 10px;
    display: grid;
    gap: 8px;
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(211, 225, 241, .9);
    padding: 2px 4px;
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile__meta strong {
    font-size: 1.04rem;
    color: #fff;
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile__rows {
    display: grid;
    gap: 2px;
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile__meta--shipping {
    font-size: .86rem;
    color: rgba(199, 216, 234, .88);
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile__meta--shipping strong {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(236, 244, 252, .95);
  }

  body.woocommerce-cart .polaris-cart-sticky-mobile .btn {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
  }
}

/* My Account Premium Panel */
body.woocommerce-account.logged-in .polaris-account-content {
  padding: 22px 0 42px;
}

.polaris-account {
  width: min(94%, 1240px);
}

.polaris-account__shell {
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  gap: 18px;
}

.polaris-account__sidebar {
  align-self: start;
  position: sticky;
  top: 92px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 8% 0, rgba(243, 135, 47, .15), rgba(243, 135, 47, 0) 36%),
    linear-gradient(160deg, rgba(15, 34, 54, .95), rgba(8, 19, 31, .95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 18px 36px rgba(0, 0, 0, .3);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.polaris-account__profile {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .05);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.polaris-account__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  overflow: hidden;
  flex: 0 0 auto;
}

.polaris-account__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaris-account__identity {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.polaris-account__identity strong {
  font-size: .98rem;
  font-family: "Poppins", "Inter", sans-serif;
}

.polaris-account__identity span {
  color: rgba(214, 229, 243, .82);
  font-size: .78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.polaris-account-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.polaris-account-nav__item a {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: rgba(232, 241, 250, .93);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.polaris-account-nav__item a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.polaris-account-nav__item.is-active a {
  border-color: rgba(243, 135, 47, .42);
  background:
    radial-gradient(circle at 0 50%, rgba(243, 135, 47, .18), rgba(243, 135, 47, 0) 58%),
    rgba(255, 255, 255, .09);
  color: #fff;
}

.polaris-account-nav__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(7, 17, 27, .56);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbe9f7;
}

.polaris-account-nav__item.is-active .polaris-account-nav__icon {
  background: rgba(243, 135, 47, .2);
  border-color: rgba(243, 135, 47, .45);
  color: #ffe0c5;
}

.polaris-account-nav__icon svg {
  width: 16px;
  height: 16px;
}

.polaris-account-nav__icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.polaris-account-nav__label {
  font-size: .92rem;
  font-weight: 600;
}

.polaris-account__main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.polaris-account__head {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .15), rgba(243, 135, 47, 0) 42%),
    linear-gradient(160deg, rgba(12, 28, 45, .94), rgba(7, 18, 30, .95));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.polaris-account__kicker {
  margin: 0;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(191, 212, 233, .82);
}

.polaris-account__head h1 {
  margin: 6px 0 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.polaris-account__status {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(126, 211, 161, .35);
  background: rgba(126, 211, 161, .12);
  color: #d8fae5;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  white-space: nowrap;
}

.polaris-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.polaris-account-stat {
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(170deg, rgba(20, 41, 64, .95), rgba(9, 22, 37, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.polaris-account-stat p {
  margin: 0;
  font-size: .8rem;
  color: rgba(205, 222, 238, .84);
}

.polaris-account-stat strong {
  margin: 0;
  color: #fff;
  line-height: 1.3;
  font-size: clamp(.94rem, 1.4vw, 1.08rem);
}

.polaris-account-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.polaris-account-actions__item {
  min-height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.polaris-account-actions__item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
}

.polaris-account-actions__item span {
  font-weight: 650;
  color: #f4f9ff;
  line-height: 1.3;
}

.polaris-account-actions__item small {
  color: rgba(198, 217, 235, .84);
  font-size: .76rem;
  line-height: 1.35;
}

.polaris-account-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 135, 47, .1), rgba(243, 135, 47, 0) 40%),
    linear-gradient(165deg, rgba(14, 31, 49, .95), rgba(8, 18, 29, .96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 16px 32px rgba(0, 0, 0, .28);
  padding: 16px;
}

.polaris-account-panel p {
  color: rgba(216, 231, 247, .9);
}

.polaris-account-panel a {
  color: #f7c08f;
}

.polaris-account-panel a:hover {
  color: #ffdcb9;
}

.polaris-account-panel .woocommerce-notices-wrapper {
  margin-bottom: 10px;
}

.polaris-account-panel .woocommerce-error,
.polaris-account-panel .woocommerce-info,
.polaris-account-panel .woocommerce-message {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 15, 25, .75);
  color: #e9f2fc;
  margin: 0 0 10px;
  padding: 12px 14px;
}

.polaris-account-panel .woocommerce-error::before,
.polaris-account-panel .woocommerce-info::before,
.polaris-account-panel .woocommerce-message::before {
  color: #f8b67a;
}

.polaris-account-panel h2,
.polaris-account-panel h3 {
  margin: 0 0 10px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.26rem);
}

.polaris-account-panel .button,
.polaris-account-panel button.button,
.polaris-account-panel .woocommerce-Button {
  min-height: 44px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, #f8ae63, #f3872f);
  color: #171717;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 0 14px;
  box-shadow: 0 12px 24px rgba(243, 135, 47, .24);
}

.polaris-account-panel .button:hover,
.polaris-account-panel button.button:hover,
.polaris-account-panel .woocommerce-Button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.polaris-account-panel .woocommerce-orders-table,
.polaris-account-panel table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
}

.polaris-account-panel .woocommerce-orders-table th,
.polaris-account-panel .woocommerce-orders-table td,
.polaris-account-panel table.shop_table th,
.polaris-account-panel table.shop_table td {
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  padding: 11px 10px;
  text-align: left;
  color: rgba(235, 243, 251, .95);
  font-size: .88rem;
}

.polaris-account-panel .woocommerce-orders-table th,
.polaris-account-panel table.shop_table th {
  font-size: .8rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(201, 219, 236, .86);
  background: rgba(255, 255, 255, .04);
}

.polaris-account-panel .woocommerce-orders-table tbody tr:hover,
.polaris-account-panel table.shop_table tbody tr:hover {
  background: rgba(255, 255, 255, .04);
}

.polaris-account-panel .woocommerce-orders-table td:last-child .button {
  min-height: 34px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: .8rem;
}

.polaris-account-panel .woocommerce-Address {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  padding: 12px;
}

.polaris-account-panel .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.polaris-account-panel .woocommerce-Addresses .woocommerce-Address {
  float: none;
  width: auto;
  margin: 0;
}

.polaris-account-panel .woocommerce-Address + .woocommerce-Address {
  margin-top: 0;
}

.polaris-account-panel .woocommerce-Address-title {
  margin-bottom: 8px;
}

.polaris-account-panel .woocommerce-Address-title h3 {
  margin: 0;
  font-size: 1rem;
}

.polaris-account-panel .woocommerce-Address address {
  margin: 0;
  color: rgba(214, 228, 244, .9);
  line-height: 1.6;
  font-size: .88rem;
}

.polaris-account-panel .woocommerce-address-fields__field-wrapper,
.polaris-account-panel .woocommerce-form-row,
.polaris-account-panel .form-row {
  margin: 0 0 10px;
  padding: 0;
}

.polaris-account-panel label {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  color: #f0f7ff;
}

.polaris-account-panel .input-text,
.polaris-account-panel input[type="text"],
.polaris-account-panel input[type="email"],
.polaris-account-panel input[type="password"],
.polaris-account-panel input[type="tel"],
.polaris-account-panel textarea,
.polaris-account-panel select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .19) !important;
  background: rgba(5, 14, 23, .82) !important;
  background-color: rgba(5, 14, 23, .82) !important;
  color: #eaf3fd !important;
  padding: 10px 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.polaris-account-panel .input-text::placeholder,
.polaris-account-panel input[type="text"]::placeholder,
.polaris-account-panel input[type="email"]::placeholder,
.polaris-account-panel input[type="password"]::placeholder,
.polaris-account-panel input[type="tel"]::placeholder,
.polaris-account-panel textarea::placeholder {
  color: rgba(194, 212, 229, .78) !important;
}

.polaris-account-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.polaris-account-panel .input-text:focus,
.polaris-account-panel input[type="text"]:focus,
.polaris-account-panel input[type="email"]:focus,
.polaris-account-panel input[type="password"]:focus,
.polaris-account-panel input[type="tel"]:focus,
.polaris-account-panel textarea:focus,
.polaris-account-panel select:focus {
  outline: 0;
  border-color: rgba(243, 135, 47, .72) !important;
  box-shadow: 0 0 0 3px rgba(243, 135, 47, .2);
  background: rgba(8, 19, 31, .9) !important;
  background-color: rgba(8, 19, 31, .9) !important;
}

body.woocommerce-account.logged-in .polaris-account-panel .woocommerce-Input,
body.woocommerce-account.logged-in .polaris-account-panel .input-text,
body.woocommerce-account.logged-in .polaris-account-panel .password-input input {
  background: rgba(5, 14, 23, .82) !important;
  background-color: rgba(5, 14, 23, .82) !important;
  color: #eaf3fd !important;
  border-color: rgba(255, 255, 255, .19) !important;
}

body.woocommerce-account.logged-in .polaris-account-panel .select2-container .select2-selection--single,
body.woocommerce-account.logged-in .polaris-account-panel .select2-container .select2-selection--multiple {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .19) !important;
  background: rgba(5, 14, 23, .82) !important;
  background-color: rgba(5, 14, 23, .82) !important;
}

body.woocommerce-account.logged-in .polaris-account-panel .select2-container .select2-selection__rendered {
  color: #eaf3fd !important;
  line-height: 42px;
}

.polaris-account-panel .woocommerce-EditAccountForm fieldset {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 12px 2px;
  margin: 10px 0;
}

.polaris-account-panel .woocommerce-EditAccountForm legend {
  color: #fff;
  padding: 0 6px;
  font-weight: 600;
  font-size: .86rem;
}

.polaris-account-panel .woocommerce-pagination .button {
  min-height: 36px;
  border-radius: 10px;
}

.polaris-account-password {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 12px;
}

.polaris-account-password__head {
  margin-bottom: 10px;
}

.polaris-account-password__head h3 {
  margin: 0;
}

.polaris-account-password__head p {
  margin: 6px 0 0;
  color: rgba(206, 222, 238, .83);
  font-size: .84rem;
}

.polaris-account-password__form .button {
  min-width: 210px;
}

@media (max-width: 1150px) {
  .polaris-account__shell {
    grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  }

  .polaris-account-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.woocommerce-account.logged-in .polaris-account-content {
    padding: 10px 0 28px;
  }

  .polaris-account {
    width: min(96%, 820px);
  }

  .polaris-account__shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .polaris-account__sidebar {
    position: static;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
  }

  .polaris-account__profile {
    padding: 10px;
  }

  .polaris-account-nav {
    margin-inline: -2px;
  }

  .polaris-account-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 4px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .polaris-account-nav__list::-webkit-scrollbar {
    display: none;
  }

  .polaris-account-nav__item {
    flex: 0 0 clamp(140px, 42vw, 184px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .polaris-account-nav__item a {
    min-height: 54px;
    padding: 8px 10px;
    width: 100%;
  }

  .polaris-account-nav__label {
    font-size: .82rem;
    line-height: 1.22;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .polaris-account__head {
    border-radius: 20px;
    padding: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .polaris-account-stats {
    grid-template-columns: 1fr;
  }

  .polaris-account-actions {
    grid-template-columns: 1fr;
  }

  .polaris-account-panel {
    border-radius: 20px;
    padding: 12px;
  }

  .polaris-account-panel .woocommerce-orders-table,
  .polaris-account-panel table.shop_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .polaris-account-panel .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .polaris-account-nav__item {
    flex-basis: clamp(130px, 60vw, 170px);
  }

  .polaris-account-nav__item a {
    min-height: 50px;
    border-radius: 12px;
  }

  .polaris-account__status {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .polaris-account-nav__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .polaris-account-panel .button,
  .polaris-account-panel button.button,
  .polaris-account-panel .woocommerce-Button {
    width: 100%;
  }
}

body.woocommerce-checkout .polaris-checkout-form .polaris-hidden-field {
  display: none !important;
}

body.woocommerce-checkout .polaris-checkout-form .polaris-corporate-toggle-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.woocommerce-checkout .polaris-checkout-form .polaris-corporate-toggle-row .optional {
  display: none;
}

body.woocommerce-checkout .polaris-checkout-form .polaris-corporate-toggle-row input {
  accent-color: var(--accent);
}

body.woocommerce-checkout .polaris-checkout-form .polaris-corporate-field.is-hidden {
  display: none !important;
}

/* FAQ page */
.polaris-faq-page {
  padding: 24px 0 42px;
}

.polaris-faq-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  padding: clamp(16px, 3vw, 26px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.polaris-faq-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -92px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 135, 47, 0.27) 0%, rgba(243, 135, 47, 0) 72%);
  pointer-events: none;
}

.polaris-faq-kicker {
  margin: 0;
  font-size: .75rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(206, 223, 241, .8);
}

.polaris-faq-hero h1 {
  margin: 8px 0 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.34rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.polaris-faq-subtitle {
  margin: 10px 0 0;
  max-width: 70ch;
  color: rgba(222, 234, 247, .88);
  line-height: 1.55;
}

.polaris-faq-tags {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polaris-faq-tags span {
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: .76rem;
  color: rgba(236, 244, 252, .94);
}

.polaris-faq-hero__cta {
  min-height: 48px;
  gap: 9px;
  white-space: nowrap;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}

.polaris-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 14px;
  align-items: start;
}

.polaris-faq-main {
  display: grid;
  gap: 12px;
}

.polaris-faq-block {
  padding: 14px;
  border-radius: 20px;
}

.polaris-faq-block__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.polaris-faq-block__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(243, 135, 47, .36);
  background: rgba(243, 135, 47, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd8b7;
  flex: 0 0 auto;
}

.polaris-faq-block__head h2 {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.polaris-faq-block__head p {
  margin: 4px 0 0;
  color: rgba(205, 220, 236, .8);
  font-size: .82rem;
}

.polaris-faq-items {
  display: grid;
  gap: 8px;
}

.polaris-faq-item {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(6, 15, 25, .56);
  border-radius: 14px;
  overflow: hidden;
}

.polaris-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 11px 13px;
}

.polaris-faq-item summary::-webkit-details-marker {
  display: none;
}

.polaris-faq-item__q {
  font-weight: 600;
  line-height: 1.4;
  color: #f0f7ff;
}

.polaris-faq-item__toggle {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dce9f7;
  flex: 0 0 auto;
  transition: transform .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.polaris-faq-item[open] .polaris-faq-item__toggle {
  transform: rotate(45deg);
  color: #ffd8b7;
  border-color: rgba(243, 135, 47, .44);
}

.polaris-faq-item__a {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 0 13px 13px;
}

.polaris-faq-item__a p {
  margin: 12px 0 0;
  color: rgba(216, 231, 247, .92);
  line-height: 1.65;
}

.polaris-faq-aside {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}

.polaris-faq-contact,
.polaris-faq-note {
  border-radius: 20px;
  padding: 14px;
}

.polaris-faq-contact h3,
.polaris-faq-note h3 {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.03rem;
}

.polaris-faq-contact p {
  margin: 9px 0 0;
  color: rgba(217, 231, 246, .86);
  line-height: 1.6;
}

.polaris-faq-contact .btn {
  width: 100%;
  margin-top: 12px;
  min-height: 44px;
  border-radius: 12px;
  gap: 9px;
}

.polaris-faq-contact__number {
  margin-top: 10px;
  display: block;
  text-align: center;
  font-weight: 600;
  color: rgba(239, 247, 255, .94);
}

.polaris-faq-note ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.polaris-faq-note li {
  color: rgba(216, 231, 247, .9);
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .polaris-faq-layout {
    grid-template-columns: 1fr;
  }

  .polaris-faq-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .polaris-faq-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .polaris-faq-hero__cta {
    width: 100%;
  }

  .polaris-faq-aside {
    grid-template-columns: 1fr;
  }

  .polaris-faq-block {
    padding: 12px;
    border-radius: 18px;
  }
}

/* Contact page */
.polaris-contact-page {
  padding: 24px 0 42px;
}

.polaris-contact-hero {
  padding: clamp(16px, 3vw, 26px);
  border-radius: 22px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.polaris-contact-hero::after {
  content: "";
  position: absolute;
  right: -88px;
  top: -92px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 135, 47, .26), rgba(243, 135, 47, 0) 70%);
  pointer-events: none;
}

.polaris-contact-kicker {
  margin: 0;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200, 218, 237, .8);
}

.polaris-contact-hero h1 {
  margin: 8px 0 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.polaris-contact-subtitle {
  margin: 10px 0 0;
  max-width: 66ch;
  line-height: 1.6;
  color: rgba(221, 233, 246, .88);
}

.polaris-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.polaris-contact-card {
  border-radius: 20px;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.polaris-contact-card--full {
  grid-column: 1 / -1;
}

.polaris-contact-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.polaris-contact-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(243, 135, 47, .38);
  background: rgba(243, 135, 47, .14);
  color: #ffd9b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.polaris-contact-card h2 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.polaris-contact-card p {
  margin: 0;
  color: rgba(215, 230, 246, .9);
  line-height: 1.6;
}

.polaris-contact-cta {
  min-height: 44px;
  border-radius: 12px;
  gap: 9px;
  width: fit-content;
}

.polaris-contact-meta {
  display: inline-block;
  color: rgba(238, 246, 255, .95);
  font-weight: 600;
}

.polaris-contact-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.polaris-contact-social {
  min-height: 116px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  padding: 12px;
  display: grid;
  align-content: space-between;
  gap: 6px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.polaris-contact-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
}

.polaris-contact-social i {
  font-size: 1.2rem;
}

.polaris-contact-social span {
  font-weight: 600;
  color: #f2f8ff;
}

.polaris-contact-social small {
  color: rgba(202, 218, 234, .86);
  font-size: .78rem;
}

.polaris-contact-social--instagram i {
  color: #ff7fba;
}

.polaris-contact-social--youtube i {
  color: #ff6a6a;
}

.polaris-contact-social--facebook i {
  color: #7ba9ff;
}

@media (max-width: 980px) {
  .polaris-contact-grid {
    grid-template-columns: 1fr;
  }

  .polaris-contact-socials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .polaris-contact-card {
    border-radius: 18px;
    padding: 12px;
  }

  .polaris-contact-cta {
    width: 100%;
  }
}

