:root {
  --color-bg: #0a0a0a;
  --color-bg-elevated: #111315;
  --color-bg-soft: #171717;
  --color-card: rgba(23, 23, 23, 0.86);
  --color-card-strong: rgba(14, 15, 16, 0.92);
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-strong: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-strong: rgba(255, 255, 255, 0.2);
  --color-primary: #4cd137;
  --color-primary-hover: #6fe55d;
  --color-primary-text: #081106;
  --color-primary-text-hover: #081106;
  --color-secondary: rgba(255, 255, 255, 0.06);
  --color-secondary-hover: rgba(255, 255, 255, 0.12);
  --color-secondary-text: #f5f5f5;
  --color-secondary-text-hover: #ffffff;
  --color-tertiary: rgba(255, 255, 255, 0.04);
  --color-tertiary-hover: rgba(255, 255, 255, 0.1);
  --color-tertiary-text: #f5f5f5;
  --color-tertiary-text-hover: #ffffff;
  --color-text: #ffffff;
  --color-text-muted: #b1b1b1;
  --color-text-subtle: #8a8f98;
  --color-accent-red: #be0404;
  --color-accent-dark: #2a2b38;
  --color-sale-banner-bg: linear-gradient(90deg, #4cd137 0%, #8df57b 100%);
  --color-sale-banner-text: #081106;
  --content-inner-width: 1240px;
  --widget-padding: 24px;
  --shop-sidebar-width: clamp(220px, 24vw, 280px);
  --section-gap: 34px;
  --topbar-height: 76px;
  --subnav-height: 74px;
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.44);
  --hero-shadow: 0 30px 120px rgba(0, 0, 0, 0.5);
  --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --panel-bg: linear-gradient(180deg, rgba(21, 22, 24, 0.94), rgba(10, 10, 10, 0.96));
  --focus-ring: 0 0 0 3px rgba(76, 209, 55, 0.24);
  --transition-fast: 0.18s ease;
  --transition-med: 0.28s ease;
}

body.masivo-theme {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at top left, rgba(76, 209, 55, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(190, 4, 4, 0.16), transparent 28%),
    var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

body.masivo-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.85)),
    url("https://masivo.gg/bg.webp") top center / cover no-repeat;
  filter: brightness(0.62) saturate(0.92) sepia(0.12);
  transform: scale(1.02);
}

body.masivo-theme::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(76, 209, 55, 0.16), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(175deg, rgba(190, 4, 4, 0.1), transparent 25%, rgba(0, 0, 0, 0.82) 82%);
  pointer-events: none;
}

.masivo-theme,
.masivo-theme * {
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.masivo-theme h1,
.masivo-theme h2,
.masivo-theme h3,
.masivo-theme h4,
.masivo-theme h5,
.masivo-theme h6 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.masivo-theme p,
.masivo-theme ul,
.masivo-theme ol {
  margin: 0;
}

.masivo-theme a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.masivo-theme a:hover {
  color: #ffffff;
}

.masivo-theme img {
  display: block;
}

.masivo-theme button,
.masivo-theme input,
.masivo-theme select,
.masivo-theme textarea {
  font: inherit;
}

.masivo-theme .max-width {
  width: min(var(--content-inner-width), calc(100% - 40px));
  margin: 0 auto;
}

.masivo-theme .site {
  position: relative;
  gap: 0;
  max-height: none;
  overflow: visible;
}

.masivo-theme .section {
  padding: 0 0 var(--section-gap);
}

.masivo-theme .desktop-only {
  display: block;
}

.masivo-theme .mobile-only {
  display: none;
}

.masivo-theme .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.masivo-theme .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.masivo-theme .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(76, 209, 55, 0.14);
}

.masivo-theme .muted {
  color: var(--color-text-muted);
}

.masivo-theme .chip,
.masivo-theme .pill,
.masivo-theme .pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.masivo-theme .chip.subtle {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
}

.masivo-theme .pill-link:hover {
  background: rgba(76, 209, 55, 0.14);
  border-color: rgba(76, 209, 55, 0.36);
  color: #ffffff;
  transform: translateY(-1px);
}

