:root {
  --imp-bg: #f8fafc;
  --imp-fg: #0f172a;
  --imp-muted: #64748b;
  --imp-card: #ffffff;
  --imp-card-border: #dbe2ea;
  --imp-primary: #0f7ea2;
  --imp-primary-accent: #2dd1a3;
  --imp-dark: #0b1120;
  --imp-dark-soft: #0f1729;
  --imp-dark-muted: #1a2540;
  --imp-radius: 18px;
  --imp-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--imp-bg);
  color: var(--imp-fg);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

.native-container {
  width: min(1700px, calc(100% - 60px));
  margin: 0 auto;
}

.app-shell {
  min-height: 100vh;
  background: var(--imp-bg);
}

.site-main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  background: rgba(10, 15, 30, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(14px);
}

.site-header.site-header--home:not(.is-scrolled):not(.is-menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.custom-logo-link img,
.site-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu a {
  color: var(--imp-primary-accent);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav__menu a:hover {
  color: #fff;
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.icon-button,
.mobile-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-button:hover,
.mobile-toggle:hover {
  color: var(--imp-primary-accent);
  background: rgba(255, 255, 255, 0.06);
}

.icon-button__glyph,
.mobile-toggle__icon,
.button__icon,
.portal-badge__icon,
.benefit-card__svg,
.portal-stat-card__icon,
.trust-card__svg,
.footer-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.icon-button__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 52px;
  padding: 0.875rem 1.5rem;
  border: 0;
  border-radius: 0.875rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--imp-primary-accent);
  color: #09111b;
  box-shadow: 0 16px 28px rgba(45, 209, 163, 0.18);
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #25b88e;
  color: #09111b;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button--dark {
  background: var(--imp-fg);
  color: #fff;
}

.button--hero {
  min-height: 56px;
  padding-inline: 2rem;
}

.button--full {
  width: 100%;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.account-pill__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 209, 163, 0.16);
  color: var(--imp-primary-accent);
  font-weight: 700;
}

.account-pill__label {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.92rem;
  font-weight: 600;
}

.mobile-toggle {
  display: none;
}

.mobile-toggle__icon--close {
  display: none;
}

.site-header.is-menu-open .mobile-toggle__icon--menu {
  display: none;
}

.site-header.is-menu-open .mobile-toggle__icon--close {
  display: block;
}

.mobile-nav {
  display: none;
  padding: 1.25rem 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0f1e;
}

.site-header.is-menu-open .mobile-nav {
  display: grid;
  gap: 1rem;
}

.mobile-nav__menu {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--imp-primary-accent);
  font-weight: 600;
}

.portal-hero {
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  background: #0f1729;
  color: #fff;
}

.portal-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 17, 32, 0.96) 0%, rgba(11, 17, 32, 0.7) 52%, rgba(11, 17, 32, 0.25) 100%),
    radial-gradient(circle at top right, rgba(45, 209, 163, 0.22), transparent 40%),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600&q=80") center/cover no-repeat;
}

.portal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.16), rgba(11, 17, 32, 0.08));
}

.portal-hero__inner {
  position: relative;
  min-height: 720px;
  padding: 180px 0 88px;
  display: flex;
  align-items: flex-start;
}

.portal-hero__copy {
  max-width: 42rem;
}

.portal-hero__slide {
  display: none;
}

