:root {
  --v2-bg: #f5f7f8;
  --v2-bg-warm: #fbfaf8;
  --v2-surface: #ffffff;
  --v2-surface-soft: #edf4f7;
  --v2-text: #17222a;
  --v2-muted: #66747d;
  --v2-line: #dce6eb;
  --v2-accent: #296B91;
  --v2-accent-dark: #1f536f;
  --v2-accent-soft: #e6f0f5;
  --v2-ink: #0e1b24;
  --v2-gold: #c8a96a;
  --v2-radius-lg: 28px;
  --v2-radius-md: 18px;
  --v2-radius-sm: 12px;
  --v2-shadow: 0 22px 60px rgba(23, 34, 42, 0.12);
  --v2-shadow-soft: 0 12px 34px rgba(23, 34, 42, 0.07);
  --v2-container: 1200px;
  --v2-body-font: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --v2-heading-font: "Montserrat", "Poppins", ui-sans-serif, system-ui, sans-serif;
  --v2-logo-font: "Now", "Montserrat", "Poppins", ui-sans-serif, sans-serif;
}

* {
  box-sizing: border-box;
}

body.v3-monica-akademia-theme,
body.v4-monica-akademia-theme {
  margin: 0;
  background:
    radial-gradient(circle at 5% 0%, rgba(41, 107, 145, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--v2-bg) 52%, #ffffff 100%);
  color: var(--v2-text);
  font-family: var(--v2-body-font);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

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

.v2-container {
  width: min(var(--v2-container), calc(100% - 40px));
  margin-inline: auto;
}

.v2-skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--v2-ink);
  color: #fff;
  border-radius: 10px;
}

.v2-skip-link:focus {
  left: 16px;
}

.v2-site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(41, 107, 145, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.v2-site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v2-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--v2-logo-font);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--v2-ink);
}

.v2-site-brand img {
  max-height: 46px;
  width: auto;
}

.v2-menu,
.v2-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.v2-menu a,
.v2-footer-menu a {
  color: var(--v2-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.v2-menu a:hover,
.v2-footer-menu a:hover {
  color: var(--v2-accent);
}

.v2-site-main {
  min-height: 62vh;
}

.v2-page-shell {
  padding: 64px 0;
}

.v2-content-container {
  max-width: 920px;
}

.v2-content {
  background: var(--v2-surface);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  box-shadow: var(--v2-shadow-soft);
  padding: clamp(24px, 4vw, 52px);
}

.v2-content h1,
.v2-content h2,
.v2-content h3 {
  font-family: var(--v2-heading-font);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--v2-ink);
}

.v2-content h1 {
  font-size: clamp(32px, 5vw, 56px);
}

.v2-post-list {
  display: grid;
  gap: 18px;
}

.v2-post-card {
  background: var(--v2-surface);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-md);
  padding: 28px;
  box-shadow: var(--v2-shadow-soft);
}

.v2-post-card__title {
  margin: 0 0 8px;
  font-family: var(--v2-heading-font);
  letter-spacing: -0.035em;
}

.v2-post-card__excerpt {
  color: var(--v2-muted);
}

.v2-site-footer {
  border-top: 1px solid rgba(41, 107, 145, 0.14);
  background: #fff;
}

.v2-site-footer__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-site-footer__brand {
  font-family: var(--v2-logo-font);
  font-weight: 800;
  color: var(--v2-ink);
}

.v2-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--v2-accent);
  color: #fff;
  font-family: var(--v2-body-font);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.v2-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--v2-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(41, 107, 145, 0.25);
}

.v2-shop-archive {
  padding: 42px 0 76px;
}

.v2-shop-notices {
  margin-bottom: 18px;
}

.v2-shop-hero {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  border-radius: 34px;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 88% 16%, rgba(41, 107, 145, 0.22), transparent 36%),
    radial-gradient(circle at 8% 96%, rgba(200, 169, 106, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef5f8 100%);
  border: 1px solid rgba(41, 107, 145, 0.18);
  box-shadow: var(--v2-shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 30px;
  align-items: end;
}

.v2-shop-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(41, 107, 145, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.v2-shop-hero > * {
  position: relative;
  z-index: 1;
}

.v2-shop-eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(41, 107, 145, 0.1);
  color: var(--v2-accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-shop-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--v2-heading-font);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--v2-ink);
}

.v2-shop-description {
  max-width: 670px;
  margin-top: 18px;
  color: var(--v2-muted);
  font-size: 16px;
}

.v2-shop-description p {
  margin: 0;
}

.v2-shop-hero-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(41, 107, 145, 0.2);
  box-shadow: 0 20px 48px rgba(41, 107, 145, 0.14);
}

.v2-shop-hero-card span {
  display: block;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-shop-hero-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--v2-heading-font);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--v2-accent-dark);
}

.v2-mobile-filter-button {
  display: none;
  width: 100%;
  margin: 18px 0 0;
  min-height: 52px;
  border: 1px solid rgba(41, 107, 145, 0.18);
  border-radius: 999px;
  background: var(--v2-surface);
  color: var(--v2-accent-dark);
  font-weight: 800;
  box-shadow: var(--v2-shadow-soft);
}

.v2-shop-layout {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.v2-shop-sidebar {
  position: sticky;
  top: 110px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(41, 107, 145, 0.16);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--v2-shadow-soft);
}

.admin-bar .v2-shop-sidebar {
  top: 142px;
}

.v2-shop-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid rgba(41, 107, 145, 0.12);
}

.v2-shop-sidebar__top span {
  display: block;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-shop-sidebar__top strong {
  display: block;
  margin-top: 2px;
  font-family: var(--v2-heading-font);
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--v2-ink);
}

.v2-sidebar-close {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--v2-accent-soft);
  color: var(--v2-accent-dark);
  font-size: 24px;
  line-height: 1;
}

.v2-all-products-link,
.v2-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--v2-text);
  font-weight: 650;
}

.v2-all-products-link {
  margin-bottom: 7px;
  background: var(--v2-accent-soft);
  color: var(--v2-accent-dark);
}

.v2-all-products-link.is-current,
.v2-cat-item.is-current > .v2-cat-row .v2-cat-link {
  background: var(--v2-accent);
  color: #fff;
}

.v2-cat-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-cat-children .v2-cat-tree {
  padding-left: 12px;
  margin-left: 10px;
  border-left: 1px solid rgba(41, 107, 145, 0.14);
}

.v2-cat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 4px;
}

.v2-cat-link:hover,
.v2-all-products-link:hover {
  background: rgba(41, 107, 145, 0.08);
  color: var(--v2-accent-dark);
}

.v2-cat-item.is-current > .v2-cat-row .v2-cat-link:hover,
.v2-all-products-link.is-current:hover {
  background: var(--v2-accent);
  color: #fff;
}

.v2-cat-link small {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(41, 107, 145, 0.08);
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.v2-cat-item.is-current > .v2-cat-row .v2-cat-link small {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.v2-cat-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.v2-cat-toggle:hover {
  background: var(--v2-accent-soft);
}

.v2-cat-toggle span::before,
.v2-cat-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--v2-accent-dark);
  border-radius: 99px;
  transform: translate(-50%, -50%);
}

.v2-cat-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.v2-cat-item.is-open > .v2-cat-row .v2-cat-toggle span::after {
  opacity: 0;
}

.v2-cat-children {
  display: none;
  padding-top: 2px;
}

.v2-cat-item.is-open > .v2-cat-children {
  display: block;
}

.v2-shop-content {
  min-width: 0;
}

.v2-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 107, 145, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--v2-shadow-soft);
}

.v2-shop-count p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  font-weight: 650;
}

.v2-shop-ordering form {
  margin: 0;
}

.woocommerce .woocommerce-ordering select,
.v2-shop-ordering select {
  min-height: 42px;
  border: 1px solid rgba(41, 107, 145, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--v2-text);
  padding: 0 36px 0 14px;
  font-family: var(--v2-body-font);
  font-weight: 650;
}

.v2-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v2-product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--v2-surface);
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 28px;
  box-shadow: var(--v2-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.v2-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow);
  border-color: rgba(41, 107, 145, 0.36);
}

.v2-product-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 80% 12%, rgba(41, 107, 145, 0.13), transparent 34%),
    linear-gradient(135deg, #eef5f8, #ffffff);
  overflow: hidden;
}

.v2-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.v2-product-card:hover .v2-product-card__image img {
  transform: scale(1.035);
}

.v2-product-card__body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.v2-product-card__cat {
  width: max-content;
  max-width: 100%;
  margin-bottom: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--v2-accent-soft);
  color: var(--v2-accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-product-card__title {
  margin: 0;
  font-family: var(--v2-heading-font);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--v2-ink);
}

.v2-product-card__title a:hover {
  color: var(--v2-accent);
}

.v2-product-card__desc {
  margin: 10px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.55;
}

.v2-product-card__bottom {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  gap: 12px;
}

.v2-product-card__price {
  font-family: var(--v2-heading-font);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--v2-accent-dark);
}

.v2-product-card__price del {
  color: var(--v2-muted);
  font-size: 14px;
  font-weight: 600;
  margin-right: 5px;
}

.v2-product-card__price ins {
  text-decoration: none;
}

.v2-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--v2-accent);
  color: #fff;
  font-weight: 750;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-product-card__button:hover {
  background: var(--v2-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(41, 107, 145, 0.24);
}

.v2-shop-pagination {
  margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(41, 107, 145, 0.16);
  background: #fff;
  color: var(--v2-text);
  font-weight: 750;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: #fff;
}

.v2-empty-products {
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(41, 107, 145, 0.16);
  box-shadow: var(--v2-shadow-soft);
}

.v2-empty-products h2 {
  margin: 0 0 8px;
  font-family: var(--v2-heading-font);
  font-size: 32px;
  letter-spacing: -0.045em;
  color: var(--v2-ink);
}

.v2-empty-products p {
  margin: 0 0 18px;
  color: var(--v2-muted);
}

.v2-cats-overlay {
  display: none;
}

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

@media (max-width: 860px) {
  .admin-bar .v2-site-header {
    top: 0;
  }

  .v2-site-header {
    position: relative;
  }

  .v2-site-header__inner,
  .v2-site-footer__inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-shop-archive {
    padding-top: 24px;
  }

  .v2-shop-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 26px;
  }

  .v2-shop-hero-card {
    display: none;
  }

  .v2-mobile-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .v2-shop-layout {
    display: block;
  }

  .v2-shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(370px, calc(100vw - 32px));
    z-index: 1000;
    border-radius: 0 28px 28px 0;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    overflow: auto;
    top: 0;
    max-height: 100dvh;
  }

  .v2-shop-sidebar.is-open {
    transform: translateX(0);
  }

  .v2-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .v2-cats-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 18, 24, 0.42);
    backdrop-filter: blur(4px);
  }

  .v2-cats-overlay.is-open {
    display: block;
  }

  .v2-shop-content {
    margin-top: 18px;
  }

  .v2-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .v2-shop-ordering select,
  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .v2-container {
    width: min(100% - 24px, var(--v2-container));
  }

  .v2-products-grid {
    grid-template-columns: 1fr;
  }

  .v2-shop-hero {
    padding: 26px;
  }

  .v2-shop-hero h1 {
    font-size: clamp(34px, 13vw, 56px);
  }

  .v2-product-card {
    border-radius: 24px;
  }

  .v2-site-nav {
    width: 100%;
  }

  .v2-menu {
    gap: 10px;
  }

  .v2-menu a {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(41, 107, 145, 0.1);
  }
}

/* v3: spójniejsze kategorie, active jako podkreślenie zamiast mocnego przycisku */
body.v3-monica-akademia-theme .v2-all-products-link,
body.v3-monica-akademia-theme .v2-cat-link {
  position: relative;
  background: transparent;
  color: var(--v2-text);
  border-radius: 12px;
  padding: 10px 10px 12px;
  box-shadow: none;
}

body.v3-monica-akademia-theme .v2-all-products-link {
  margin-bottom: 6px;
}

body.v3-monica-akademia-theme .v2-all-products-link::after,
body.v3-monica-akademia-theme .v2-cat-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--v2-accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.v3-monica-akademia-theme .v2-all-products-link.is-current,
body.v3-monica-akademia-theme .v2-cat-item.is-current > .v2-cat-row .v2-cat-link {
  background: transparent;
  color: var(--v2-accent-dark);
}

body.v3-monica-akademia-theme .v2-all-products-link.is-current::after,
body.v3-monica-akademia-theme .v2-cat-item.is-current > .v2-cat-row .v2-cat-link::after {
  opacity: 1;
  transform: scaleX(1);
}