.masivo-theme .btn-primary,
.masivo-theme .btn-secondary,
.masivo-theme .btn-tertiary,
.masivo-theme .link-text {
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.masivo-theme .btn-primary:focus-visible,
.masivo-theme .btn-secondary:focus-visible,
.masivo-theme .btn-tertiary:focus-visible,
.masivo-theme a:focus-visible,
.masivo-theme button:focus-visible,
.masivo-theme input:focus-visible,
.masivo-theme select:focus-visible,
.masivo-theme textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.masivo-theme .btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
  border-color: rgba(76, 209, 55, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.masivo-theme .btn-primary:hover,
.masivo-theme .btn-primary:focus {
  background: var(--color-primary-hover);
  color: var(--color-primary-text-hover);
  transform: translateY(-1px);
}

.masivo-theme .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-secondary-text);
  border-color: var(--color-border);
}

.masivo-theme .btn-secondary:hover,
.masivo-theme .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-secondary-text-hover);
  border-color: var(--color-border-strong);
  transform: translateY(-1px);
}

.masivo-theme .btn-tertiary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-tertiary-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.masivo-theme .btn-tertiary:hover,
.masivo-theme .btn-tertiary:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-tertiary-text-hover);
  border-color: var(--color-border);
}

.masivo-theme .btn-primary:disabled,
.masivo-theme .btn-secondary:disabled,
.masivo-theme .btn-tertiary:disabled,
.masivo-theme .disabled {
  opacity: 0.55;
  pointer-events: none;
}

.masivo-theme .quantity-field {
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.masivo-theme .quantity-field input[type=number] {
  background: transparent;
  color: var(--color-text);
  border-radius: 0;
  border: none;
  min-height: 100%;
}

.masivo-theme .store-product .quantity-field.with-open-basket {
  display: grid;
  grid-template-columns: 36px 54px 36px 36px;
  align-items: stretch;
  width: 100%;
  min-width: 162px;
  min-height: 46px;
  height: auto;
}

.masivo-theme .store-product .quantity-field.with-open-basket .adjust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.masivo-theme .store-product .quantity-field.with-open-basket .adjust.decrease {
  order: 1;
}

.masivo-theme .store-product .quantity-field.with-open-basket input[type=number] {
  order: 2;
}

.masivo-theme .store-product .quantity-field.with-open-basket .adjust.increase {
  order: 3;
}

.masivo-theme .store-product .quantity-field.with-open-basket .adjust.decrease,
.masivo-theme .store-product .quantity-field.with-open-basket .adjust.increase {
  margin: 0;
}

.masivo-theme .store-product .quantity-field.with-open-basket .adjust:hover,
.masivo-theme .store-product .quantity-field.with-open-basket .adjust:focus {
  transform: none;
}

.masivo-theme .store-product .quantity-field.with-open-basket .open-basket {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  order: 4;
  width: 36px;
  min-width: 36px;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
}

.masivo-theme .store-product .quantity-field.with-open-basket .open-basket:hover,
.masivo-theme .store-product .quantity-field.with-open-basket .open-basket:focus {
  color: #ffffff;
}

.masivo-theme .store-product .quantity-field.with-open-basket input[type=number] {
  width: 54px;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.masivo-theme .site-header {
  position: relative;
  z-index: 10;
  margin: 0;
  max-width: none;
  padding-top: 16px;
  padding-inline: 0;
}

.masivo-theme .top-navbar {
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: var(--topbar-height);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(14, 14, 14, 0.82));
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.masivo-theme .top-navbar .nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 56px;
}

.masivo-theme .top-navbar .nav-inner.max-width {
  width: calc(100% - 16px);
  max-width: none;
}

.masivo-theme .top-navbar .nav-mobile {
  display: none;
}

.masivo-theme .top-navbar .nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.masivo-theme .nav-brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.masivo-theme .top-navbar .nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.masivo-theme .nav-brand-copy {
  display: grid;
  gap: 2px;
}

.masivo-theme .nav-brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.masivo-theme .nav-brand-copy span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.masivo-theme .top-navbar .nav-links {
  display: flex;
  justify-content: center;
}

.masivo-theme .brand-link-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.masivo-theme .brand-link-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.masivo-theme .brand-link-list a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  opacity: 0;
}