.portal-hero__slide.is-active {
  display: block;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: rgba(45, 209, 163, 0.12);
  border: 1px solid rgba(45, 209, 163, 0.26);
  color: var(--imp-primary-accent);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.portal-hero__title {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.06;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.portal-hero__title span,
.portal-cta h2 span {
  color: transparent;
  background: linear-gradient(135deg, var(--imp-primary-accent), #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
}

.portal-hero__sub {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.portal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.portal-hero__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.portal-hero__dot {
  width: 0.75rem;
  height: 0.375rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: all 0.24s ease;
}

.portal-hero__dot.is-active {
  width: 2rem;
  background: var(--imp-primary-accent);
}

.benefits-strip {
  padding: 3rem 0;
  background: #0a0f1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
}

.benefit-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.875rem;
  border-radius: 1rem;
  background: rgba(45, 209, 163, 0.1);
  color: var(--imp-primary-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.benefit-card p {
  font-size: 0.78rem;
  color: #94a3b8;
}

.portal-section {
  padding: 5rem 0;
}

.portal-section--light {
  background: #fff;
}

.portal-section__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.portal-section__heading--center {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.portal-section__heading h2,
.portal-club__copy h2,
.portal-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.06;
  color: var(--imp-fg);
  font-weight: 800;
}

.portal-section__heading p,
.portal-club__copy > p,
.trust-card p,
.trust-banner p,
.featured-product-card__locked,
.featured-product-card__sku,
.footer-block__copy,
.site-footer__copyright {
  color: var(--imp-muted);
  line-height: 1.75;
}

.portal-kicker {
  color: var(--imp-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--imp-card-border);
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: var(--imp-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 209, 163, 0.34);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.featured-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(15, 23, 42, 0.08);
}

.featured-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-product-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--imp-fg);
  font-size: 0.72rem;
  font-weight: 700;
}

.featured-product-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.featured-product-card__body h3 {
  font-size: 0.98rem;
  line-height: 1.45;
  min-height: 2.8em;
}

.featured-product-card__sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
}

.featured-product-card__price {
  color: var(--imp-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.featured-product-card__locked {
  font-size: 0.74rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.04);
  padding: 0.4rem 0.65rem;
  border-radius: 0.625rem;
  width: fit-content;
}

.portal-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.portal-club {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.portal-steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.portal-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.portal-step__number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--imp-primary-accent);
  color: #09111b;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.portal-step p {
  color: var(--imp-muted);
  line-height: 1.6;
}

.portal-step strong {
  color: var(--imp-fg);
}

.portal-club__stats {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  background: #0f1729;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.portal-stat-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.portal-stat-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--imp-primary-accent);
  margin: 0 auto;
}

.portal-stat-card strong {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
}

.portal-stat-card span {
  color: #94a3b8;
  font-size: 0.82rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-card {
  display: grid;
  gap: 0.875rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--imp-card-border);
  background: #f8fafc;
}

.trust-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: rgba(45, 209, 163, 0.12);
  color: var(--imp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-card h3 {
  font-size: 1.2rem;
}

.trust-card__sub {
  color: var(--imp-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-banner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 2.25rem;
  border-radius: 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--imp-card-border);
}

.trust-banner p {
  max-width: 54rem;
}

.portal-cta {
  padding: 5rem 0;
  background: #0f1729;
  color: #fff;
}

.portal-cta__inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  max-width: 52rem;
}

.portal-cta h2 {
  color: #fff;
}

.portal-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.portal-cta small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.92rem;
}

.site-footer {
  background: #0b1120;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__main {
  padding: 3.5rem 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-block__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-block__accent {
  width: 0.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #22d3ee;
}

.footer-block__copy {
  font-size: 0.92rem;
}

.footer-block__copy strong {
  color: rgba(255, 255, 255, 0.95);
}

.footer-block__copy--muted {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-icon {
  color: #22d3ee;
  margin-top: 0.15rem;
}

.footer-news-list {
  display: grid;
  gap: 1rem;
}

.footer-news-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-news-item:last-child {
  border-bottom: 0;
}

.footer-news-item a {
  color: #22d3ee;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-news-item p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
}

.footer-newsletter {
  display: grid;
  gap: 0.5rem;
}

.footer-newsletter input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f1729;
  color: #fff;
}

.footer-newsletter button {
  min-height: 46px;
  border: 0;
  border-radius: 0.5rem;
  background: #22d3ee;
  color: #09111b;
  font-weight: 800;
  cursor: pointer;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0f1e;
}

.site-footer__bottom-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.18);
}