body.v3-monica-akademia-theme .v2-cat-link:hover,
body.v3-monica-akademia-theme .v2-all-products-link:hover {
  background: rgba(41, 107, 145, 0.06);
  color: var(--v2-accent-dark);
}

body.v3-monica-akademia-theme .v2-cat-item.is-current > .v2-cat-row .v2-cat-link:hover,
body.v3-monica-akademia-theme .v2-all-products-link.is-current:hover {
  background: rgba(41, 107, 145, 0.06);
  color: var(--v2-accent-dark);
}

body.v3-monica-akademia-theme .v2-cat-item.is-current > .v2-cat-row .v2-cat-link small {
  background: rgba(41, 107, 145, 0.1);
  color: var(--v2-accent-dark);
}

body.v3-monica-akademia-theme .v2-shop-sidebar__top {
  padding-bottom: 13px;
}

body.v3-monica-akademia-theme .v2-shop-toolbar {
  min-height: 64px;
}

body.v3-monica-akademia-theme .v2-product-card__button,
body.v3-monica-akademia-theme .v2-btn,
body.v3-monica-akademia-theme .button,
body.v3-monica-akademia-theme .woocommerce a.button,
body.v3-monica-akademia-theme .woocommerce button.button,
body.v3-monica-akademia-theme .woocommerce input.button {
  letter-spacing: 0.01em;
}

/* v4 product landing and purchase flow */
.v4-container {
  width: min(var(--v2-container), calc(100% - 40px));
  margin-inline: auto;
}

.v4-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(41, 107, 145, 0.1);
  color: var(--v2-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.v4-btn,
.woocommerce .v4-btn,
.woocommerce-page .v4-btn,
.v4-add-to-cart-wrap .single_add_to_cart_button,
.v4-cart-summary .checkout-button,
.v4-checkout-review #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--v2-body-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.v4-btn:hover,
.v4-add-to-cart-wrap .single_add_to_cart_button:hover,
.v4-cart-summary .checkout-button:hover,
.v4-checkout-review #place_order:hover {
  transform: translateY(-1px);
}

.v4-btn--primary,
.v4-add-to-cart-wrap .single_add_to_cart_button,
.v4-cart-summary .checkout-button,
.v4-checkout-review #place_order {
  background: var(--v2-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(41, 107, 145, 0.24);
}

.v4-btn--ghost {
  background: #fff;
  color: var(--v2-accent);
  border-color: rgba(41, 107, 145, 0.22);
}

.v4-btn--white {
  background: #fff;
  color: var(--v2-accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.v4-notices {
  padding-top: 26px;
}

.v4-course-landing {
  background:
    radial-gradient(circle at 14% 0%, rgba(41, 107, 145, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5f7f8 38%, #fff 100%);
}

.v4-course-hero {
  padding: 56px 0 26px;
}

.v4-course-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.v4-course-hero__content {
  min-height: 620px;
  padding: 46px;
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(41, 107, 145, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--v2-shadow-soft);
}

.v4-breadcrumb {
  margin-bottom: 26px;
  color: var(--v2-muted);
  font-size: 13px;
}

.v4-breadcrumb a {
  color: var(--v2-accent);
  font-weight: 700;
}

.v4-course-kicker {
  margin: 22px 0 10px;
  color: var(--v2-accent);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v4-course-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(44px, 6vw, 84px);
  line-height: .94;
  letter-spacing: -0.06em;
}

.v4-course-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--v2-text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.v4-course-intro {
  max-width: 760px;
  margin-top: 24px;
  color: var(--v2-muted);
  font-size: 16px;
}

.v4-course-intro p,
.v4-course-section p {
  margin: 0 0 15px;
}

.v4-course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.v4-course-buybox {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(41, 107, 145, 0.16);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--v2-shadow);
}

.admin-bar .v4-course-buybox {
  top: 144px;
}

.v4-course-buybox__image {
  min-height: 270px;
  background: #eef4f7;
}

.v4-course-buybox__image img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.v4-course-buybox__body {
  padding: 28px;
}

.v4-course-buybox__body > span {
  display: block;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.v4-course-price {
  display: block;
  margin-top: 8px;
  color: var(--v2-accent);
  font-family: var(--v2-heading-font);
  font-size: 34px;
  line-height: 1;
}

.v4-add-to-cart-wrap {
  margin-top: 22px;
}

.v4-add-to-cart-wrap form.cart {
  display: grid;
  gap: 12px;
  margin: 0;
}

.v4-add-to-cart-wrap form.cart .quantity {
  display: none;
}

.v4-add-to-cart-wrap .single_add_to_cart_button {
  width: 100%;
}

.v4-course-buybox__body p {
  margin: 16px 0 0;
  color: var(--v2-muted);
  font-size: 13px;
}

.v4-course-stats {
  padding: 10px 0 36px;
}

.v4-course-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v4-course-stats__grid div {
  min-height: 116px;
  padding: 24px;
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--v2-shadow-soft);
}

.v4-course-stats strong {
  display: block;
  color: var(--v2-accent);
  font-family: var(--v2-heading-font);
  font-size: 34px;
  line-height: 1;
}

.v4-course-stats span {
  display: block;
  margin-top: 8px;
  color: var(--v2-muted);
  font-size: 13px;
  font-weight: 700;
}

.v4-course-section {
  padding: 54px 0;
}

.v4-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: stretch;
}

.v4-split--reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
}

.v4-course-section h2,
.v4-section-head h2,
.v4-final-box h2,
.v4-woo-hero h1,
.v4-empty-box h1,
.v4-thankyou-box h1 {
  margin: 16px 0 18px;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.v4-course-section p {
  color: var(--v2-muted);
  font-size: 16px;
}

.v4-lab-card,
.v4-card-panel,
.v4-checkout-card,
.v4-cart-card,
.v4-dashboard-box,
.v4-empty-box,
.v4-thankyou-box {
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--v2-shadow-soft);
}

.v4-lab-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.v4-lab-card > span {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(41, 107, 145, .18), rgba(41, 107, 145, .04));
  border: 1px solid rgba(41, 107, 145, .2);
}

.v4-lab-card h3 {
  margin: 0 0 18px;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: 28px;
  line-height: 1.12;
}

.v4-lab-card--blue {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 34%),
    var(--v2-accent);
  color: #fff;
}

.v4-lab-card--blue h3,
.v4-lab-card--blue p,
.v4-lab-card--blue li {
  color: #fff;
}

.v4-card-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 28px;
  padding: 38px;
}

.v4-check-list,
.v4-module-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v4-check-list li,
.v4-module-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.v4-check-list li span,
.v4-module-list li span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(41, 107, 145, .12);
  border: 1px solid rgba(41, 107, 145, .2);
}

.v4-check-list li span::after,
.v4-module-list li span::after {
  content: '';
  width: 7px;
  height: 11px;
  margin: 3px 0 0 7px;
  border: solid var(--v2-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.v4-check-list p,
.v4-module-list p {
  margin: 0;
  color: var(--v2-text);
}

.v4-check-list--light li span {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .32);
}

.v4-check-list--light li span::after {
  border-color: #fff;
}

.v4-section-head {
  max-width: 800px;
  margin-bottom: 30px;
}

.v4-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.v4-section-head--center .v4-eyebrow {
  margin-inline: auto;
}

.v4-program-list,
.v4-faq-list {
  display: grid;
  gap: 12px;
}

.v4-program-item,
.v4-faq-item {
  overflow: hidden;
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 34, 42, 0.05);
}

.v4-program-item__top,
.v4-faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--v2-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.v4-program-item__top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(41, 107, 145, .1);
  color: var(--v2-accent);
  font-weight: 900;
}

.v4-program-item__top strong,
.v4-faq-item button span {
  font-family: var(--v2-heading-font);
  font-size: 18px;
  font-weight: 800;
}

.v4-program-item__top i,
.v4-faq-item button i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(41, 107, 145, .1);
}

.v4-program-item__top i::before,
.v4-program-item__top i::after,
.v4-faq-item button i::before,
.v4-faq-item button i::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  background: var(--v2-accent);
  transition: transform .2s ease;
}

.v4-program-item__top i::after,
.v4-faq-item button i::after {
  transform: rotate(90deg);
}

.v4-program-item.is-open .v4-program-item__top i::after,
.v4-faq-item.is-open button i::after {
  transform: rotate(0deg);
}

.v4-program-item__body,
.v4-faq-item__body {
  display: none;
  padding: 0 24px 24px 94px;
}

.v4-program-item.is-open .v4-program-item__body,
.v4-faq-item.is-open .v4-faq-item__body {
  display: block;
}

.v4-faq-item button {
  grid-template-columns: 1fr 34px;
}

.v4-faq-item__body {
  padding-left: 24px;
}

.v4-course-final-cta {
  padding: 56px 0 78px;
}

.v4-final-box {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 34%),
    var(--v2-accent);
  color: #fff;
  box-shadow: var(--v2-shadow);
}

.v4-final-box .v4-eyebrow {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.v4-final-box h2,
.v4-final-box p {
  color: #fff;
}

.v4-final-box p {
  max-width: 720px;
}

/* Woo purchase views */
.v4-woo-page {
  padding: 46px 0 78px;
  background:
    radial-gradient(circle at 8% 0%, rgba(41, 107, 145, .11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f7f8 56%, #fff 100%);
}

.v4-woo-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding: 34px;
  border: 1px solid rgba(41, 107, 145, 0.14);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--v2-shadow-soft);
}

.v4-woo-hero h1 {
  margin-bottom: 10px;
}

.v4-woo-hero p {
  margin: 0;
  max-width: 680px;
  color: var(--v2-muted);
}

.v4-woo-hero__step {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(41, 107, 145, .1);
  color: var(--v2-accent);
  font-size: 13px;
  font-weight: 900;
}

.v4-cart-layout,
.v4-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.v4-cart-items,
.v4-checkout-main {
  display: grid;
  gap: 16px;
}

.v4-cart-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 18px;
}

.v4-cart-card__image {
  overflow: hidden;
  border-radius: 20px;
  background: #eef4f7;
}

.v4-cart-card__image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.v4-cart-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.v4-cart-card__top span,
.v4-cart-card__meta small {
  display: block;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v4-cart-card__top h2 {
  margin: 6px 0 0;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: 22px;
  line-height: 1.15;
}

.v4-cart-remove {
  align-self: start;
  color: var(--v2-muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v4-cart-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.v4-cart-card__meta > div {
  padding: 14px;
  border: 1px solid rgba(41, 107, 145, .12);
  border-radius: 18px;
  background: #f8fafb;
}

.v4-cart-card__meta strong {
  display: block;
  margin-top: 6px;
  color: var(--v2-ink);
}

.v4-cart-card .quantity input,
.v4-checkout-fields input.input-text,
.v4-checkout-fields textarea,
.v4-checkout-fields select,
.v4-coupon input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 107, 145, .18);
  border-radius: 14px;
  background: #fff;
  color: var(--v2-ink);
  font-family: var(--v2-body-font);
}

.v4-cart-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px;
  border: 1px solid rgba(41, 107, 145, .14);
  border-radius: 24px;
  background: #fff;
}

.v4-coupon label {
  display: block;
  margin-bottom: 8px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v4-coupon > div {
  display: flex;
  gap: 8px;
}

.v4-cart-summary,
.v4-checkout-card--sticky {
  position: sticky;
  top: 112px;
}

.admin-bar .v4-cart-summary,
.admin-bar .v4-checkout-card--sticky {
  top: 144px;
}

.v4-cart-summary .cart_totals {
  width: 100%;
  float: none;
  padding: 24px;
  border: 1px solid rgba(41, 107, 145, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--v2-shadow-soft);
}

.v4-cart-summary .cart_totals h2 {
  margin: 0 0 18px;
  font-family: var(--v2-heading-font);
  font-size: 24px;
}

.v4-cart-summary table,
.v4-checkout-review table,
.v4-order-details-wrap table,
.v4-account-content table {
  width: 100%;
  border-collapse: collapse;
}

.v4-cart-summary th,
.v4-cart-summary td,
.v4-checkout-review th,
.v4-checkout-review td,
.v4-order-details-wrap th,
.v4-order-details-wrap td,
.v4-account-content th,
.v4-account-content td {
  padding: 13px 0;
  border-bottom: 1px solid rgba(41, 107, 145, .12);
  text-align: left;
}

.v4-cart-summary .checkout-button,
.v4-checkout-review #place_order {
  width: 100%;
  margin-top: 18px;
}

.v4-checkout-fields {
  display: grid;
  gap: 16px;
}

.v4-checkout-card {
  padding: 26px;
}

.v4-checkout-card__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.v4-checkout-card__head span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(41, 107, 145, .1);
  color: var(--v2-accent);
  font-weight: 900;
}

.v4-checkout-card__head h2 {
  margin: 0;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: 22px;
}