.masivo-theme .brand-link-list a:hover,
.masivo-theme .brand-link-list a:focus-visible,
.masivo-theme .brand-link-list a.is-shop-link {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.masivo-theme .brand-link-list a:hover::after,
.masivo-theme .brand-link-list a:focus-visible::after,
.masivo-theme .brand-link-list a.is-shop-link::after {
  transform: scaleX(1);
  opacity: 1;
}

.masivo-theme .top-navbar .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.masivo-theme .top-navbar .open-basket,
.masivo-theme .top-navbar .log-in,
.masivo-theme .top-navbar .user-name {
  min-height: 46px;
  padding-inline: 18px;
}

.masivo-theme .top-navbar .user-name {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.masivo-theme .top-navbar .user-name .text-inner {
  min-width: 120px;
}

.masivo-theme .site-sale-banner {
  margin: 14px auto 0;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(76, 209, 55, 0.22);
  background: var(--color-sale-banner-bg);
  color: var(--color-sale-banner-text);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.masivo-theme .site-navigation {
  position: relative;
  z-index: 11;
  width: 100%;
  margin-top: 14px;
}

.masivo-theme .mobile-nav-instance {
  display: none;
}

@media (min-width: 961px) {
  .masivo-theme .mobile-nav-instance {
    display: none !important;
  }
}

.masivo-theme .navigation-vertical {
  margin-top: 0;
}

.masivo-theme .site-navigation .nav-panel {
  width: min(var(--content-inner-width), calc(100% - 40px));
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.88), rgba(16, 16, 16, 0.92));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.masivo-theme .site-navigation .menu {
  display: grid;
  gap: 16px;
}

.masivo-theme .navigation-horizontal .nav-panel {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.masivo-theme .navigation-horizontal .menu {
  gap: 0;
}

.masivo-theme .nav-main-links {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.masivo-theme .nav-main-links .brand-link-list {
  flex-direction: column;
  align-items: stretch;
}

.masivo-theme .nav-main-links .brand-link-list a {
  justify-content: flex-start;
  min-height: 48px;
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.masivo-theme .shop-nav-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.masivo-theme .shop-nav-title {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.masivo-theme .navigation-horizontal .shop-nav-head {
  display: none;
}

.masivo-theme .navigation-horizontal .navigation-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.masivo-theme .navigation-horizontal .navigation-list > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.masivo-theme .navigation-horizontal .navigation-list > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 800;
}

.masivo-theme .navigation-horizontal .navigation-list > li.active > a,
.masivo-theme .navigation-horizontal .navigation-list > li > a:hover,
.masivo-theme .navigation-horizontal .navigation-list > li > a.link-active {
  background: rgba(76, 209, 55, 0.14);
  border-color: rgba(76, 209, 55, 0.28);
  color: #ffffff;
}

.masivo-theme .navigation-horizontal .navigation-list > li.has-children > .toggle {
  display: none;
}

.masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.masivo-theme .navigation-horizontal .navigation-list > li.expanded > ul,
.masivo-theme .navigation-horizontal .navigation-list > li:hover > ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul li + li {
  margin-top: 6px;
}

.masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  color: var(--color-text-muted);
}

.masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul a:hover,
.masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul li.active a {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.masivo-theme .navigation-horizontal .nav-top,
.masivo-theme .navigation-horizontal .nav-foot {
  display: none;
}

.masivo-theme .navigation-vertical.widget {
  padding: var(--widget-padding);
}

.masivo-theme .navigation-vertical .nav-panel {
  width: 100%;
  max-width: none;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.masivo-theme .navigation-vertical .menu {
  gap: 14px;
}

.masivo-theme .navigation-vertical .shop-nav-head {
  margin-bottom: 0;
}

.masivo-theme .page-hero,
body.masivo-theme.page-index .section-categories:first-of-type,
body.masivo-theme.page-index .section-dual:first-of-type {
  position: relative;
}

.masivo-theme .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at top left, rgba(76, 209, 55, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.masivo-theme .story-card,
.masivo-theme .category-card,
.masivo-theme .store-product,
.masivo-theme .store-sidebar .widget,
.masivo-theme .store-text,
.masivo-theme .category-description,
.masivo-theme .no-products,
.masivo-theme .footer-card,
.masivo-theme .basket,
.masivo-theme .store-product-options,
.masivo-theme .popup .popup-content,
.masivo-theme .basket-popup-content,
.masivo-theme .login-popup .popup-content,
.masivo-theme .store-form {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--panel-bg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

body.masivo-theme.page-index .section-categories:first-of-type,
body.masivo-theme.page-index .section-dual:first-of-type {
  padding-top: 26px;
}

.masivo-theme .section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.masivo-theme .section-heading h2,
.masivo-theme .section-heading h3 {
  max-width: 16ch;
  font-size: clamp(28px, 4vw, 44px);
}

.masivo-theme .section-heading.compact h2,
.masivo-theme .section-heading.compact h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.masivo-theme .section-categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.masivo-theme .story-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.masivo-theme .story-card .section-heading {
  margin-bottom: 0;
}

.masivo-theme .category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
}

.masivo-theme .category-card::before,
.masivo-theme .story-card::before,
.masivo-theme .store-product::before,
.masivo-theme .store-sidebar .widget::before,
.masivo-theme .footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.masivo-theme .category-card:hover,
.masivo-theme .store-product:hover,
.masivo-theme .store-sidebar .widget:hover {
  border-color: rgba(76, 209, 55, 0.24);
  transform: translateY(-2px);
}

.masivo-theme .category-card .card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(42, 43, 56, 0.56), rgba(12, 12, 12, 0.76));
}

.masivo-theme .category-card .card-visual .chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.masivo-theme .category-card .card-visual .image {
  max-height: 142px;
  width: auto;
  object-fit: contain;
}

.masivo-theme .category-card .card-copy {
  display: grid;
  gap: 8px;
}

.masivo-theme .category-card .card-copy h4 {
  font-size: 24px;
}

.masivo-theme .section-dual .dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.masivo-theme .store-text {
  position: relative;
  padding: 24px;
}

.masivo-theme .storefront-copy {
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.masivo-theme .widget-stack,
.masivo-theme .widget-stack .store-sidebar,
.masivo-theme .store-sidebar {
  display: grid;
  gap: 16px;
}

.masivo-theme .store-sidebar .widget {
  position: relative;
  overflow: hidden;
}

.masivo-theme .store-sidebar .widget-title {
  margin-bottom: 14px;
  font-size: 22px;
}

.masivo-theme .site-content,
.masivo-theme .site-content.site-content-widgets,
.masivo-theme .category-shell,
.masivo-theme .cms-shell {
  display: grid;
  grid-template-columns: var(--shop-sidebar-width) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.masivo-theme .store-products {
  min-width: 0;
}

body.masivo-theme.is-sidebar-right .site-content.site-content-widgets,
body.masivo-theme.is-sidebar-right .category-shell.site-content-widgets {
  grid-template-columns: minmax(0, 1fr) var(--shop-sidebar-width);
}

.masivo-theme .page-hero {
  padding: 22px 0 22px;
}

.masivo-theme .page-hero .page-hero-inner {
  position: relative;
  overflow: hidden;
  padding: 32px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(10, 10, 10, 0.88));
  box-shadow: var(--shadow-soft);
}

.masivo-theme .page-hero .page-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.masivo-theme .page-hero .page-title {
  max-width: 14ch;
  font-size: clamp(34px, 5vw, 58px);
}

.masivo-theme .page-hero .page-hero-description {
  max-width: 70ch;
  font-size: 17px;
}

.masivo-theme .category-shell {
  padding-top: 0;
}

.masivo-theme .category-description,
.masivo-theme .no-products {
  padding: 22px;
  margin-bottom: 18px;
}

.masivo-theme .store-products-rows,
.masivo-theme .store-products-images,
.masivo-theme .store-products-list,
.masivo-theme .store-products-tiered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.masivo-theme .store-product {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
}

.masivo-theme .store-product .image-link,
.masivo-theme .store-product-full .image,
.masivo-theme .store-product-full .media-slider {
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(42, 43, 56, 0.38), rgba(12, 12, 12, 0.76));
}

.masivo-theme .store-product .image {
  max-height: 188px;
  width: auto;
  object-fit: contain;
}

.masivo-theme .store-product .image-default {
  width: 130px;
  aspect-ratio: 1;
}

.masivo-theme .store-product .product-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 24px;
}

.masivo-theme .store-product .product-title a:hover {
  color: var(--color-primary);
}

.masivo-theme .store-product .product-title .countdown,
.masivo-theme .store-product-full .countdown,
.masivo-theme .store-product-tiered .countdown {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(190, 4, 4, 0.18);
  border: 1px solid rgba(255, 111, 111, 0.22);
  color: #ffd0d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.masivo-theme .store-product .price,
.masivo-theme .store-product-tiered .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
}

.masivo-theme .store-product .price strong,
.masivo-theme .store-product-tiered .price strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.masivo-theme .store-product .discount,
.masivo-theme .store-product-tiered .discount {
  color: #ffb1b1;
}

.masivo-theme .store-product .actions,
.masivo-theme .store-product-tiered .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
  gap: 10px;
}

.masivo-theme .store-product .product-actions.has-gift {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.masivo-theme .store-product .product-actions.has-gift > .price {
  width: 100%;
}

.masivo-theme .store-product .product-actions.has-gift > .subscribe,
.masivo-theme .store-product .product-actions.has-gift > .quantity-field {
  flex: 1 1 150px;
  min-width: 0;
}

.masivo-theme .store-product .product-actions.has-gift > .quantity-field {
  flex: 0 0 162px;
  min-width: 162px;
}

.masivo-theme .store-product .product-actions.has-gift > .subscribe {
  min-width: 120px;
}

.masivo-theme .store-product .product-actions.has-gift .gift {
  flex: 0 0 46px;
  margin-left: 0;
}

.masivo-theme .store-product .gift,
.masivo-theme .store-product .remove,
.masivo-theme .store-product .wide,
.masivo-theme .store-product-tiered .wide {
  justify-content: center;
}

.masivo-theme .store-product-full {
  padding: 22px;
}

.masivo-theme .store-product-full .product-title {
  font-size: clamp(28px, 3vw, 40px);
}

.masivo-theme .product-title-bar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.masivo-theme .text-content {
  color: #f6f6f6;
}

.masivo-theme .text-content p + p,
.masivo-theme .text-content ul + p,
.masivo-theme .text-content p + ul,
.masivo-theme .text-content p + ol,
.masivo-theme .text-content h2 + p,
.masivo-theme .text-content h3 + p {
  margin-top: 14px;
}

.masivo-theme .text-content ul,
.masivo-theme .text-content ol {
  padding-left: 20px;
}

.masivo-theme .text-content li + li {
  margin-top: 8px;
}

.masivo-theme .text-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.masivo-theme .cms-content {
  min-height: 220px;
}

.masivo-theme .widget-recent .avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.masivo-theme .widget-top-donator .avatar {
  display: block;
  width: auto;
  max-width: 100%;
  height: 108px;
  margin: 0 auto 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: contain;
  object-position: center top;
}

.masivo-theme .widget-recent .purchase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.masivo-theme .widget-recent .purchase + .purchase {
  margin-top: 12px;
}

.masivo-theme .widget-recent .username,
.masivo-theme .widget-top-donator .username,
.masivo-theme .widget-server-status h6 {
  font-size: 18px;
  font-weight: 900;
}

.masivo-theme .widget-top-donator .widget-content,
.masivo-theme .widget-server-status .widget-content,
.masivo-theme .widget-community-goal .widget-content,
.masivo-theme .widget-goal .widget-content,
.masivo-theme .widget-recent .widget-content {
  position: relative;
  z-index: 1;
}

.masivo-theme .widget-community-goal .progress,
.masivo-theme .widget-goal .progress {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.masivo-theme .widget-community-goal .progress-bar,
.masivo-theme .widget-goal .progress-bar {
  background: linear-gradient(90deg, var(--color-primary), #97ff77);
}

.masivo-theme .widget-server-status h6 + p,
.masivo-theme .widget-top-donator h6 + p,
.masivo-theme .widget-content .empty,
.masivo-theme .widget-content time,
.masivo-theme .widget-content .sep {
  color: var(--color-text-muted);
}

.masivo-theme .store-form,
.masivo-theme .store-product-options,
.masivo-theme .basket,
.masivo-theme .popup .popup-content,
.masivo-theme .basket-popup-content {
  padding: 22px;
}

.masivo-theme .store-form .field,
.masivo-theme .store-product-options .field,
.masivo-theme .basket .field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.masivo-theme .store-form .field:last-child,
.masivo-theme .store-product-options .field:last-child,
.masivo-theme .basket .field:last-child {
  margin-bottom: 0;
}

.masivo-theme input[type=text],
.masivo-theme input[type=number],
.masivo-theme input[type=email],
.masivo-theme input[type=password],
.masivo-theme select,
.masivo-theme textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.masivo-theme textarea {
  min-height: 120px;
  padding-block: 14px;
}

.masivo-theme input::placeholder,
.masivo-theme textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.masivo-theme .field-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.masivo-theme .field-inline > * {
  flex: 1 1 auto;
}

.masivo-theme .store-product-options .actions,
.masivo-theme .store-form-options .actions,
.masivo-theme .basket-checkout .store-form,
.masivo-theme .basket-checkout {
  position: relative;
  z-index: 1;
}

.masivo-theme .basket-header {
  margin-bottom: 10px;
}

.masivo-theme .basket-title {
  font-size: clamp(28px, 4vw, 40px);
}

.masivo-theme .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.masivo-theme .basket-second-header .count,
.masivo-theme .basket-second-header .total,
.masivo-theme .basket-checkout h3 {
  font-size: 15px;
  font-weight: 800;
}

.masivo-theme .basket-items {
  display: grid;
  gap: 12px;
}

.masivo-theme .basket-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.masivo-theme .basket-item .title {
  font-size: 19px;
}

.masivo-theme .basket-item .options {
  margin-top: 8px;
  color: var(--color-text-muted);
}

.masivo-theme .basket-item .options li + li {
  margin-top: 4px;
}

.masivo-theme .basket-item .price {
  margin-top: 10px;
  font-weight: 800;
}

.masivo-theme .basket-checkout {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.masivo-theme .basket-checkout h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.masivo-theme .basket-checkout .checkout {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
}

.masivo-theme .popup .popup-content,
.masivo-theme .basket-popup-content,
.masivo-theme .login-popup .popup-content,
.masivo-theme .gift-form-popup .popup-content,
.masivo-theme .store-product-popup-content {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.97), rgba(10, 10, 10, 0.98));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-strong);
}

.masivo-theme .popup-close,
.masivo-theme .basket-popup .popup-close,
.masivo-theme .gift-form-popup .popup-close {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.masivo-theme .toast {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(10, 10, 10, 0.94);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.masivo-theme .toast-close {
  color: var(--color-primary);
}

.masivo-theme .site-footer {
  margin-top: 10px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.94));
  backdrop-filter: blur(12px);
}

.masivo-theme .site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.masivo-theme .site-footer-inner.max-width {
  width: calc(100% - 16px);
  max-width: none;
}

.masivo-theme .footer-brand {
  display: grid;
  gap: 18px;
}

.masivo-theme .footer-brand-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.masivo-theme .footer-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.masivo-theme .footer-brand h4 {
  font-size: 26px;
}

.masivo-theme .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.masivo-theme .footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.masivo-theme .footer-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}

.masivo-theme .footer-list {
  display: grid;
  gap: 10px;
}

.masivo-theme .footer-list a,
.masivo-theme .footer-card .muted {
  color: var(--color-text-muted);
}

.masivo-theme .footer-list a:hover {
  color: #ffffff;
}

.masivo-theme .footer-card.payments .we-accept {
  position: static;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.masivo-theme .footer-card.payments .we-accept li {
  display: flex;
  align-items: center;
}

.masivo-theme .footer-card.payments .we-accept img {
  width: auto;
  height: 22px;
  filter: saturate(1.08) brightness(0.96);
}

.masivo-theme .copyright {
  color: var(--color-text-subtle);
  font-size: 12px;
}

.masivo-theme .site-footer-credit {
  background: rgba(10, 10, 10, 0.96);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.masivo-theme .site-footer-credit .copyright,
.masivo-theme .site-footer-credit .legal,
.masivo-theme .site-footer-credit .legal a {
  color: var(--color-text-muted);
}

.masivo-theme .site-footer-credit .legal a:hover {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .masivo-theme .top-navbar .nav-inner {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .masivo-theme .top-navbar .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .masivo-theme .top-navbar .nav-actions {
    grid-column: 2;
  }

  .masivo-theme .section-dual .dual-grid,
  .masivo-theme .site-content,
  .masivo-theme .site-content.site-content-widgets,
  .masivo-theme .category-shell,
  .masivo-theme .cms-shell,
  .masivo-theme .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .masivo-theme .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .masivo-theme .desktop-only {
    display: none;
  }

  .masivo-theme .mobile-only {
    display: block;
  }

  .masivo-theme .desktop-nav-instance {
    display: none;
  }

  .masivo-theme .mobile-nav-instance {
    display: block;
  }

  .masivo-theme .site-header {
    padding-top: 10px;
  }

  .masivo-theme .top-navbar {
    padding: 8px 0;
  }

  .masivo-theme .top-navbar .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .masivo-theme .top-navbar .nav-mobile {
    display: block;
  }

  .masivo-theme .top-navbar .toggle-navigation {
    --btn-icon: url("https://template-assets.tebex.io/images/burger.svg");
    min-width: 46px;
    min-height: 46px;
  }

  .masivo-theme .top-navbar .nav-brand {
    gap: 12px;
  }

  .masivo-theme .nav-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .masivo-theme .nav-brand-copy span {
    font-size: 10px;
  }

  .masivo-theme .top-navbar .nav-actions {
    gap: 8px;
  }

  .masivo-theme .top-navbar .open-basket {
    position: relative;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
  }

  .masivo-theme .top-navbar .open-basket::after {
    content: "🛒";
    font-size: 20px;
    line-height: 1;
    color: var(--color-primary-text);
  }

  .masivo-theme .top-navbar .user-name {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: min(34vw, 136px);
    min-height: 44px;
    padding-inline: 12px;
    font-size: 13px;
    color: var(--color-secondary-text);
  }

  .masivo-theme .top-navbar .user-name::before {
    display: none;
  }

  .masivo-theme .top-navbar .user-name .text-inner {
    min-width: 0;
  }

  .masivo-theme .top-navbar .user-name .text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .masivo-theme .top-navbar .user-name .text-hover {
    display: none;
  }

  .masivo-theme .top-navbar .log-in {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
  }

  .masivo-theme .top-navbar .log-in::after {
    content: "👤";
    font-size: 18px;
    line-height: 1;
    color: var(--color-secondary-text);
  }

  .masivo-theme .site-navigation {
    position: fixed;
    inset: 0;
    margin: 0;
    padding:
      max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), visibility var(--transition-med);
  }

  body.masivo-theme.show-navigation .site-navigation {
    opacity: 1;
    visibility: visible;
  }

  .masivo-theme .site-navigation .nav-panel {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: clamp(18px, 5vw, 24px);
    overflow: hidden;
    border-radius: 26px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .masivo-theme .site-navigation .menu {
    position: static;
    inset: auto;
    min-height: 0;
    padding: 0 4px 0 0;
    overflow: auto;
    background: transparent;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    translate: none;
    scale: 1;
  }

  body.masivo-theme:not(.show-navigation) .site-navigation .menu {
    opacity: 1;
  }

  .masivo-theme .site-navigation .nav-top,
  .masivo-theme .site-navigation .nav-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .masivo-theme .site-navigation .nav-foot {
    margin-top: 18px;
    flex-direction: column;
  }

  .masivo-theme .navigation-horizontal .navigation-list,
  .masivo-theme .navigation-vertical .navigation-list {
    display: grid;
    gap: 8px;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li,
  .masivo-theme .navigation-vertical .navigation-list > li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li > a,
  .masivo-theme .navigation-vertical .navigation-list > li > a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 16px;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li.has-children > .toggle,
  .masivo-theme .navigation-vertical .navigation-list > li.has-children > .toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 48px;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul,
  .masivo-theme .navigation-vertical .navigation-list > li.has-children > ul {
    position: static;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 10px 0 0;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    grid-column: 1 / -1;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li.has-children:not(.expanded) > ul,
  .masivo-theme .navigation-vertical .navigation-list > li.has-children:not(.expanded) > ul {
    display: none;
  }

  .masivo-theme .navigation-horizontal .navigation-list > li.has-children > ul a,
  .masivo-theme .navigation-vertical .navigation-list > li.has-children > ul a {
    padding-left: 16px;
  }

  .masivo-theme .shop-nav-head {
    align-items: flex-start;
  }

  .masivo-theme .shop-nav-title {
    font-size: 22px;
  }

  .masivo-theme .footer-columns {
    grid-template-columns: 1fr;
  }

  .masivo-theme .section-heading h2,
  .masivo-theme .section-heading h3 {
    max-width: none;
  }

  .masivo-theme .page-hero .page-hero-inner {
    padding: 24px 20px;
  }

  .masivo-theme .page-hero .page-title {
    max-width: none;
  }

  .masivo-theme .basket-item {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .masivo-theme .basket-item .quantity-field,
  .masivo-theme .basket-item .remove {
    width: 100%;
  }

  body.masivo-theme.is-navigation-vertical .top-navbar .nav-mobile {
    display: none;
  }

  body.masivo-theme.is-navigation-vertical .desktop-nav-instance {
    position: relative;
    inset: auto;
    z-index: auto;
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  body.masivo-theme.is-navigation-vertical .mobile-nav-instance {
    display: none;
  }

  body.masivo-theme.is-navigation-vertical .desktop-nav-instance .nav-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: none;
    gap: 14px;
    padding: var(--widget-padding);
    overflow: visible;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--panel-bg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
  }

  body.masivo-theme.is-navigation-vertical .desktop-nav-instance .menu {
    position: static;
    inset: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    translate: none;
    scale: 1;
    opacity: 1;
  }

  body.masivo-theme.is-navigation-vertical:not(.show-navigation) .desktop-nav-instance .menu {
    translate: none;
    scale: 1;
    opacity: 1;
  }

  body.masivo-theme.is-navigation-vertical .desktop-nav-instance .nav-top,
  body.masivo-theme.is-navigation-vertical .desktop-nav-instance .nav-foot,
  body.masivo-theme.is-navigation-vertical .desktop-nav-instance .nav-main-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .masivo-theme .max-width {
    width: min(var(--content-inner-width), calc(100% - 24px));
  }

  .masivo-theme .top-navbar .nav-inner.max-width,
  .masivo-theme .site-footer-inner.max-width {
    width: calc(100% - 12px);
  }

  .masivo-theme .section {
    padding-bottom: 24px;
  }

  .masivo-theme .top-navbar .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .masivo-theme .nav-brand-copy span {
    display: none;
  }

  .masivo-theme .nav-brand-copy strong {
    font-size: 15px;
  }

  .masivo-theme .top-navbar .open-basket {
    min-width: 44px;
    padding-inline: 14px;
  }

  .masivo-theme .footer-actions,
  .masivo-theme .field-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .masivo-theme .footer-brand-top,
  .masivo-theme .basket-second-header,
  .masivo-theme .basket-checkout h3 {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .masivo-theme .store-product .product-actions.has-gift {
    display: grid;
    grid-template-columns: 1fr;
  }

  .masivo-theme .store-product .product-actions.has-gift > .price,
  .masivo-theme .store-product .product-actions.has-gift > .subscribe,
  .masivo-theme .store-product .product-actions.has-gift > .quantity-field,
  .masivo-theme .store-product .product-actions.has-gift > .gift {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .masivo-theme .store-product .product-actions.has-gift > .gift {
    min-height: 46px;
  }

  .masivo-theme .store-product .quantity-field.with-open-basket {
    min-width: 0;
    grid-template-columns: 40px minmax(0, 1fr) 40px 40px;
  }

  .masivo-theme .field-inline > .btn-primary,
  .masivo-theme .field-inline > .btn-secondary,
  .masivo-theme .field-inline > .btn-tertiary {
    width: 100%;
  }

  .masivo-theme .store-product .actions,
  .masivo-theme .store-product-tiered .actions,
  .masivo-theme .store-products-rows,
  .masivo-theme .store-products-images,
  .masivo-theme .store-products-list,
  .masivo-theme .store-products-tiered,
  .masivo-theme .section-categories .category-grid {
    grid-template-columns: 1fr;
  }

  .masivo-theme .story-card,
  .masivo-theme .store-text,
  .masivo-theme .store-product,
  .masivo-theme .store-form,
  .masivo-theme .basket,
  .masivo-theme .store-product-options,
  .masivo-theme .footer-card {
    padding: 18px;
  }

  .masivo-theme .story-card {
    gap: 14px;
    border-radius: var(--radius-md);
  }
}