.site-footer__brand {
  justify-self: center;
}

.site-footer__brand img {
  height: 36px;
}

.site-footer__copyright {
  justify-self: end;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.native-page {
  padding: 3rem 0 5rem;
}

.native-page__card {
  padding: 2rem;
  border: 1px solid var(--imp-card-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--imp-shadow);
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.page-copy {
  max-width: 56rem;
  color: var(--imp-muted);
  line-height: 1.8;
}

.native-page--account {
  padding: 2.25rem 0 4rem;
}

.native-page__card--account {
  padding: 2rem 2rem 2.5rem;
}

.page-copy--account {
  max-width: none;
}

.portal-shop {
  min-height: calc(100vh - 80px);
  background: #f8fafc;
}

.portal-shop__filters {
  border-bottom: 1px solid var(--imp-card-border);
  background: #fff;
}

.portal-shop__filters-inner {
  min-height: 74px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
}

.portal-shop__select,
.portal-shop__search input {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--imp-card-border);
  border-radius: 0.625rem;
  background: #f8fafc;
  color: var(--imp-fg);
}

.portal-shop__search {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.625rem;
}

.portal-shop__search-label,
.portal-shop__count {
  color: var(--imp-muted);
  font-size: 0.88rem;
}

.portal-shop__searchbox {
  display: flex;
}

.portal-shop__searchbox input {
  width: 220px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.portal-shop__searchbox button {
  width: 46px;
  border: 0;
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  background: #14b8a6;
  color: #fff;
  cursor: pointer;
}

.portal-shop__reset {
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 0.625rem;
  border: 1px solid var(--imp-card-border);
  background: transparent;
  color: var(--imp-muted);
  cursor: pointer;
}

.portal-shop__body {
  padding: 1.5rem 0 4rem;
}

.portal-shop__table {
  overflow: hidden;
  border: 1px solid var(--imp-card-border);
  border-radius: 1rem;
  background: #fff;
}

.portal-shop__head,
.portal-shop__row {
  display: grid;
  grid-template-columns: 56px 120px minmax(260px, 1fr) 160px 160px 110px 130px 130px 120px 190px;
}

.portal-shop__head {
  background: #0f7ea2;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-shop__head > div,
.portal-shop__row > div {
  padding: 0.9rem 0.75rem;
}

.portal-shop__rows .portal-shop__row + .portal-shop__row {
  border-top: 1px solid rgba(219, 226, 234, 0.65);
}

.portal-shop__row:nth-child(even) {
  background: rgba(248, 250, 252, 0.8);
}

.portal-shop__thumb {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.portal-shop__sku,
.portal-shop__oem {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
}

.portal-shop__name {
  color: var(--imp-fg);
  font-size: 0.82rem;
  line-height: 1.5;
}

.portal-shop__muted {
  color: var(--imp-muted);
  font-size: 0.82rem;
}

.portal-shop__price {
  color: var(--imp-fg);
  font-size: 0.92rem;
  font-weight: 800;
}

.portal-shop__price-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--imp-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.portal-shop__buy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-shop__buy form {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.portal-shop__qty {
  width: 62px;
  min-height: 36px;
  border: 1px solid var(--imp-card-border);
  border-radius: 0.625rem;
  padding: 0.5rem;
  text-align: center;
}

.portal-shop__buy .button {
  min-height: 38px;
  padding: 0.65rem 0.95rem;
  font-size: 0.78rem;
  border-radius: 0.625rem;
}

.portal-shop__buy .button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

.portal-shop__empty {
  padding: 5rem 1rem;
  text-align: center;
  color: var(--imp-muted);
}

.portal-shop__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  color: var(--imp-muted);
  font-size: 0.92rem;
}

.portal-shop__pagination-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.portal-shop__pagination-links .page-numbers {
  min-width: 34px;
  min-height: 34px;
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  color: var(--imp-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.portal-shop__pagination-links .page-numbers.current {
  background: #14b8a6;
  color: #fff;
}

.portal-shop__pagination-links .page-numbers:hover {
  background: rgba(15, 23, 42, 0.05);
}

.product-breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--imp-card-border);
  background: rgba(248, 250, 252, 0.8);
}

.product-breadcrumb .native-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--imp-muted);
  font-size: 0.9rem;
}

.product-breadcrumb strong {
  color: var(--imp-fg);
}

.single-product-native {
  padding: 3rem 0 5rem;
}

.single-product-native__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.single-product-native__media {
  background: #fff;
  border: 1px solid var(--imp-card-border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--imp-shadow);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-native__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.single-product-native__content {
  display: grid;
  gap: 1.2rem;
}

.single-product-native__category {
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(45, 209, 163, 0.12);
  color: var(--imp-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.single-product-native__content h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.single-product-native__sku {
  color: var(--imp-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
}

.single-product-native__pricebox,
.single-product-native__locked {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--imp-card-border);
  background: rgba(248, 250, 252, 0.95);
}

.single-product-native__pricebox strong {
  display: block;
  font-size: 2.5rem;
  color: var(--imp-fg);
  font-weight: 800;
}

.single-product-native__pricebox span {
  color: var(--imp-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.single-product-native__pricebox p,
.single-product-native__locked p {
  color: var(--imp-muted);
  margin-top: 0.5rem;
}

.single-product-native__locked {
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.single-product-native__locked-icon {
  width: 2rem;
  height: 2rem;
  color: var(--imp-muted);
}

.single-product-native__description {
  color: var(--imp-muted);
  line-height: 1.8;
}

.single-product-native__description p {
  color: inherit;
}

.single-product-native__stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.single-product-native__stock-pill.is-in {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.single-product-native__stock-pill.is-out {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.single-product-native__cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.single-product-native__qty {
  width: 120px;
  min-height: 56px;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  border: 2px solid var(--imp-card-border);
  background: #fff;
  text-align: center;
  font-weight: 700;
}

.single-product-native__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--imp-card-border);
}

.single-product-native__meta-grid > div {
  display: grid;
  gap: 0.25rem;
}

.single-product-native__meta-label {
  color: var(--imp-muted);
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

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

  .site-actions .button--primary,
  .account-pill {
    display: none;
  }

  .featured-products-grid,
  .trust-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-strip__grid,
  .portal-club {
    grid-template-columns: 1fr;
  }

  .portal-shop__filters-inner {
    align-items: stretch;
  }

  .portal-shop__search {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .portal-shop__head,
  .portal-shop__row {
    grid-template-columns: 56px 120px minmax(220px, 1fr) 140px 140px 100px 120px 120px 110px 180px;
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .portal-hero__inner {
    min-height: 640px;
    padding: 150px 0 72px;
  }

  .portal-hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .featured-products-grid,
  .trust-grid,
  .site-footer__grid,
  .portal-club__stats {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.5rem 0;
  }

  .site-footer__copyright {
    justify-self: center;
  }

  .portal-shop__table {
    overflow-x: auto;
  }

  .portal-shop__head,
  .portal-shop__row {
    min-width: 1360px;
  }

  .single-product-native__grid {
    grid-template-columns: 1fr;
  }

  .single-product-native__meta-grid {
    grid-template-columns: 1fr;
  }
}

/* Woo transactional reskin */
.woocommerce-account .native-page__card,
.woocommerce-cart .native-page__card,
.woocommerce-checkout .native-page__card,
.woocommerce-order-received .native-page__card {
  background:
    radial-gradient(circle at top right, rgba(77, 182, 255, 0.08), transparent 26%),
    radial-gradient(circle at left center, rgba(45, 209, 163, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(16, 23, 41, 0.92), rgba(10, 16, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.woocommerce-account .native-container {
  width: min(1320px, calc(100% - 40px));
}

.woocommerce-account .page-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title,
.woocommerce-order-received .page-title {
  color: #fff;
}

.woocommerce-account .page-copy,
.woocommerce-cart .page-copy,
.woocommerce-checkout .page-copy,
.woocommerce-order-received .page-copy,
.woocommerce-account .page-copy p,
.woocommerce-cart .page-copy p,
.woocommerce-checkout .page-copy p,
.woocommerce-order-received .page-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.woocommerce-account .page-copy--account,
.woocommerce-account .page-copy--account p {
  max-width: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row select,
.woocommerce-MyAccount-content input,
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
  min-height: 54px;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: none;
}

.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea,
.woocommerce-MyAccount-content textarea {
  min-height: 140px;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce-MyAccount-content label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.woocommerce .button,
.woocommerce-page .button,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce a.button,
.woocommerce-page a.button {
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 1rem;
  border: 0;
  background: linear-gradient(135deg, #2dd1a3, #53c0ff);
  color: #07111c;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(45, 209, 163, 0.22);
}

.woocommerce .button.alt,
.woocommerce-page .button.alt,
.woocommerce button.button.alt,
.woocommerce-page button.button.alt {
  background: linear-gradient(135deg, #2dd1a3, #53c0ff);
  color: #07111c;
}

.woocommerce .button:hover,
.woocommerce-page .button:hover,
.woocommerce button.button:hover,
.woocommerce-page button.button:hover,
.woocommerce a.button:hover,
.woocommerce-page a.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.woocommerce-account .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-order-received .woocommerce {
  color: rgba(255, 255, 255, 0.82);
  width: 100%;
}

.woocommerce-account #customer_login,
.woocommerce-checkout .col2-set {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
  min-width: 0;
}

.woocommerce-account #customer_login h2,
.woocommerce-checkout .col2-set h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.05;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #07111c;
  background: linear-gradient(135deg, #2dd1a3, #53c0ff);
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  min-width: 0;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content legend,
.woocommerce-checkout h3,
.woocommerce-checkout h2,
.woocommerce-cart h2 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-order-received table.shop_table,
.woocommerce-account table.shop_table,
.woocommerce table.shop_table {
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.woocommerce table.shop_table th {
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.woocommerce table.shop_table td {
  line-height: 1.55;
}

.woocommerce table.shop_table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.woocommerce table.shop_table .button,
.woocommerce table.shop_table a.button {
  white-space: nowrap;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout #payment {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 1rem 1.25rem 0.5rem;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 0.9rem;
}

.woocommerce-checkout #payment .payment_method label {
  color: #fff;
  font-weight: 700;
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account form.edit-account,
.woocommerce-account form.woocommerce-EditAccountForm,
.woocommerce-account form.woocommerce-address-fields {
  display: grid;
  gap: 1rem;
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout #order_review {
  position: relative;
}

.woocommerce-checkout #order_review {
  display: grid;
  gap: 1rem;
}

.woocommerce table.shop_table td.product-name a,
.woocommerce-account .woocommerce-MyAccount-content a {
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-checkout .woocommerce-checkout p,
.woocommerce-checkout .woocommerce-checkout li,
.woocommerce-cart .woocommerce-cart-form p,
.woocommerce-cart .woocommerce-cart-form li {
  color: rgba(255, 255, 255, 0.78);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table td,
.woocommerce-account .woocommerce-MyAccount-content .shop_table td,
.woocommerce-account .woocommerce-MyAccount-content .shop_table th,
.woocommerce-checkout .shop_table td,
.woocommerce-checkout .shop_table th {
  padding: 1rem 1.1rem;
  vertical-align: middle;
}

.woocommerce-account .woocommerce-MyAccount-content .shop_table_responsive tr td::before {
  color: rgba(203, 213, 225, 0.64);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-account .woocommerce-Addresses .button,
.woocommerce .woocommerce-Address .button {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 0.9rem;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover,
.woocommerce table.shop_table td.product-name a:hover,
.woocommerce .lost_password a:hover,
.woocommerce-form-login a:hover,
.woocommerce-form-register a:hover {
  color: var(--imp-primary-accent);
}

.woocommerce .quantity .qty,
.woocommerce-cart table.shop_table .qty {
  min-height: 46px;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.woocommerce-cart .coupon,
.woocommerce-cart .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.woocommerce-cart .coupon .input-text {
  min-width: 220px;
}

.woocommerce-cart .cart_item .product-name {
  font-weight: 700;
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading {
  margin: 0 0 1rem;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon,
.woocommerce .woocommerce-form-coupon,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register {
  padding: 1.75rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.woocommerce form.login p,
.woocommerce form.register p,
.woocommerce .woocommerce-form-login p,
.woocommerce .woocommerce-form-register p {
  color: rgba(255, 255, 255, 0.78);
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row,
.woocommerce .woocommerce-form-login .form-row,
.woocommerce .woocommerce-form-register .form-row {
  margin-bottom: 1rem;
}

.woocommerce-checkout form .form-row,
.woocommerce-account .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 1rem;
}

.woocommerce-checkout form .form-row label,
.woocommerce-account .woocommerce-MyAccount-content form .form-row label {
  display: block;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
  width: 100%;
  float: none;
}

.woocommerce-checkout .select2-container,
.woocommerce-account .woocommerce-MyAccount-content .select2-container {
  width: 100% !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single {
  min-height: 54px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 54px;
  padding-left: 1rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  right: 12px;
}

.woocommerce-checkout form .form-row,
.woocommerce-account .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 1rem;
}

.woocommerce-checkout form .form-row label,
.woocommerce-account .woocommerce-MyAccount-content form .form-row label {
  display: block;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
  width: 100%;
  float: none;
}

.woocommerce-checkout .select2-container,
.woocommerce-account .woocommerce-MyAccount-content .select2-container {
  width: 100% !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single {
  min-height: 54px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 54px;
  padding-left: 1rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  right: 12px;
}

.woocommerce form.login .woocommerce-LostPassword,
.woocommerce .woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 1rem;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder,
.woocommerce form .form-row select::placeholder,
.woocommerce-page form .form-row input.input-text::placeholder,
.woocommerce-page form .form-row textarea::placeholder,
.woocommerce-page form .form-row select::placeholder,
.woocommerce-MyAccount-content input::placeholder,
.woocommerce-MyAccount-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row textarea:focus,
.woocommerce-page form .form-row select:focus,
.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
  outline: none;
  border-color: rgba(45, 209, 163, 0.42);
  box-shadow: 0 0 0 4px rgba(45, 209, 163, 0.12);
}

.woocommerce ul.order_details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.woocommerce ul.order_details li {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
}

.woocommerce .woocommerce-customer-details address {
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.woocommerce-account .woocommerce-Addresses,
.woocommerce .addresses {
  display: grid;
  gap: 1rem;
}

.woocommerce-account .woocommerce-Address,
.woocommerce .woocommerce-Address {
  padding: 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-account .woocommerce-Address-title,
.woocommerce .woocommerce-Address-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-Address-title h3,
.woocommerce .woocommerce-Address-title h3 {
  margin: 0;
}

.woocommerce-account .woocommerce-Addresses,
.woocommerce .addresses {
  display: grid;
  gap: 1rem;
}

.woocommerce-account .woocommerce-Address,
.woocommerce .woocommerce-Address {
  padding: 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout #payment div.payment_box {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-Address {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-account .woocommerce-MyAccount-content h2:first-child,
.woocommerce-account .woocommerce-MyAccount-content h3:first-child {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  margin-top: 1.1rem;
}

.woocommerce-checkout .woocommerce-additional-fields textarea {
  min-height: 120px;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  margin-top: 1.25rem;
}

.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  margin-bottom: 0.85rem;
}

.woocommerce-checkout #order_review table.shop_table {
  margin: 0;
}

.woocommerce-checkout #order_review .shop_table thead th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.woocommerce-checkout #order_review .shop_table tbody td,
.woocommerce-checkout #order_review .shop_table tfoot td,
.woocommerce-checkout #order_review .shop_table tfoot th {
  padding-left: 0.95rem;
  padding-right: 0.95rem;
}

.woocommerce-checkout #order_review .product-name {
  font-weight: 700;
}

.woocommerce-checkout #order_review .product-total,
.woocommerce-checkout #order_review .cart-subtotal td,
.woocommerce-checkout #order_review .order-total td,
.woocommerce-checkout #order_review .order-total th {
  font-weight: 800;
}

.woocommerce-checkout #payment .payment_methods {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout #payment .payment_method {
  padding: 0.15rem 0;
}

.woocommerce-checkout #payment .payment_method > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.woocommerce-checkout #payment .payment_method input[type="radio"] {
  accent-color: #2dd1a3;
}

.woocommerce-checkout #payment .place-order {
  display: grid;
  gap: 0.9rem;
}

.woocommerce-checkout #payment #place_order {
  letter-spacing: -0.01em;
  box-shadow: 0 20px 44px rgba(45, 209, 163, 0.22);
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a,
.woocommerce-checkout .place-order a,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-privacy-policy-text a {
  color: #73f3d1;
  font-weight: 600;
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .shop_table th {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account .shop_table td {
  line-height: 1.5;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a,
.woocommerce-account .woocommerce-orders-table__cell-order-total,
.woocommerce-account .woocommerce-orders-table__cell-order-status {
  font-weight: 700;
}

.woocommerce-account form.edit-account fieldset,
.woocommerce-account form.woocommerce-address-fields fieldset {
  margin: 0;
  padding: 1rem 0 0;
  border: 0;
}

.woocommerce-account form.edit-account legend,
.woocommerce-account form.woocommerce-address-fields legend {
  margin-bottom: 0.9rem;
}

.woocommerce-account .woocommerce-Address address {
  margin: 0;
  line-height: 1.7;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-radius: 1rem;
  border-top: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.woocommerce-message {
  border-left: 4px solid #2dd1a3;
}

.woocommerce-error {
  border-left: 4px solid #ff5f6d;
}

.woocommerce-info {
  border-left: 4px solid #53c0ff;
}

.woocommerce-checkout #order_review_heading {
  margin-bottom: 1rem;
}

.woocommerce-checkout #order_review .shop_table tfoot th,
.woocommerce-checkout #order_review .shop_table tfoot td {
  color: #fff;
  font-weight: 700;
}

.woocommerce-checkout #payment .place-order {
  padding: 1.25rem;
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.woocommerce-checkout #order_review .shop_table tbody td,
.woocommerce-checkout #order_review .shop_table tfoot td,
.woocommerce-checkout #order_review .shop_table tfoot th {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.woocommerce-checkout #order_review .product-name,
.woocommerce-cart .shop_table .product-name {
  font-weight: 700;
}

.woocommerce-checkout #order_review .product-total,
.woocommerce-checkout #order_review .order-total td,
.woocommerce-checkout #order_review .order-total th,
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total th {
  color: #fff;
  font-weight: 800;
}

.woocommerce-account .woocommerce-orders-table__row td:last-child,
.woocommerce-account .woocommerce-orders-table__cell-order-actions {
  text-align: right;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button + .button {
  margin-left: 0.5rem;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .place-order p,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-privacy-policy-text {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (min-width: 980px) {
  .woocommerce-account #customer_login,
  .woocommerce-checkout .col2-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin: 0;
    position: sticky;
    top: 110px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 1.5rem;
    align-items: start;
  }

  .woocommerce-checkout #order_review {
    position: sticky;
    top: 110px;
  }

  .woocommerce-account .woocommerce-Addresses,
  .woocommerce .addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