.v4-checkout-fields .form-row label,
.woocommerce form .form-row label {
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v4-checkout-review .woocommerce-checkout-payment {
  border-radius: 20px;
  background: #f7fafb;
}

.v4-empty-box,
.v4-thankyou-box,
.v4-dashboard-box {
  max-width: 880px;
  margin-inline: auto;
  padding: 42px;
  text-align: center;
}

.v4-empty-box .v4-eyebrow,
.v4-thankyou-box .v4-eyebrow,
.v4-dashboard-box .v4-eyebrow {
  margin-inline: auto;
}

.v4-order-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 30px 0;
  text-align: left;
}

.v4-order-summary-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #f7fafb;
  border: 1px solid rgba(41, 107, 145, .12);
}

.v4-order-summary-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v4-order-summary-grid strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--v2-ink);
}

.v4-thankyou-actions,
.v4-dashboard-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.v4-order-details-wrap {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(41, 107, 145, .14);
  border-radius: 28px;
  background: #fff;
}

.v4-account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.v4-account-nav,
.v4-account-content {
  border: 1px solid rgba(41, 107, 145, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--v2-shadow-soft);
}

.v4-account-nav {
  padding: 16px;
  align-self: start;
}

.v4-account-content {
  padding: 28px;
}

.v4-account-nav .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v4-account-nav .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--v2-muted);
  font-weight: 800;
}

.v4-account-nav .woocommerce-MyAccount-navigation .is-active a,
.v4-account-nav .woocommerce-MyAccount-navigation a:hover {
  background: rgba(41, 107, 145, .1);
  color: var(--v2-accent);
}

@media (max-width: 1040px) {
  .v4-course-hero__grid,
  .v4-cart-layout,
  .v4-checkout-layout,
  .v4-account-layout {
    grid-template-columns: 1fr;
  }

  .v4-course-buybox,
  .v4-cart-summary,
  .v4-checkout-card--sticky {
    position: static;
  }

  .v4-order-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .v4-container {
    width: min(100% - 28px, var(--v2-container));
  }

  .v4-course-hero {
    padding-top: 26px;
  }

  .v4-course-hero__content,
  .v4-card-panel,
  .v4-final-box,
  .v4-woo-hero,
  .v4-checkout-card,
  .v4-empty-box,
  .v4-thankyou-box,
  .v4-dashboard-box {
    padding: 24px;
    border-radius: 24px;
  }

  .v4-course-hero__content {
    min-height: auto;
  }

  .v4-course-hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .v4-course-stats__grid,
  .v4-split,
  .v4-split--reverse,
  .v4-card-panel,
  .v4-cart-card {
    grid-template-columns: 1fr;
  }

  .v4-cart-card__meta {
    grid-template-columns: 1fr;
  }

  .v4-program-item__top {
    grid-template-columns: 42px 1fr 28px;
    gap: 12px;
    padding: 18px;
  }

  .v4-program-item__top span {
    width: 42px;
    height: 42px;
  }

  .v4-program-item__body {
    padding: 0 18px 20px;
  }

  .v4-woo-hero,
  .v4-final-box,
  .v4-cart-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .v4-coupon,
  .v4-coupon > div,
  .v4-cart-actions .button,
  .v4-btn {
    width: 100%;
  }

  .v4-order-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* v5 professional single product landing, inspired by modern LP composition */
.v5-container {
  width: min(var(--v2-container), calc(100% - 40px));
  margin-inline: auto;
}

.v5-course-landing,
.v5-course-landing * {
  box-sizing: border-box;
}

.v5-course-landing {
  --v5-ink: #07121a;
  --v5-text: #1e2d38;
  --v5-muted: #61717c;
  --v5-soft: #f5f8fa;
  --v5-paper: #fbfcfc;
  --v5-line: rgba(41, 107, 145, .14);
  --v5-line-strong: rgba(41, 107, 145, .22);
  --v5-accent: #296B91;
  --v5-accent-dark: #174966;
  --v5-shadow: 0 28px 90px rgba(7, 18, 26, .12);
  --v5-shadow-soft: 0 18px 54px rgba(7, 18, 26, .075);
  --v5-side: max(20px, calc((100vw - var(--v2-container)) / 2));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(41, 107, 145, .10), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(41, 107, 145, .08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f5f8fa 43%, #fff 100%);
  color: var(--v5-text);
  font-family: var(--v2-body-font);
}

.v5-course-landing p,
.v5-course-landing h1,
.v5-course-landing h2,
.v5-course-landing h3 {
  margin-top: 0;
}

.v5-course-landing p {
  color: var(--v5-muted);
  font-size: 16px;
  line-height: 1.82;
}

.v5-notices {
  padding-top: 24px;
}

.v5-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v5-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.v5-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--v5-accent);
}

.v5-btn,
.woocommerce .v5-btn,
.woocommerce-page .v5-btn,
.v5-add-to-cart-wrap .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--v2-body-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.v5-btn:hover,
.v5-add-to-cart-wrap .single_add_to_cart_button:hover {
  transform: translateY(-2px);
}

.v5-btn--primary,
.v5-add-to-cart-wrap .single_add_to_cart_button {
  background: var(--v5-accent);
  border-color: var(--v5-accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(41, 107, 145, .26);
}

.v5-btn--primary:hover,
.v5-add-to-cart-wrap .single_add_to_cart_button:hover {
  background: var(--v5-accent-dark);
  border-color: var(--v5-accent-dark);
  color: #fff;
}

.v5-btn--ghost {
  background: transparent;
  border-color: rgba(7, 18, 26, .18);
  color: var(--v5-ink);
}

.v5-btn--ghost:hover {
  background: var(--v5-ink);
  border-color: var(--v5-ink);
  color: #fff;
}

.v5-btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--v5-accent-dark);
}

.v5-btn--light:hover {
  background: transparent;
  color: #fff;
}

.v5-breadcrumb {
  margin-bottom: 32px;
  color: var(--v5-muted);
  font-size: 13px;
}

.v5-breadcrumb a {
  color: var(--v5-accent);
  font-weight: 700;
}

.v5-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  min-height: 760px;
  border-bottom: 1px solid var(--v5-line);
}

.v5-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px clamp(28px, 7vw, 120px) 86px var(--v5-side);
  overflow: hidden;
}

.v5-hero__copy::before {
  content: "M";
  position: absolute;
  right: 26px;
  top: 62px;
  color: rgba(41, 107, 145, .045);
  font-family: var(--v2-heading-font);
  font-size: clamp(210px, 24vw, 360px);
  font-weight: 800;
  line-height: .75;
  pointer-events: none;
}

.v5-kicker {
  position: relative;
  z-index: 2;
  margin: 28px 0 14px;
  color: var(--v5-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v5-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-bottom: 26px;
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(42px, 5.1vw, 70px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
  overflow-wrap: normal;
}

.v5-lead {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--v5-text);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.v5-intro {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.v5-intro p {
  margin-bottom: 14px;
}

.v5-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.v5-hero__trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  max-width: 760px;
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid rgba(41, 107, 145, .12);
  background: rgba(255, 255, 255, .68);
}

.v5-hero__trust span {
  display: block;
  background: var(--v5-accent);
}

.v5-hero__trust p {
  margin: 0;
  color: var(--v5-text);
  font-size: 13.5px;
  line-height: 1.65;
}

.v5-hero__visual {
  position: relative;
  min-height: 760px;
  padding: 86px var(--v5-side) 86px 38px;
  background:
    linear-gradient(90deg, rgba(41, 107, 145, .10), rgba(41, 107, 145, .20)),
    #eaf2f6;
  overflow: hidden;
}

.v5-hero__visual::before {
  content: "CHEMIA";
  position: absolute;
  right: -32px;
  bottom: 18px;
  color: rgba(255, 255, 255, .28);
  font-family: var(--v2-heading-font);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
}

.v5-hero__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dfe9ef;
  box-shadow: var(--v5-shadow);
}

.v5-hero__image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.v5-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 26, .02), rgba(7, 18, 26, .44)),
    linear-gradient(90deg, rgba(7, 18, 26, .14), transparent 45%);
  pointer-events: none;
}

.v5-hero__image-tag {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  padding: 11px 16px;
  background: var(--v5-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.v5-buy-card {
  position: relative;
  z-index: 4;
  width: min(420px, calc(100% - 40px));
  margin: -90px 0 0 auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--v5-shadow);
  backdrop-filter: blur(12px);
}

.v5-buy-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--v5-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.v5-buy-card h2 {
  margin: 0 0 16px;
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.v5-price {
  display: block;
  margin-bottom: 18px;
  color: var(--v5-accent-dark);
  font-family: var(--v2-heading-font);
  font-size: 38px;
  line-height: 1;
}

.v5-add-to-cart-wrap form.cart {
  display: grid;
  gap: 12px;
  margin: 0;
}

.v5-add-to-cart-wrap form.cart .quantity {
  display: none;
}

.v5-add-to-cart-wrap .single_add_to_cart_button {
  width: 100%;
}

.v5-buy-card p {
  margin: 16px 0 0;
  color: var(--v5-muted);
  font-size: 13px;
  line-height: 1.65;
}

.v5-stats {
  padding: 28px 0 60px;
}

.v5-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.v5-stats__grid div {
  min-height: 126px;
  padding: 24px;
  border: 1px solid var(--v5-line);
  background: #fff;
  box-shadow: var(--v5-shadow-soft);
}

.v5-stats strong {
  display: block;
  color: var(--v5-accent-dark);
  font-family: var(--v2-heading-font);
  font-size: 38px;
  line-height: 1;
}

.v5-stats span {
  display: block;
  margin-top: 9px;
  color: var(--v5-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v5-section {
  position: relative;
  padding: 90px 0;
}

.v5-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.v5-split--reverse {
  grid-template-columns: 1fr 1fr;
}

.v5-photo-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #e9f1f5;
  box-shadow: var(--v5-shadow);
}

.v5-photo-card img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.v5-photo-card::after {
  content: "M";
  position: absolute;
  right: -10px;
  bottom: -72px;
  color: rgba(255, 255, 255, .18);
  font-family: var(--v2-heading-font);
  font-size: 360px;
  font-weight: 800;
  line-height: 1;
}

.v5-photo-card__label {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  padding: 11px 16px;
  background: var(--v5-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.v5-copy h2,
.v5-title-row h2,
.v5-program-intro h2,
.v5-blue-card h2,
.v5-faq-intro h2,
.v5-dark-card h2,
.v5-final-inner h2 {
  margin: 20px 0 22px;
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.v5-copy p {
  max-width: 760px;
}

.v5-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.v5-pillars article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--v5-line);
  background: rgba(255, 255, 255, .78);
}

.v5-pillars span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--v5-ink);
  color: #fff;
  font-weight: 800;
}

.v5-pillars h3 {
  margin: 0;
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: 18px;
  line-height: 1.32;
}

.v5-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(41, 107, 145, .28), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, .06), transparent 25%),
    var(--v5-ink);
  color: #fff;
}

.v5-dark-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}

.v5-dark-card {
  position: relative;
  min-height: 430px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
}

.v5-dark-card::before {
  content: "4.0";
  position: absolute;
  right: 18px;
  bottom: -28px;
  color: rgba(255, 255, 255, .05);
  font-family: var(--v2-heading-font);
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
}

.v5-dark .v5-label {
  color: #fff;
}

.v5-dark .v5-label::before {
  background: #fff;
}

.v5-dark h2,
.v5-dark p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.v5-dark p {
  color: rgba(255, 255, 255, .72);
}

.v5-dark-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.v5-dark-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.v5-dark-list span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(41, 107, 145, .64);
}

.v5-dark-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.v5-title-row {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.v5-title-row h2 {
  margin-bottom: 0;
}

.v5-title-row__text p {
  margin-bottom: 0;
}

.v5-check-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.v5-check-cards article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--v5-line);
  background: #fff;
  box-shadow: var(--v5-shadow-soft);
}

.v5-check-cards span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--v5-accent);
  color: #fff;
  font-weight: 800;
}

.v5-check-cards h3 {
  margin: 0;
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: 20px;
  line-height: 1.32;
}

.v5-program {
  background:
    radial-gradient(circle at 90% 8%, rgba(41, 107, 145, .08), transparent 25%),
    #f7f9fa;
}

.v5-program-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.v5-program-intro {
  position: sticky;
  top: 112px;
  padding: 34px;
  border: 1px solid var(--v5-line);
  background: #fff;
  box-shadow: var(--v5-shadow-soft);
}

.admin-bar .v5-program-intro {
  top: 144px;
}

.v5-program-intro .v5-btn {
  margin-top: 18px;
  width: 100%;
}

