:root {
  --vbl-red: #e73e4c;
  --vbl-red-dark: #cd2d3d;
  --vbl-ink: #171717;
  --vbl-muted: #686868;
  --vbl-line: #e5e2df;
  --vbl-surface: #faf8f4;
}

body:not(.vbl-landing-home) {
  background: #fff;
  color: var(--vbl-ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.vbl-store-skip {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
}

.vbl-store-skip:focus {
  transform: translateY(0);
}

.vbl-store-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--vbl-line);
  backdrop-filter: blur(12px);
}

.vbl-store-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.vbl-store-brand a {
  color: var(--vbl-ink);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.vbl-store-brand .custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 54px;
}

.vbl-store-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.vbl-store-nav a,
.vbl-store-cart {
  color: var(--vbl-ink);
  font-weight: 700;
  text-decoration: none;
}

.vbl-store-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vbl-cart-count {
  min-width: 25px;
  height: 25px;
  padding-inline: 7px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--vbl-red);
  color: #fff;
  font-size: 12px;
}

.vbl-store-main {
  min-height: 62vh;
  padding-block: 56px 80px;
}

.vbl-prose {
  max-width: 820px;
}

.vbl-prose h1,
.vbl-archive-header h1,
.vbl-empty-state h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
}

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

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

.vbl-content-card,
.products .product {
  padding: 24px;
  background: var(--vbl-surface);
  border: 1px solid var(--vbl-line);
}

.vbl-content-card h2 {
  margin-top: 0;
}

.vbl-content-card a {
  color: var(--vbl-ink);
}

.vbl-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: var(--vbl-red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.vbl-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--vbl-red-dark);
  color: #fff;
}

.vbl-woocommerce-shell .woocommerce {
  width: 100%;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 48px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select,
.search-form input[type="search"] {
  min-height: 48px;
  border: 1px solid #bbb;
  border-radius: 0;
  padding: 10px 12px;
}

.vbl-store-footer {
  padding: 54px 0 26px;
  background: var(--vbl-red);
  color: #fff;
}

.vbl-store-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
}

.vbl-store-footer strong {
  font-size: 24px;
}

.vbl-store-footer p {
  margin: 8px 0 0;
}

.vbl-store-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vbl-store-footer a {
  color: #fff;
}

.vbl-store-footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .38);
}

.vbl-empty-state {
  text-align: center;
}

.vbl-empty-state .search-form {
  margin: 28px auto;
}

.vbl-eyebrow {
  color: var(--vbl-red);
  font-weight: 900;
  letter-spacing: .12em;
}

@media (max-width: 800px) {
  .vbl-store-header__inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .vbl-store-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .vbl-store-nav ul {
    justify-content: flex-start;
    gap: 20px;
    white-space: nowrap;
  }

  .vbl-content-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .vbl-store-footer__inner {
    grid-template-columns: 1fr;
  }
}