.v5-program-list,
.v5-faq-list {
  display: grid;
  gap: 12px;
}

.v5-program-item,
.v5-faq-item {
  overflow: hidden;
  border: 1px solid var(--v5-line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 18, 26, .055);
}

.v5-program-item__top,
.v5-faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--v5-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.v5-program-item__top span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: rgba(41, 107, 145, .10);
  color: var(--v5-accent);
  font-weight: 900;
}

.v5-program-item__top strong,
.v5-faq-item button span {
  color: var(--v5-ink);
  font-family: var(--v2-heading-font);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.v5-program-item__top i,
.v5-faq-item button i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(41, 107, 145, .18);
  background: rgba(41, 107, 145, .08);
}

.v5-program-item__top i::before,
.v5-program-item__top i::after,
.v5-faq-item button i::before,
.v5-faq-item button i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  background: var(--v5-accent);
  transition: transform .22s ease;
}

.v5-program-item__top i::after,
.v5-faq-item button i::after {
  transform: rotate(90deg);
}

.v5-program-item.is-open .v5-program-item__top i::after,
.v5-faq-item.is-open button i::after {
  transform: rotate(0deg);
}

.v5-program-item__body,
.v5-faq-item__body {
  display: none;
  padding: 0 24px 24px 96px;
}

.v5-program-item.is-open .v5-program-item__body,
.v5-faq-item.is-open .v5-faq-item__body {
  display: block;
}

.v5-module-list,
.v5-light-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v5-module-list li,
.v5-light-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.v5-module-list li span,
.v5-light-list li span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: rgba(41, 107, 145, .10);
  border: 1px solid rgba(41, 107, 145, .20);
}

.v5-module-list li span::after,
.v5-light-list li span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid var(--v5-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.v5-module-list p,
.v5-light-list p {
  margin: 0;
  color: var(--v5-text);
  font-size: 15px;
  line-height: 1.6;
}

.v5-blue-card {
  min-height: 510px;
  padding: 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .20), transparent 32%),
    var(--v5-accent);
  color: #fff;
  box-shadow: var(--v5-shadow);
}

.v5-blue-card .v5-label,
.v5-blue-card h2,
.v5-blue-card p {
  color: #fff;
}

.v5-blue-card .v5-label::before {
  background: #fff;
}

.v5-blue-card .v5-light-list {
  margin-top: 26px;
}

.v5-blue-card .v5-light-list li span {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
}

.v5-blue-card .v5-light-list li span::after {
  border-color: #fff;
}

.v5-blue-card .v5-light-list p {
  color: rgba(255, 255, 255, .92);
}

.v5-outcomes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.v5-outcomes div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--v5-line);
  background: #fff;
}

.v5-outcomes span {
  width: 30px;
  height: 30px;
  background: rgba(41, 107, 145, .10);
  border: 1px solid rgba(41, 107, 145, .18);
}

.v5-outcomes p {
  margin: 0;
  color: var(--v5-text);
  font-size: 15px;
  line-height: 1.55;
}

.v5-faq {
  background: #f7f9fa;
}

.v5-faq-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.v5-faq-intro {
  position: sticky;
  top: 112px;
}

.admin-bar .v5-faq-intro {
  top: 144px;
}

.v5-faq-item button {
  grid-template-columns: 1fr 34px;
}

.v5-faq-item__body {
  padding-left: 24px;
}

.v5-faq-item__body p {
  margin-bottom: 0;
}

.v5-final-cta {
  position: relative;
  padding: 78px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .12), transparent 24%),
    var(--v5-ink);
  color: #fff;
  overflow: hidden;
}

.v5-final-cta::before {
  content: "M";
  position: absolute;
  right: 6%;
  bottom: -96px;
  color: rgba(255, 255, 255, .04);
  font-family: var(--v2-heading-font);
  font-size: 360px;
  font-weight: 800;
  line-height: 1;
}

.v5-final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
}

.v5-final-inner .v5-label,
.v5-final-inner h2,
.v5-final-inner p {
  color: #fff;
}

.v5-final-inner .v5-label::before {
  background: #fff;
}

.v5-final-inner h2 {
  max-width: 820px;
}

.v5-final-inner p {
  max-width: 760px;
  color: rgba(255, 255, 255, .72);
}

.v5-final-buy {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}

.v5-final-buy strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--v2-heading-font);
  font-size: 42px;
  line-height: 1;
}

.v5-final-buy .v5-btn {
  width: 100%;
}

.v5-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.v5-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .v5-hero {
    grid-template-columns: 1fr;
  }

  .v5-hero__copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .v5-hero__visual {
    min-height: auto;
    padding: 40px 20px 64px;
  }

  .v5-buy-card {
    margin-left: 0;
  }

  .v5-split,
  .v5-split--reverse,
  .v5-dark-grid,
  .v5-program-grid,
  .v5-faq-grid {
    grid-template-columns: 1fr;
  }

  .v5-program-intro,
  .v5-faq-intro {
    position: relative;
    top: auto;
  }

  .admin-bar .v5-program-intro,
  .admin-bar .v5-faq-intro {
    top: auto;
  }

  .v5-check-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .v5-container {
    width: min(100% - 28px, var(--v2-container));
  }

  .v5-section {
    padding: 68px 0;
  }

  .v5-hero {
    min-height: auto;
  }

  .v5-hero__copy {
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .v5-hero h1 {
    letter-spacing: -.055em;
  }

  .v5-hero__image,
  .v5-photo-card,
  .v5-blue-card {
    min-height: auto;
  }

  .v5-hero__image img,
  .v5-photo-card img {
    height: 420px;
  }

  .v5-buy-card {
    width: 100%;
    margin-top: -44px;
    padding: 24px;
  }

  .v5-stats__grid,
  .v5-pillars,
  .v5-dark-list,
  .v5-check-cards,
  .v5-title-row,
  .v5-final-inner {
    grid-template-columns: 1fr;
  }

  .v5-title-row {
    gap: 22px;
  }

  .v5-program-item__top {
    grid-template-columns: 42px 1fr 30px;
    gap: 14px;
    padding: 18px;
  }

  .v5-program-item__top span {
    width: 42px;
    height: 42px;
  }

  .v5-program-item__body {
    padding: 0 18px 20px 74px;
  }

  .v5-blue-card,
  .v5-dark-card,
  .v5-program-intro,
  .v5-final-buy {
    padding: 28px;
  }
}


/* v6: smaller LP hero heading so long course names like KLEJOHACKING do not dominate or clip */
.v5-hero h1 {
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 780px;
}

@media (max-width: 760px) {
  .v5-hero h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
  }
}


/* v7 direct cart CTA on single product landing */
.v5-buy-card__button {
  width: 100%;
  margin-top: 18px;
}

.v5-product-id-note {
  display: block;
  margin-top: 10px;
  color: rgba(10, 28, 40, 0.48);
  font-size: 11px;
  line-height: 1.4;
}

/* v8 header: ACF logo, cart, Tutor LMS login */
body.v4-monica-akademia-theme .v2-site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(41, 107, 145, 0.12);
  box-shadow: 0 12px 34px rgba(23, 34, 42, 0.045);
}

body.v4-monica-akademia-theme .v2-site-header.is-sticky {
  position: sticky;
  top: 0;
  z-index: 70;
}

body.v4-monica-akademia-theme .v2-site-header.is-static {
  position: relative;
}

body.admin-bar.v4-monica-akademia-theme .v2-site-header.is-sticky {
  top: 32px;
}

body.v4-monica-akademia-theme .v2-site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

body.v4-monica-akademia-theme .v2-site-brand {
  min-width: 0;
  color: var(--v2-ink);
}

body.v4-monica-akademia-theme .v2-site-brand__logo,
body.v4-monica-akademia-theme .v2-site-brand img {
  display: block;
  width: var(--logo-width, 156px);
  max-width: min(210px, 38vw);
  max-height: 54px;
  object-fit: contain;
}

body.v4-monica-akademia-theme .v2-site-nav {
  min-width: 0;
}

body.v4-monica-akademia-theme .v2-menu {
  justify-content: center;
  gap: clamp(12px, 2.1vw, 26px);
}

body.v4-monica-akademia-theme .v2-menu a {
  color: #41515b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

body.v4-monica-akademia-theme .v2-menu a:hover,
body.v4-monica-akademia-theme .v2-menu .current-menu-item > a {
  color: var(--v2-accent);
}

body.v4-monica-akademia-theme .v2-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

body.v4-monica-akademia-theme .v2-header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(41, 107, 145, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--v2-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

body.v4-monica-akademia-theme .v2-header-action:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 107, 145, 0.34);
  background: #fff;
  color: var(--v2-accent);
}

body.v4-monica-akademia-theme .v2-header-action--login {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(41, 107, 145, 0.20);
}

body.v4-monica-akademia-theme .v2-header-action--login:hover {
  background: var(--v2-accent-dark);
  border-color: var(--v2-accent-dark);
  color: #fff;
}

body.v4-monica-akademia-theme .v2-header-action__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

body.v4-monica-akademia-theme .v2-header-action__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.v4-monica-akademia-theme .v2-header-action--cart strong {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--v2-accent-soft);
  color: var(--v2-accent);
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 980px) {
  body.v4-monica-akademia-theme .v2-site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    gap: 14px;
  }

  body.v4-monica-akademia-theme .v2-site-nav {
    grid-column: 1 / -1;
    width: 100%;
    order: 3;
  }

  body.v4-monica-akademia-theme .v2-menu {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 0 13px;
    scrollbar-width: none;
  }

  body.v4-monica-akademia-theme .v2-menu::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 860px) {
  body.admin-bar.v4-monica-akademia-theme .v2-site-header.is-sticky {
    top: 0;
  }

  body.v4-monica-akademia-theme .v2-site-header.is-sticky {
    position: sticky;
  }

  body.v4-monica-akademia-theme .v2-site-header__inner,
  body.v4-monica-akademia-theme .v2-site-footer__inner {
    flex-direction: initial;
    align-items: center;
  }
}

@media (max-width: 680px) {
  body.v4-monica-akademia-theme .v2-site-header__inner {
    width: min(var(--v2-container), calc(100% - 26px));
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 13px 0 11px;
  }

  body.v4-monica-akademia-theme .v2-site-brand {
    justify-content: center;
  }

  body.v4-monica-akademia-theme .v2-site-brand__logo,
  body.v4-monica-akademia-theme .v2-site-brand img {
    width: min(var(--logo-width, 150px), 64vw);
    max-height: 48px;
  }

  body.v4-monica-akademia-theme .v2-header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body.v4-monica-akademia-theme .v2-header-action {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
    font-size: 12px;
  }

  body.v4-monica-akademia-theme .v2-site-nav {
    display: none;
  }
}

/* v10 footer */
body.v4-monica-akademia-theme .mz-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(41, 107, 145, 0.14);
  background:
    radial-gradient(circle at 12% 8%, rgba(41, 107, 145, 0.10), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(41, 107, 145, 0.08), transparent 28%),
    #f6f9fb;
  color: var(--v2-ink);
}

body.v4-monica-akademia-theme .mz-footer:before {
  content: "MZ";
  position: absolute;
  right: clamp(14px, 7vw, 110px);
  top: -32px;
  font-family: var(--v2-heading-font);
  font-size: clamp(120px, 18vw, 260px);
  line-height: .85;
  font-weight: 800;
  letter-spacing: -.08em;
  color: rgba(41, 107, 145, 0.045);
  pointer-events: none;
}

body.v4-monica-akademia-theme .mz-footer__top {
  position: relative;
  z-index: 2;
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(38px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .55fr) minmax(220px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

body.v4-monica-akademia-theme .mz-footer__brand {
  max-width: 560px;
}

body.v4-monica-akademia-theme .mz-footer__logo {
  display: inline-flex;
  align-items: center;
  color: var(--v2-ink);
  font-family: var(--v2-logo-font);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .01em;
  margin-bottom: 22px;
}

body.v4-monica-akademia-theme .mz-footer__logo-img {
  display: block;
  width: var(--footer-logo-width, 146px);
  max-width: min(220px, 62vw);
  max-height: 58px;
  object-fit: contain;
}

body.v4-monica-akademia-theme .mz-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(41, 107, 145, 0.10);
  color: var(--v2-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.v4-monica-akademia-theme .mz-footer__brand p,
body.v4-monica-akademia-theme .mz-footer__empty {
  margin: 0;
  color: #60717c;
  font-size: 14.5px;
  line-height: 1.82;
}

body.v4-monica-akademia-theme .mz-footer__col h2 {
  margin: 0 0 18px;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.v4-monica-akademia-theme .mz-footer-menu {
  display: grid;
  gap: 11px;
  align-items: start;
}

body.v4-monica-akademia-theme .mz-footer-menu a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  color: #4d5d67;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

body.v4-monica-akademia-theme .mz-footer-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--v2-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

body.v4-monica-akademia-theme .mz-footer-menu a:hover {
  color: var(--v2-accent);
}

body.v4-monica-akademia-theme .mz-footer-menu a:hover:after {
  transform: scaleX(1);
}

body.v4-monica-akademia-theme .mz-footer__contact {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

body.v4-monica-akademia-theme .mz-footer__contact li {
  display: grid;
  gap: 5px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(41, 107, 145, 0.12);
}

body.v4-monica-akademia-theme .mz-footer__contact span {
  color: #7a8b96;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.v4-monica-akademia-theme .mz-footer__contact a,
body.v4-monica-akademia-theme .mz-footer__contact strong {
  color: var(--v2-ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  word-break: break-word;
}

body.v4-monica-akademia-theme .mz-footer__contact a:hover {
  color: var(--v2-accent);
}

body.v4-monica-akademia-theme .mz-footer__bottom {
  position: relative;
  z-index: 2;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(41, 107, 145, 0.12);
}

body.v4-monica-akademia-theme .mz-footer__bottom p {
  margin: 0;
  color: #73838d;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 600;
}

body.v4-monica-akademia-theme .mz-footer__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(41, 107, 145, 0.16);
  background: rgba(255, 255, 255, .68);
  color: var(--v2-accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

body.v4-monica-akademia-theme .mz-footer__back:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(41, 107, 145, 0.34);
}

@media (max-width: 900px) {
  body.v4-monica-akademia-theme .mz-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  body.v4-monica-akademia-theme .mz-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.v4-monica-akademia-theme .mz-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.v4-monica-akademia-theme .mz-footer__bottom {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.v4-monica-akademia-theme .mz-footer__back {
    width: 100%;
  }
}

/* v11 footer polish */
body.v4-monica-akademia-theme .mz-footer__logo {
  display: flex;
  width: fit-content;
  margin-bottom: 16px;
}

body.v4-monica-akademia-theme .mz-footer__badge {
  display: block;
  width: fit-content;
  margin: 0 0 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #296B91;
  font-size: 10.5px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.v4-monica-akademia-theme .mz-footer__brand .mz-footer__logo + .mz-footer__badge {
  margin-top: -2px;
}

/* v11 Gutenberg document template */
body.v4-monica-akademia-theme .mz-doc-page {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 0 clamp(70px, 8vw, 108px);
  background:
    radial-gradient(circle at 84% 7%, rgba(41, 107, 145, .13), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 42%, #f7fafc 100%);
}

body.v4-monica-akademia-theme .mz-doc-page__wrap {
  max-width: 1120px;
}

body.v4-monica-akademia-theme .mz-doc-page__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(41, 107, 145, .16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(235, 244, 249, .90)),
    #fff;
  box-shadow: 0 28px 90px rgba(8, 19, 28, .08);
}

body.v4-monica-akademia-theme .mz-doc-page__hero:after {
  content: "MZ";
  position: absolute;
  right: -18px;
  bottom: -54px;
  font-family: var(--v2-heading-font);
  font-size: clamp(130px, 23vw, 290px);
  line-height: .8;
  letter-spacing: -.08em;
  color: rgba(41, 107, 145, .055);
  font-weight: 800;
  pointer-events: none;
}

body.v4-monica-akademia-theme .mz-doc-page__kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #296B91;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}

body.v4-monica-akademia-theme .mz-doc-page__kicker:before {
  content: "";
  width: 34px;
  height: 1px;
  background: #296B91;
}

body.v4-monica-akademia-theme .mz-doc-page__hero h1 {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

body.v4-monica-akademia-theme .mz-doc-page__hero p {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  color: #61717c;
  font-size: 16.5px;
  line-height: 1.78;
}

body.v4-monica-akademia-theme .mz-doc-page__content {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(41, 107, 145, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 80px rgba(8, 19, 28, .06);
}

body.v4-monica-akademia-theme .mz-doc-page__content > *:first-child {
  margin-top: 0;
}

body.v4-monica-akademia-theme .mz-doc-page__content > *:last-child {
  margin-bottom: 0;
}

body.v4-monica-akademia-theme .mz-doc-page__content h2,
body.v4-monica-akademia-theme .mz-doc-page__content h3,
body.v4-monica-akademia-theme .mz-doc-page__content h4 {
  color: var(--v2-ink);
  font-family: var(--v2-heading-font);
  letter-spacing: -.03em;
}

body.v4-monica-akademia-theme .mz-doc-page__content h2 {
  margin: 42px 0 16px;
  font-size: clamp(27px, 3.8vw, 42px);
  line-height: 1.1;
}

body.v4-monica-akademia-theme .mz-doc-page__content h3 {
  margin: 32px 0 12px;
  color: #296B91;
  font-size: clamp(21px, 2.5vw, 27px);
  line-height: 1.2;
}

body.v4-monica-akademia-theme .mz-doc-page__content h4 {
  margin: 24px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

body.v4-monica-akademia-theme .mz-doc-page__content p,
body.v4-monica-akademia-theme .mz-doc-page__content li {
  color: #26353f;
  font-size: 15.5px;
  line-height: 1.86;
}

body.v4-monica-akademia-theme .mz-doc-page__content p {
  margin: 0 0 15px;
}

body.v4-monica-akademia-theme .mz-doc-page__content ul,
body.v4-monica-akademia-theme .mz-doc-page__content ol {
  margin: 14px 0 22px;
  padding-left: 24px;
}

body.v4-monica-akademia-theme .mz-doc-page__content a {
  color: #296B91;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-quote,
body.v4-monica-akademia-theme .mz-doc-page__content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid #296B91;
  border-radius: 18px;
  background: rgba(41, 107, 145, .075);
  color: var(--v2-ink);
}

body.v4-monica-akademia-theme .mz-doc-page__content table,
body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 18px;
}

body.v4-monica-akademia-theme .mz-doc-page__content th,
body.v4-monica-akademia-theme .mz-doc-page__content td {
  border: 1px solid rgba(41, 107, 145, .15);
  padding: 14px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.65;
}

body.v4-monica-akademia-theme .mz-doc-page__content th {
  background: #f0f6fa;
  color: var(--v2-ink);
  font-weight: 800;
}

@media (max-width: 680px) {
  body.v4-monica-akademia-theme .mz-doc-page {
    padding-top: 24px;
  }

  body.v4-monica-akademia-theme .mz-doc-page__hero,
  body.v4-monica-akademia-theme .mz-doc-page__content {
    border-radius: 22px;
  }

  body.v4-monica-akademia-theme .mz-doc-page__content table,
  body.v4-monica-akademia-theme .mz-doc-page__content tbody,
  body.v4-monica-akademia-theme .mz-doc-page__content tr,
  body.v4-monica-akademia-theme .mz-doc-page__content th,
  body.v4-monica-akademia-theme .mz-doc-page__content td {
    display: block;
    width: 100%;
  }
}

/* v12 archive products as professional LP */
.v12-shop-lp,
.v12-shop-lp * {
  box-sizing: border-box;
}

.v12-shop-lp {
  --v12-ink: #07121a;
  --v12-text: #1d2c37;
  --v12-muted: #61717c;
  --v12-accent: #296B91;
  --v12-accent-dark: #174966;
  --v12-line: rgba(41, 107, 145, .14);
  --v12-line-strong: rgba(41, 107, 145, .22);
  --v12-soft: #f5f8fa;
  --v12-paper: #fbfcfc;
  --v12-shadow: 0 28px 90px rgba(7, 18, 26, .12);
  --v12-shadow-soft: 0 18px 54px rgba(7, 18, 26, .075);
  --v12-side: max(20px, calc((100vw - var(--v2-container)) / 2));
  background:
    radial-gradient(circle at 8% 0%, rgba(41, 107, 145, .12), transparent 32%),
    radial-gradient(circle at 90% 24%, rgba(41, 107, 145, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5f8fa 48%, #fff 100%);
  color: var(--v12-text);
  overflow: hidden;
}

.v12-container {
  width: min(var(--v2-container), calc(100% - 40px));
  margin-inline: auto;
}

.v12-shop-lp p,
.v12-shop-lp h1,
.v12-shop-lp h2,
.v12-shop-lp h3 {
  margin-top: 0;
}

.v12-shop-notices {
  padding-top: 22px;
}

.v12-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--v12-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 800;
}

.v12-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--v12-accent);
}

.v12-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--v2-body-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.v12-btn--primary {
  background: var(--v12-accent);
  border-color: var(--v12-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(41, 107, 145, .24);
}

.v12-btn--primary:hover {
  background: var(--v12-accent-dark);
  border-color: var(--v12-accent-dark);
  color: #fff;
}

.v12-btn--ghost {
  background: rgba(255,255,255,.78);
  color: var(--v12-ink);
  border-color: rgba(41, 107, 145, .22);
}

.v12-btn--ghost:hover {
  background: var(--v12-ink);
  border-color: var(--v12-ink);
  color: #fff;
}

.v12-shop-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  border-bottom: 1px solid var(--v12-line);
}

.v12-shop-hero__copy {
  position: relative;
  min-width: 0;
  padding: 74px clamp(28px, 7vw, 112px) 82px var(--v12-side);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v12-shop-hero__copy::before {
  content: "MZ";
  position: absolute;
  right: 18px;
  top: 54px;
  font-size: clamp(180px, 24vw, 390px);
  line-height: .78;
  letter-spacing: -.14em;
  font-weight: 900;
  color: rgba(41, 107, 145, .045);
  pointer-events: none;
}

.v12-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  color: var(--v12-muted);
  font-size: 13px;
  font-weight: 650;
}

.v12-breadcrumb a {
  color: var(--v12-accent);
  font-weight: 800;
}

.v12-kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: var(--v12-accent-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}

.v12-shop-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0;
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(50px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 900;
}

.v12-shop-description {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-top: 26px;
}

.v12-shop-description p {
  margin: 0 0 12px;
  color: var(--v12-text);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.v12-filter-trigger {
  display: none;
}

.v12-shop-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.v12-shop-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  max-width: 720px;
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--v12-accent);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 54px rgba(7, 18, 26, .06);
}

.v12-shop-trust span {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(41, 107, 145, .2), rgba(41, 107, 145, .05));
  border: 1px solid rgba(41, 107, 145, .22);
}

.v12-shop-trust p {
  margin: 0;
  color: var(--v12-text);
  font-size: 13px;
  line-height: 1.65;
}

.v12-shop-hero__visual {
  position: relative;
  min-width: 0;
  padding: 82px var(--v12-side) 82px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.68), transparent 34%),
    linear-gradient(135deg, rgba(41,107,145,.08), rgba(41,107,145,.18));
  overflow: hidden;
}

.v12-shop-hero__visual::before {
  content: "AKADEMIA";
  position: absolute;
  left: 46px;
  bottom: 34px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(41, 107, 145, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .42em;
}

.v12-shop-hero__visual::after {
  content: "M";
  position: absolute;
  right: -52px;
  top: 58px;
  font-size: clamp(260px, 32vw, 520px);
  line-height: .8;
  font-weight: 900;
  color: rgba(255,255,255,.36);
  pointer-events: none;
}

.v12-visual-card {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 34px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--v12-shadow);
}

.v12-visual-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--v12-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.v12-visual-card strong {
  display: block;
  max-width: 340px;
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.v12-visual-card p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--v12-muted);
  font-size: 15px;
  line-height: 1.72;
}

.v12-lab-panel {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 76px;
  width: min(390px, calc(100% - 70px));
  display: grid;
  gap: 10px;
}

.v12-lab-panel div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 7px 12px;
  padding: 14px 16px;
  border: 1px solid rgba(41,107,145,.12);
  border-left: 4px solid var(--v12-accent);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(7,18,26,.08);
}

.v12-lab-panel small {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--v12-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.v12-lab-panel strong {
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: 15px;
  line-height: 1.15;
}

.v12-lab-panel span {
  color: var(--v12-muted);
  font-size: 12px;
  line-height: 1.45;
}

.v12-shop-stats {
  padding: 34px 0 10px;
}

.v12-shop-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v12-shop-stats__grid div {
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--v12-line);
  background: #fff;
  box-shadow: var(--v12-shadow-soft);
}

.v12-shop-stats__grid strong {
  display: block;
  color: var(--v12-accent);
  font-family: var(--v2-heading-font);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.05em;
}

.v12-shop-stats__grid span {
  display: block;
  margin-top: 10px;
  color: var(--v12-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v12-shop-main {
  padding: 42px 0 90px;
}

.v12-shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.v12-shop-sidebar {
  position: sticky;
  top: 108px;
  padding: 26px;
  border: 1px solid var(--v12-line);
  border-radius: 0;
  background: rgba(255,255,255,.88);
  box-shadow: var(--v12-shadow-soft);
  backdrop-filter: blur(14px);
}

.admin-bar .v12-shop-sidebar {
  top: 140px;
}

.v12-sidebar-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--v12-line);
}

.v12-sidebar-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--v12-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}

.v12-sidebar-head strong {
  display: block;
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.v12-sidebar-close {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--v12-line);
  border-radius: 999px;
  background: #fff;
  color: var(--v12-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.v12-all-products,
.v12-shop-lp .v2-cat-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 2px 12px;
  border-radius: 0;
  background: transparent !important;
  color: var(--v12-text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.v12-all-products::after,
.v12-shop-lp .v2-cat-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 5px;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--v12-accent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left center;
  transition: opacity .2s ease, transform .2s ease, width .2s ease;
}

.v12-all-products:hover,
.v12-shop-lp .v2-cat-link:hover,
.v12-all-products.is-current,
.v12-shop-lp .v2-cat-item.is-current > .v2-cat-row .v2-cat-link {
  color: var(--v12-accent-dark);
}

.v12-all-products:hover::after,
.v12-shop-lp .v2-cat-link:hover::after,
.v12-all-products.is-current::after,
.v12-shop-lp .v2-cat-item.is-current > .v2-cat-row .v2-cat-link::after {
  opacity: 1;
  transform: scaleX(1);
  width: 52px;
}

.v12-shop-lp .v2-cat-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v12-shop-lp .v2-cat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.v12-shop-lp .v2-cat-link small {
  min-width: 26px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(41,107,145,.08);
  color: var(--v12-muted);
  font-size: 11px;
  font-weight: 900;
}

.v12-shop-lp .v2-cat-item.is-current > .v2-cat-row .v2-cat-link small {
  background: rgba(41,107,145,.13);
  color: var(--v12-accent-dark);
}

.v12-shop-lp .v2-cat-children .v2-cat-tree {
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(41,107,145,.14);
}

.v12-shop-lp .v2-cat-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(41,107,145,.08);
  cursor: pointer;
  position: relative;
}

.v12-shop-lp .v2-cat-toggle:hover {
  background: rgba(41,107,145,.14);
}

.v12-shop-lp .v2-cat-toggle span::before,
.v12-shop-lp .v2-cat-toggle span::after {
  background: var(--v12-accent-dark);
}

.v12-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid var(--v12-line);
  border-radius: 0;
  background: rgba(255,255,255,.9);
  box-shadow: var(--v12-shadow-soft);
}

.v12-toolbar-copy > span {
  display: block;
  margin-bottom: 3px;
  color: var(--v12-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.v12-shop-count p {
  margin: 0;
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 850;
}

.v12-shop-ordering form {
  margin: 0;
}

.v12-shop-lp .woocommerce-ordering select,
.v12-shop-ordering select {
  min-height: 46px;
  border: 1px solid var(--v12-line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--v12-text);
  padding: 0 42px 0 16px;
  font-family: var(--v2-body-font);
  font-weight: 800;
}

.v12-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.v12-shop-lp .v2-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--v12-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--v12-shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.v12-shop-lp .v2-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--v12-accent);
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .22s ease;
}

.v12-shop-lp .v2-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41,107,145,.34);
  box-shadow: var(--v12-shadow);
}

.v12-shop-lp .v2-product-card:hover::before {
  transform: scaleX(1);
}

.v12-shop-lp .v2-product-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--v12-line);
  background:
    radial-gradient(circle at 80% 14%, rgba(41,107,145,.16), transparent 34%),
    linear-gradient(135deg, #eef5f8, #fff);
}

.v12-shop-lp .v2-product-card__image::after {
  content: "MZ";
  position: absolute;
  right: 18px;
  bottom: -6px;
  color: rgba(41,107,145,.12);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.12em;
  font-weight: 900;
  pointer-events: none;
}

.v12-shop-lp .v2-product-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v12-shop-lp .v2-product-card__body {
  padding: 26px;
}

.v12-shop-lp .v2-product-card__cat {
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v12-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.v12-shop-lp .v2-product-card__title {
  margin: 0;
  font-family: var(--v2-heading-font);
  color: var(--v12-ink);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 900;
}

.v12-shop-lp .v2-product-card__title a:hover {
  color: var(--v12-accent);
}

.v12-shop-lp .v2-product-card__desc {
  margin: 16px 0 0;
  color: var(--v12-muted);
  font-size: 15px;
  line-height: 1.7;
}

.v12-shop-lp .v2-product-card__bottom {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.v12-shop-lp .v2-product-card__price {
  color: var(--v12-accent-dark);
  font-family: var(--v2-heading-font);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}

.v12-shop-lp .v2-product-card__price del {
  display: block;
  margin: 0 0 5px;
  color: var(--v12-muted);
  font-size: 14px;
  font-weight: 700;
}

.v12-shop-lp .v2-product-card__price ins {
  text-decoration: none;
}

.v12-shop-lp .v2-product-card__button {
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--v12-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(41,107,145,.22);
}

.v12-shop-lp .v2-product-card__button:hover {
  background: var(--v12-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.v12-shop-pagination {
  margin-top: 34px;
}

.v12-empty-products {
  padding: 46px;
  border: 1px solid var(--v12-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--v12-shadow-soft);
}

.v12-empty-products h2 {
  margin: 0 0 10px;
  color: var(--v12-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.v12-empty-products p {
  margin: 0 0 22px;
  color: var(--v12-muted);
}

.v12-cats-overlay {
  display: none;
}

@media (max-width: 1160px) {
  .v12-products-grid {
    grid-template-columns: 1fr;
  }

  .v12-lab-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 980px) {
  .v12-filter-trigger {
    display: inline-flex;
  }

  .v12-shop-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .v12-shop-hero__copy {
    padding: 54px 20px 58px;
  }

  .v12-shop-hero__visual {
    padding: 42px 20px 54px;
    justify-content: flex-start;
  }

  .v12-shop-layout {
    display: block;
  }

  .v12-shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(390px, calc(100vw - 32px));
    max-height: 100dvh;
    overflow: auto;
    z-index: 1000;
    top: 0;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .v12-shop-sidebar.is-open {
    transform: translateX(0);
  }

  .v12-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .v12-cats-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 18, 26, .48);
    backdrop-filter: blur(5px);
  }

  .v12-cats-overlay.is-open {
    display: block;
  }

  .v12-shop-content {
    margin-top: 18px;
  }

  .v12-shop-stats__grid {
    grid-template-columns: 1fr;
  }

  .v12-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .v12-shop-ordering select,
  .woocommerce .v12-shop-ordering select {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .v12-container {
    width: min(100% - 26px, var(--v2-container));
  }

  .v12-shop-hero__copy {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .v12-shop-hero h1 {
    font-size: clamp(42px, 15vw, 64px);
    line-height: .92;
    letter-spacing: -.065em;
  }

  .v12-shop-description p {
    font-size: 15.5px;
  }

  .v12-shop-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .v12-btn {
    width: 100%;
  }

  .v12-shop-trust {
    grid-template-columns: 1fr;
  }

  .v12-visual-card {
    border-radius: 0;
  }

  .v12-lab-panel div {
    grid-template-columns: 34px 1fr;
  }

  .v12-products-grid {
    gap: 18px;
  }

  .v12-shop-lp .v2-product-card__body {
    padding: 22px;
  }

  .v12-shop-lp .v2-product-card__bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .v12-shop-lp .v2-product-card__button {
    justify-content: center;
  }
}


/* v13 cleanup: product LP buy card without hidden label/id */
.v5-hero__image-tag,
.v5-product-id-note,
.v5-buy-card > span {
  display: none !important;
}

/* v13 header: sharper UI, closer to the LP language */
body.v4-monica-akademia-theme .v2-site-header {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(41, 107, 145, .14);
  box-shadow: 0 10px 30px rgba(7, 18, 26, .045);
}

body.v4-monica-akademia-theme .v2-header-action,
body.v4-monica-akademia-theme .v2-header-action--cart strong,
body.v4-monica-akademia-theme .v2-skip-link {
  border-radius: 0;
}

body.v4-monica-akademia-theme .v2-header-action {
  min-height: 44px;
  padding: 11px 16px;
  background: rgba(255,255,255,.82);
  border-color: rgba(41, 107, 145, .18);
  box-shadow: none;
}

body.v4-monica-akademia-theme .v2-header-action--login {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  box-shadow: 0 14px 30px rgba(41, 107, 145, .18);
}

/* v13 archive: clean product list, no separate landing content */
.v13-shop-list,
.v13-shop-list * {
  box-sizing: border-box;
}

.v13-shop-list {
  --v13-ink: #07121a;
  --v13-text: #1d2c37;
  --v13-muted: #65737d;
  --v13-accent: #296B91;
  --v13-accent-dark: #174966;
  --v13-line: rgba(41, 107, 145, .16);
  --v13-line-strong: rgba(41, 107, 145, .26);
  --v13-shadow: 0 18px 50px rgba(7, 18, 26, .075);
  background:
    radial-gradient(circle at 95% 0%, rgba(41, 107, 145, .10), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, #fff 38%, #f7fafc 100%);
  color: var(--v13-text);
  padding: 52px 0 92px;
  overflow: hidden;
}

.v13-container {
  width: min(var(--v2-container), calc(100% - 40px));
  margin-inline: auto;
}

.v13-shop-notices {
  margin-bottom: 18px;
}

.v13-shop-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--v13-line);
}

.v13-shop-head::after {
  content: "MZ";
  position: absolute;
  right: -12px;
  bottom: -18px;
  color: rgba(41, 107, 145, .045);
  font-family: var(--v2-heading-font);
  font-size: clamp(90px, 16vw, 190px);
  line-height: .8;
  letter-spacing: -.12em;
  font-weight: 900;
  pointer-events: none;
}

.v13-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: var(--v13-muted);
  font-size: 13px;
  font-weight: 650;
}

.v13-breadcrumb a {
  color: var(--v13-accent);
  font-weight: 800;
  text-decoration: none;
}

.v13-shop-head h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--v13-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 900;
}

.v13-filter-trigger,
.v13-btn {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--v13-accent);
  border-radius: 0;
  background: var(--v13-accent);
  color: #fff;
  font-family: var(--v2-body-font);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.v13-filter-trigger:hover,
.v13-btn:hover {
  transform: translateY(-1px);
  background: var(--v13-accent-dark);
  border-color: var(--v13-accent-dark);
  color: #fff;
}

.v13-filter-trigger {
  display: none;
}

.v13-shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.v13-shop-sidebar {
  position: sticky;
  top: 108px;
  padding: 26px;
  border: 1px solid var(--v13-line);
  border-radius: 0;
  background: rgba(255,255,255,.9);
  box-shadow: var(--v13-shadow);
  backdrop-filter: blur(14px);
}

.admin-bar .v13-shop-sidebar {
  top: 140px;
}

.v13-sidebar-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--v13-line);
}

.v13-sidebar-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--v13-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}

.v13-sidebar-head strong {
  display: block;
  color: var(--v13-ink);
  font-family: var(--v2-heading-font);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.v13-sidebar-close {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--v13-line);
  border-radius: 0;
  background: #fff;
  color: var(--v13-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.v13-all-products,
.v13-shop-list .v2-cat-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 2px 12px;
  border-radius: 0;
  background: transparent !important;
  color: var(--v13-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
}

.v13-all-products::after,
.v13-shop-list .v2-cat-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 36px;
  height: 2px;
  background: var(--v13-accent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left center;
  transition: opacity .2s ease, transform .2s ease, width .2s ease;
}

.v13-all-products:hover,
.v13-shop-list .v2-cat-link:hover,
.v13-all-products.is-current,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link {
  color: var(--v13-accent-dark);
}

.v13-all-products:hover::after,
.v13-shop-list .v2-cat-link:hover::after,
.v13-all-products.is-current::after,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link::after {
  opacity: 1;
  transform: scaleX(1);
  width: 52px;
}

.v13-shop-list .v2-cat-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v13-shop-list .v2-cat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.v13-shop-list .v2-cat-link small {
  min-width: 26px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: rgba(41,107,145,.08);
  color: var(--v13-muted);
  font-size: 11px;
  font-weight: 900;
}

.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link small {
  background: rgba(41,107,145,.13);
  color: var(--v13-accent-dark);
}

.v13-shop-list .v2-cat-children .v2-cat-tree {
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(41,107,145,.14);
}

.v13-shop-list .v2-cat-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: rgba(41,107,145,.08);
  cursor: pointer;
  position: relative;
}

.v13-shop-list .v2-cat-toggle:hover {
  background: rgba(41,107,145,.14);
}

.v13-shop-list .v2-cat-toggle span::before,
.v13-shop-list .v2-cat-toggle span::after {
  background: var(--v13-accent-dark);
}

.v13-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid var(--v13-line);
  border-radius: 0;
  background: rgba(255,255,255,.9);
  box-shadow: var(--v13-shadow);
}

.v13-shop-count p {
  margin: 0;
  color: var(--v13-ink);
  font-family: var(--v2-heading-font);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 850;
}

.v13-shop-ordering form {
  margin: 0;
}

.v13-shop-list .woocommerce-ordering select,
.v13-shop-ordering select {
  min-height: 46px;
  border: 1px solid var(--v13-line-strong);
  border-radius: 0;
  background: #fff;
  color: var(--v13-text);
  padding: 0 42px 0 16px;
  font-family: var(--v2-body-font);
  font-weight: 800;
}

.v13-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.v13-shop-list .v2-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--v13-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--v13-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.v13-shop-list .v2-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--v13-accent);
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .22s ease;
}

.v13-shop-list .v2-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41,107,145,.34);
  box-shadow: 0 28px 70px rgba(7,18,26,.12);
}

.v13-shop-list .v2-product-card:hover::before {
  transform: scaleX(1);
}

.v13-shop-list .v2-product-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--v13-line);
  background:
    radial-gradient(circle at 80% 14%, rgba(41,107,145,.16), transparent 34%),
    linear-gradient(135deg, #eef5f8, #fff);
}

.v13-shop-list .v2-product-card__image::after {
  content: "MZ";
  position: absolute;
  right: 18px;
  bottom: -6px;
  color: rgba(41,107,145,.12);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.12em;
  font-weight: 900;
  pointer-events: none;
}

.v13-shop-list .v2-product-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v13-shop-list .v2-product-card__body {
  padding: 26px;
}

.v13-shop-list .v2-product-card__cat {
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v13-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.v13-shop-list .v2-product-card__title {
  margin: 0;
  font-family: var(--v2-heading-font);
  color: var(--v13-ink);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 900;
}

.v13-shop-list .v2-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.v13-shop-list .v2-product-card__title a:hover {
  color: var(--v13-accent);
}

.v13-shop-list .v2-product-card__desc {
  margin: 16px 0 0;
  color: var(--v13-muted);
  font-size: 15px;
  line-height: 1.7;
}

.v13-shop-list .v2-product-card__bottom {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.v13-shop-list .v2-product-card__price {
  color: var(--v13-accent-dark);
  font-family: var(--v2-heading-font);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}

.v13-shop-list .v2-product-card__price del {
  display: block;
  margin: 0 0 5px;
  color: var(--v13-muted);
  font-size: 14px;
  font-weight: 700;
}

.v13-shop-list .v2-product-card__price ins {
  text-decoration: none;
}

.v13-shop-list .v2-product-card__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 0;
  background: var(--v13-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(41,107,145,.20);
}

.v13-shop-list .v2-product-card__button:hover {
  background: var(--v13-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.v13-shop-pagination {
  margin-top: 34px;
}

.v13-empty-products {
  padding: 46px;
  border: 1px solid var(--v13-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--v13-shadow);
}

.v13-empty-products h2 {
  margin: 0 0 10px;
  color: var(--v13-ink);
  font-family: var(--v2-heading-font);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.v13-empty-products p {
  margin: 0 0 22px;
  color: var(--v13-muted);
}

.v13-cats-overlay {
  display: none;
}

@media (max-width: 1160px) {
  .v13-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .v13-filter-trigger {
    display: inline-flex;
  }

  .v13-shop-list {
    padding-top: 36px;
  }

  .v13-shop-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .v13-shop-layout {
    display: block;
  }

  .v13-shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(390px, calc(100vw - 32px));
    max-height: 100dvh;
    overflow: auto;
    z-index: 1000;
    top: 0;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .v13-shop-sidebar.is-open {
    transform: translateX(0);
  }

  .v13-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .v13-cats-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 18, 26, .48);
    backdrop-filter: blur(5px);
  }

  .v13-cats-overlay.is-open {
    display: block;
  }

  .v13-shop-content {
    margin-top: 18px;
  }

  .v13-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .v13-shop-ordering select,
  .woocommerce .v13-shop-ordering select {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .v13-container {
    width: min(100% - 26px, var(--v2-container));
  }

  .v13-shop-head h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .v13-filter-trigger,
  .v13-btn {
    width: 100%;
  }

  .v13-products-grid {
    gap: 18px;
  }

  .v13-shop-list .v2-product-card__body {
    padding: 22px;
  }

  .v13-shop-list .v2-product-card__bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .v13-shop-list .v2-product-card__button {
    justify-content: center;
  }
}

/* v14 fix: category hover must stay readable in sharp archive sidebar */
.v13-shop-list .v2-cat-link,
.v13-shop-list .v2-cat-link:visited,
.v13-shop-list .v2-cat-link:hover,
.v13-shop-list .v2-cat-link:focus,
.v13-shop-list .v2-cat-link:active,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link:hover,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link:focus,
.v13-all-products,
.v13-all-products:visited,
.v13-all-products:hover,
.v13-all-products:focus,
.v13-all-products:active,
.v13-all-products.is-current,
.v13-all-products.is-current:hover,
.v13-all-products.is-current:focus {
  background: transparent !important;
  color: var(--v13-ink) !important;
  -webkit-text-fill-color: var(--v13-ink) !important;
}

.v13-shop-list .v2-cat-link:hover,
.v13-shop-list .v2-cat-link:focus,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link:hover,
.v13-all-products:hover,
.v13-all-products:focus,
.v13-all-products.is-current,
.v13-all-products.is-current:hover {
  color: var(--v13-accent-dark) !important;
  -webkit-text-fill-color: var(--v13-accent-dark) !important;
}

.v13-shop-list .v2-cat-link small,
.v13-shop-list .v2-cat-link:hover small,
.v13-shop-list .v2-cat-link:focus small,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link small,
.v13-shop-list .v2-cat-item.is-current > .v2-cat-row .v2-cat-link:hover small {
  color: rgba(16, 31, 42, .56) !important;
  -webkit-text-fill-color: rgba(16, 31, 42, .56) !important;
}

/* v15: sharp cart and checkout, aligned with square LP style */
body.woocommerce-cart .v4-woo-page,
body.woocommerce-checkout .v4-woo-page {
  background:
    radial-gradient(circle at 9% 0%, rgba(41,107,145,.09), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 42%, #f4f8fa 100%);
}

body.woocommerce-cart .v4-woo-hero,
body.woocommerce-checkout .v4-woo-hero {
  border-radius: 0 !important;
  border-color: rgba(41,107,145,.16) !important;
  box-shadow: 0 22px 60px rgba(8,18,26,.06) !important;
}

body.woocommerce-cart .v4-woo-hero__step,
body.woocommerce-checkout .v4-woo-hero__step,
body.woocommerce-cart .v4-eyebrow,
body.woocommerce-checkout .v4-eyebrow {
  border-radius: 0 !important;
}

body.woocommerce-cart .v4-cart-card,
body.woocommerce-cart .v4-cart-card__image,
body.woocommerce-cart .v4-cart-card__meta > div,
body.woocommerce-cart .v4-cart-actions,
body.woocommerce-cart .v4-cart-summary .cart_totals,
body.woocommerce-cart .v4-empty-box,
body.woocommerce-checkout .v4-checkout-card,
body.woocommerce-checkout .v4-checkout-card--sticky,
body.woocommerce-checkout .v4-checkout-card__head span,
body.woocommerce-checkout .v4-checkout-review .woocommerce-checkout-payment,
body.woocommerce-checkout .v4-thankyou-box,
body.woocommerce-checkout .v4-order-summary-grid div,
body.woocommerce-checkout .v4-order-details-wrap,
body.woocommerce-checkout .woocommerce-order-details,
body.woocommerce-checkout .woocommerce-customer-details,
body.woocommerce-account .v4-account-nav,
body.woocommerce-account .v4-account-content,
body.woocommerce-account .v4-dashboard-box {
  border-radius: 0 !important;
}

body.woocommerce-cart .v4-cart-card,
body.woocommerce-checkout .v4-checkout-card,
body.woocommerce-cart .v4-cart-summary .cart_totals,
body.woocommerce-checkout .v4-checkout-card--sticky {
  box-shadow: 0 18px 48px rgba(8,18,26,.055) !important;
}

body.woocommerce-cart .v4-cart-card .quantity input,
body.woocommerce-checkout .v4-checkout-fields input.input-text,
body.woocommerce-checkout .v4-checkout-fields textarea,
body.woocommerce-checkout .v4-checkout-fields select,
body.woocommerce-cart .v4-coupon input,
body.woocommerce-cart .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .select2-container--default .select2-selection--single,
body.woocommerce-checkout .select2-container--default .select2-selection--multiple {
  border-radius: 0 !important;
}

body.woocommerce-cart .button,
body.woocommerce-checkout .button,
body.woocommerce-cart .v4-btn,
body.woocommerce-checkout .v4-btn,
body.woocommerce-cart .v4-cart-summary .checkout-button,
body.woocommerce-checkout .v4-checkout-review #place_order,
body.woocommerce-cart .v4-coupon .button,
body.woocommerce-cart .actions .button,
body.woocommerce-checkout a.button,
body.woocommerce-checkout button.button,
body.woocommerce-checkout input.button {
  border-radius: 0 !important;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
  border-radius: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout #payment div.payment_box,
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
body.woocommerce-checkout .woocommerce-privacy-policy-text {
  border-radius: 0 !important;
}

@media (max-width: 760px) {
  body.woocommerce-cart .v4-woo-hero,
  body.woocommerce-checkout .v4-woo-hero,
  body.woocommerce-cart .v4-cart-card,
  body.woocommerce-checkout .v4-checkout-card {
    border-radius: 0 !important;
  }
}

/* v16 document text template squared polish */
body.v4-monica-akademia-theme .mz-doc-page__hero,
body.v4-monica-akademia-theme .mz-doc-page__content {
  border-radius: 0 !important;
}

body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-quote,
body.v4-monica-akademia-theme .mz-doc-page__content blockquote {
  border-radius: 0 !important;
}

body.v4-monica-akademia-theme .mz-doc-page__content table,
body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-table table {
  border-radius: 0 !important;
}

body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-table,
body.v4-monica-akademia-theme .mz-doc-page__content figure {
  border-radius: 0 !important;
}

body.v4-monica-akademia-theme .mz-doc-page__content .wp-block-button__link,
body.v4-monica-akademia-theme .mz-doc-page__content button,
body.v4-monica-akademia-theme .mz-doc-page__content input,
body.v4-monica-akademia-theme .mz-doc-page__content select,
body.v4-monica-akademia-theme .mz-doc-page__content textarea {
  border-radius: 0 !important;
}


/* v17: WooCommerce Blocks cart and checkout square override
   Gutenberg Cart/Checkout Blocks do not use classic Woo template files, so they need block selectors. */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart *,
.wp-block-woocommerce-checkout *,
.wc-block-cart,
.wc-block-checkout,
.wc-block-cart *,
.wc-block-checkout *,
.wc-block-components-sidebar-layout,
.wc-block-components-sidebar-layout *,
.wc-block-components-main,
.wc-block-components-sidebar,
.wc-block-components-panel,
.wc-block-components-panel *,
.wc-block-components-totals-wrapper,
.wc-block-components-totals-wrapper *,
.wc-block-components-order-summary,
.wc-block-components-order-summary *,
.wc-block-components-radio-control,
.wc-block-components-radio-control *,
.wc-block-components-product-metadata,
.wc-block-components-quantity-selector,
.wc-block-components-quantity-selector *,
.wc-block-components-text-input,
.wc-block-components-text-input *,
.wc-block-components-combobox,
.wc-block-components-combobox *,
.wc-block-components-form-token-field-wrapper,
.wc-block-components-form-token-field-wrapper *,
.wc-block-components-validation-error,
.wc-block-components-validation-error *,
.wc-block-components-notice-banner,
.wc-block-components-notice-banner *,
.wc-block-components-button,
.wc-block-components-button *,
.wc-block-cart-items,
.wc-block-cart-items *,
.wc-block-cart__submit-container,
.wc-block-cart__submit-container *,
.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wc-block-checkout__actions,
.wc-block-checkout__actions *,
.wc-block-components-checkout-step,
.wc-block-components-checkout-step *,
.wc-block-components-address-form,
.wc-block-components-address-form *,
.wc-block-components-order-summary-item,
.wc-block-components-order-summary-item * {
  border-radius: 0 !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {
  max-width: 1120px;
  margin: 42px auto 72px;
  padding: clamp(22px, 4vw, 48px) !important;
  border: 1px solid rgba(8,18,26,.10) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 24px 72px rgba(8,18,26,.065) !important;
}

.wc-block-components-sidebar-layout,
.wc-block-components-sidebar,
.wc-block-components-main {
  background: transparent !important;
}

.wc-block-components-sidebar,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-checkout-step,
.wc-block-cart-items,
.wc-block-components-order-summary-item {
  border-color: rgba(8,18,26,.12) !important;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button {
  min-height: 52px !important;
  background: #101f2a !important;
  border: 1px solid #101f2a !important;
  color: #fff !important;
  font-family: "Poppins", "Montserrat", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #296B91 !important;
  border-color: #296B91 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.wc-block-components-button:focus,
.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus,
.wc-block-components-form .wc-block-components-text-input input[type="email"]:focus,
.wc-block-components-form .wc-block-components-text-input input[type="text"]:focus,
.wc-block-components-form .wc-block-components-text-input input[type="tel"]:focus {
  outline: 2px solid rgba(41,107,145,.24) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="password"],
.wc-block-components-form .wc-block-components-text-input textarea,
.wc-block-components-address-form select,
.wc-block-components-select .wc-block-components-select__select {
  min-height: 48px !important;
  border: 1px solid rgba(8,18,26,.16) !important;
  background: #fff !important;
  color: #101f2a !important;
  box-shadow: none !important;
}

.wc-block-cart-items__header,
.wc-block-cart-items__row,
.wc-block-components-totals-item,
.wc-block-components-order-summary-item,
.wc-block-components-panel__button {
  border-color: rgba(8,18,26,.12) !important;
}

.wc-block-components-product-name,
.wc-block-cart-item__product .wc-block-components-product-name,
.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  color: #101f2a !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.wc-block-cart-item__prices,
.wc-block-components-product-price,
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #103f5c !important;
  font-weight: 800 !important;
}

.wc-block-cart-item__remove-link,
.wc-block-components-chip button,
.wc-block-components-panel__button {
  color: #101f2a !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.wc-block-cart-item__remove-link:hover,
.wc-block-components-panel__button:hover {
  color: #296B91 !important;
}

.wc-block-components-quantity-selector:after,
.wc-block-components-quantity-selector:before,
.wc-block-components-text-input:after,
.wc-block-components-combobox:after {
  border-radius: 0 !important;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before,
.wc-block-cart__empty-cart__title:before {
  border-radius: 0 !important;
}

@media (max-width: 782px) {
  .wp-block-woocommerce-cart,
  .wp-block-woocommerce-checkout,
  .wc-block-cart,
  .wc-block-checkout {
    margin: 22px auto 54px;
    padding: 18px !important;
  }
}

/* v18: Cart/Checkout Blocks cleanup
   The cart page is a Gutenberg page with WooCommerce Blocks inside the normal page template.
   Previous styling added a card around the page and another card around the block. This removes the double box. */
body.v4-cart-page .v2-page-shell,
body.v4-checkout-page .v2-page-shell,
body.woocommerce-cart .v2-page-shell,
body.woocommerce-checkout .v2-page-shell {
  padding: clamp(38px, 5vw, 70px) 0 clamp(56px, 7vw, 96px) !important;
}

body.v4-cart-page .v18-commerce-block-container,
body.v4-checkout-page .v18-commerce-block-container,
body.woocommerce-cart .v18-commerce-block-container,
body.woocommerce-checkout .v18-commerce-block-container {
  max-width: 1180px !important;
}

body.v4-cart-page .v18-commerce-block-content,
body.v4-checkout-page .v18-commerce-block-content,
body.woocommerce-cart .v18-commerce-block-content,
body.woocommerce-checkout .v18-commerce-block-content,
body.v4-cart-page .v2-content,
body.v4-checkout-page .v2-content,
body.woocommerce-cart .v2-content,
body.woocommerce-checkout .v2-content {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.v4-cart-page .wp-block-woocommerce-cart,
body.v4-checkout-page .wp-block-woocommerce-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.v4-cart-page .wp-block-woocommerce-cart.alignwide,
body.v4-checkout-page .wp-block-woocommerce-checkout.alignwide,
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide,
body.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide,
body.v4-cart-page .wc-block-cart,
body.v4-checkout-page .wc-block-checkout,
body.woocommerce-cart .wc-block-cart,
body.woocommerce-checkout .wc-block-checkout {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.v4-cart-page .wc-block-components-sidebar-layout,
body.v4-checkout-page .wc-block-components-sidebar-layout,
body.woocommerce-cart .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: clamp(24px, 3vw, 44px) !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.v4-cart-page .wc-block-components-main,
body.v4-checkout-page .wc-block-components-main,
body.woocommerce-cart .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-main,
body.v4-cart-page .wc-block-components-sidebar,
body.v4-checkout-page .wc-block-components-sidebar,
body.woocommerce-cart .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.v4-cart-page .wc-block-cart-items,
body.woocommerce-cart .wc-block-cart-items,
body.v4-checkout-page .wc-block-checkout__main .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step,
body.v4-cart-page .wc-block-components-sidebar > *,
body.woocommerce-cart .wc-block-components-sidebar > *,
body.v4-checkout-page .wc-block-components-sidebar > *,
body.woocommerce-checkout .wc-block-components-sidebar > * {
  background: #fff !important;
  border: 1px solid rgba(8,18,26,.12) !important;
  border-radius: 0 !important;
  box-shadow: 0 22px 60px rgba(8,18,26,.055) !important;
}

body.v4-cart-page .wc-block-cart-items,
body.woocommerce-cart .wc-block-cart-items {
  padding: clamp(20px, 3vw, 34px) !important;
}

body.v4-checkout-page .wc-block-checkout__main .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step,
body.v4-cart-page .wc-block-components-sidebar > *,
body.woocommerce-cart .wc-block-components-sidebar > *,
body.v4-checkout-page .wc-block-components-sidebar > *,
body.woocommerce-checkout .wc-block-components-sidebar > * {
  padding: clamp(20px, 2.5vw, 30px) !important;
}

body.v4-cart-page .wc-block-components-sidebar > * + *,
body.woocommerce-cart .wc-block-components-sidebar > * + *,
body.v4-checkout-page .wc-block-components-sidebar > * + *,
body.woocommerce-checkout .wc-block-components-sidebar > * + * {
  margin-top: 18px !important;
}

body.v4-cart-page .wc-block-components-totals-wrapper,
body.v4-checkout-page .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.v4-cart-page .wc-block-components-panel,
body.v4-checkout-page .wc-block-components-panel,
body.woocommerce-cart .wc-block-components-panel,
body.woocommerce-checkout .wc-block-components-panel,
body.v4-cart-page .wc-block-components-order-summary,
body.v4-checkout-page .wc-block-components-order-summary,
body.woocommerce-cart .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-order-summary {
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.v4-cart-page .wc-block-components-button,
body.v4-checkout-page .wc-block-components-button,
body.woocommerce-cart .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-button {
  border-radius: 0 !important;
}

@media (max-width: 980px) {
  body.v4-cart-page .wc-block-components-sidebar-layout,
  body.v4-checkout-page .wc-block-components-sidebar-layout,
  body.woocommerce-cart .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr !important;
  }
}

/* v19: Checkout Blocks mobile cleanup + compact mobile header */
body.woocommerce-checkout .wp-block-woocommerce-checkout-express-payment-block,
body.woocommerce-checkout .wc-block-components-express-payment,
body.woocommerce-checkout .wc-block-components-express-payment__content,
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons,
body.v4-checkout-page .wp-block-woocommerce-checkout-express-payment-block,
body.v4-checkout-page .wc-block-components-express-payment,
body.v4-checkout-page .wc-block-components-express-payment__content,
body.v4-checkout-page .wc-block-components-express-payment__event-buttons {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-checkout__actions,
body.woocommerce-checkout .wc-block-checkout__actions_row,
body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block,
body.v4-checkout-page .wc-block-checkout__actions,
body.v4-checkout-page .wc-block-checkout__actions_row,
body.v4-checkout-page .wp-block-woocommerce-checkout-actions-block {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 24px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.woocommerce-checkout .wc-block-checkout__actions:empty,
body.woocommerce-checkout .wc-block-checkout__actions_row:empty,
body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block:empty,
body.woocommerce-checkout .wc-block-components-sidebar > *:empty,
body.woocommerce-checkout .wc-block-components-sidebar > div:empty,
body.v4-checkout-page .wc-block-checkout__actions:empty,
body.v4-checkout-page .wc-block-checkout__actions_row:empty,
body.v4-checkout-page .wp-block-woocommerce-checkout-actions-block:empty,
body.v4-checkout-page .wc-block-components-sidebar > *:empty,
body.v4-checkout-page .wc-block-components-sidebar > div:empty {
  display: none !important;
}

body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.v4-checkout-page .wc-block-components-sidebar,
body.v4-checkout-page .wc-block-checkout__sidebar {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  height: auto !important;
  min-height: 0 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar > .wp-block-woocommerce-checkout-express-payment-block,
body.v4-checkout-page .wc-block-components-sidebar > .wp-block-woocommerce-checkout-express-payment-block {
  display: none !important;
}

body.woocommerce-cart .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-notices,
body.woocommerce-cart .wc-block-components-notices__snackbar,
body.woocommerce-checkout .wc-block-components-notices__snackbar,
body.v4-cart-page .wc-block-components-notices,
body.v4-checkout-page .wc-block-components-notices,
body.v4-cart-page .wc-block-components-notices__snackbar,
body.v4-checkout-page .wc-block-components-notices__snackbar {
  border-radius: 0 !important;
}

@media (max-width: 680px) {
  body.v4-monica-akademia-theme .v2-site-header__inner {
    width: min(var(--v2-container), calc(100% - 22px)) !important;
    padding: 7px 0 8px !important;
    gap: 7px !important;
    min-height: 0 !important;
  }

  body.v4-monica-akademia-theme .v2-site-brand__logo,
  body.v4-monica-akademia-theme .v2-site-brand img,
  body.v4-monica-akademia-theme .custom-logo {
    width: min(var(--logo-width, 126px), 48vw) !important;
    max-width: 132px !important;
    max-height: 30px !important;
  }

  body.v4-monica-akademia-theme .v2-header-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }

  body.v4-monica-akademia-theme .v2-header-action {
    min-height: 34px !important;
    padding: 6px 8px !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    line-height: 1 !important;
    border-radius: 0 !important;
  }

  body.v4-monica-akademia-theme .v2-header-action__icon,
  body.v4-monica-akademia-theme .v2-header-action__icon svg {
    width: 14px !important;
    height: 14px !important;
    flex-basis: 14px !important;
  }

  body.v4-monica-akademia-theme .v2-header-action--cart strong {
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 0 !important;
    font-size: 11px !important;
  }

  body.woocommerce-cart .v2-page-shell,
  body.woocommerce-checkout .v2-page-shell,
  body.v4-cart-page .v2-page-shell,
  body.v4-checkout-page .v2-page-shell {
    padding-top: 24px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout,
  body.v4-checkout-page .wc-block-components-sidebar-layout,
  body.woocommerce-cart .wc-block-components-sidebar-layout,
  body.v4-cart-page .wc-block-components-sidebar-layout {
    gap: 18px !important;
  }

  body.woocommerce-checkout .wc-block-checkout__actions,
  body.woocommerce-checkout .wc-block-checkout__actions_row,
  body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block,
  body.v4-checkout-page .wc-block-checkout__actions,
  body.v4-checkout-page .wc-block-checkout__actions_row,
  body.v4-checkout-page .wp-block-woocommerce-checkout-actions-block {
    margin-top: 16px !important;
  }
}

/* v20: wycięcie pustego snackbar wrappera WooCommerce Blocks, który robił biały fixed kafel */
body.woocommerce-cart .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list,
body.woocommerce-checkout .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list,
body.v4-cart-page .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list,
body.v4-checkout-page .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: static !important;
  inset: auto !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

body.woocommerce-cart .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list > *,
body.woocommerce-checkout .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list > *,
body.v4-cart-page .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list > *,
body.v4-checkout-page .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list > * {
  display: none !important;
}

/* v21: clean Gutenberg document template header */
body.v4-monica-akademia-theme .mz-doc-page--clean .mz-doc-page__hero {
  padding: clamp(34px, 5vw, 58px) !important;
}

body.v4-monica-akademia-theme .mz-doc-page--clean .mz-doc-page__hero h1 {
  margin-bottom: 0 !important;
}

body.v4-monica-akademia-theme .mz-doc-page--clean .mz-doc-page__kicker,
body.v4-monica-akademia-theme .mz-doc-page--clean .mz-doc-page__hero p {
  display: none !important;
}
