:root {
  --v1b-ink: #0a0a0a;
  --v1b-paper: #f7f7f5;
  --v1b-white: #fafaf8;
  --v1b-muted: #6e6e6e;
  --v1b-line: #e3dfdb;
  --v1b-accent: #0a0a0a;
  --v1b-accent-soft: #f0f0ee;
  --v1b-accent-deep: #0a0a0a;
  --v1b-radius: 8px;
  --v1b-radius-sm: 4px;
  --v1b-font-heading: "Archivo Black", system-ui, sans-serif;
  --v1b-font-body: "Instrument Sans", system-ui, sans-serif;
  --v1b-shadow: 0 12px 32px rgba(10, 10, 10, 0.06);
  --v1b-content: 1280px;
  --wp--style--global--content-size: min(100%, var(--v1b-content));
  --wp--style--global--wide-size: 100%;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none !important;
  overflow-x: hidden;
  font-family: var(--v1b-font-body);
  color: var(--v1b-ink);
  background: var(--v1b-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Kill WP / page-builder wrappers that squash the whole site into a narrow column */
#page,
.site,
.wp-site-blocks,
#wrapper,
#content,
.site-content,
.v1b-home,
.is-root-container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.is-layout-constrained,
body .is-layout-constrained {
  max-width: none !important;
}

body .is-layout-constrained > :where(:not(.alignfull):not(.alignwide):not(.v1b-container)),
.wp-site-blocks > :where(:not(.alignfull):not(.v1b-container)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Inner pages that put v1b-container on <main> keep a readable content width */
.site-main.v1b-container {
  width: 100%;
  max-width: var(--v1b-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
}

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

h1, h2, h3, h4 {
  font-family: var(--v1b-font-heading);
  color: var(--v1b-ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

a { color: var(--v1b-accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.v1b-container {
  width: 100%;
  max-width: var(--v1b-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

/* Full-bleed shells — never inherit a parent max-width */
.v1b-announcement,
.v1b-header,
.v1b-hero,
.v1b-trust,
.v1b-slogan-strip,
.v1b-section,
.v1b-footer,
.v1b-cta {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Announcement */
.v1b-announcement {
  background: var(--v1b-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.v1b-announcement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  text-align: center;
}
.v1b-announcement p { margin: 0; }

/* Header */
.v1b-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--v1b-line);
  backdrop-filter: blur(14px);
}
.v1b-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}
.v1b-logo {
  flex: 0 0 auto;
}
.v1b-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.v1b-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.v1b-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v1b-nav__list > li { flex: 0 0 auto; }
.v1b-nav__list a {
  color: var(--v1b-ink);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.v1b-nav__list a:hover { color: var(--v1b-accent-deep); text-decoration: none; }
.v1b-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.v1b-nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  order: 3;
}
.v1b-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--v1b-ink);
  margin: 4px 0;
}

/* Hamburger before nav can stack/squash (in main.css so it always ships) */
@media (max-width: 1100px) {
  .v1b-nav-toggle { display: block; }
  .v1b-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex: none;
    justify-content: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--v1b-line);
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.25rem;
    z-index: 120;
  }
  .v1b-nav.is-open { display: block; }
  .v1b-nav__list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Buttons */
.v1b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.v1b-btn:hover { transform: translateY(-1px); }
.v1b-btn--primary {
  background: var(--v1b-accent);
  border-color: var(--v1b-accent);
  color: #fff !important;
}
.v1b-btn--primary:hover {
  background: var(--v1b-accent-deep);
  border-color: var(--v1b-accent-deep);
  color: #fff !important;
}
.v1b-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}
.v1b-header .v1b-btn--ghost,
.v1b-section .v1b-btn--ghost {
  border-color: var(--v1b-line);
  color: var(--v1b-ink) !important;
  background: var(--v1b-white);
}
.v1b-header .v1b-btn--ghost:hover,
.v1b-section .v1b-btn--ghost:hover {
  border-color: var(--v1b-ink);
  background: var(--v1b-paper);
}

/* Hero */
.v1b-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--v1b-ink);
}
.v1b-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v1b-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}
.v1b-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.28) 55%, rgba(10, 10, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.65) 100%);
}
.v1b-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vh, 4.5rem);
}
.v1b-hero__mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}
.v1b-hero h1 {
  color: #fff !important;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  max-width: min(12ch, 100%);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.v1b-hero__subhead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 36ch;
  margin: 0;
}
.v1b-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.v1b-hero .v1b-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.v1b-hero .v1b-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

/* Trust */
.v1b-trust {
  background: var(--v1b-ink);
  color: #fff;
  padding: 1.15rem 0;
}
.v1b-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.v1b-trust__item strong {
  display: block;
  color: var(--v1b-paper);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.v1b-trust__item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

/* Sections */
.v1b-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  width: 100%;
}
.v1b-section--paper,
.v1b-section--cream { background: var(--v1b-paper); }
.v1b-section--ink {
  background: var(--v1b-ink);
  color: #fff;
}
.v1b-section--ink h2,
.v1b-section--ink h3 { color: #fff; }
.v1b-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.v1b-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.v1b-section__lead {
  margin: 0 auto;
  color: var(--v1b-muted);
  font-size: 1.05rem;
  max-width: 48ch;
}
.v1b-section--ink .v1b-section__lead { color: rgba(255, 255, 255, 0.72); }

.v1b-slogan {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v1b-muted);
}
.v1b-slogan--center { text-align: center; }
.v1b-slogan--on-dark { color: var(--v1b-paper); }
.v1b-slogan--hero { color: var(--v1b-paper); margin-bottom: 0.85rem; }

/* Product grid */
.v1b-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.v1b-product-card {
  background: var(--v1b-white);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius);
  overflow: hidden;
  box-shadow: var(--v1b-shadow);
  transition: transform 0.2s ease;
}
.v1b-product-card:hover { transform: translateY(-4px); }
.v1b-product-card__img {
  aspect-ratio: 1;
  background: var(--v1b-paper);
  overflow: hidden;
}
.v1b-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v1b-product-card__body { padding: 1.1rem 1.15rem 1.3rem; }
.v1b-product-card__body h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0 0.4rem;
}
.v1b-product-card__price {
  margin: 0;
  font-weight: 700;
  color: var(--v1b-accent-deep);
}
.v1b-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--v1b-accent-soft);
  color: var(--v1b-accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v1b-section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* Collection tiles */
.v1b-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.v1b-collection-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.v1b-collection-tile {
  position: relative;
  min-height: 340px;
  border-radius: var(--v1b-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
  box-shadow: var(--v1b-shadow);
}
.v1b-collection-tile__media {
  position: absolute;
  inset: 0;
}
.v1b-collection-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v1b-collection-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.05) 20%, rgba(10, 20, 40, 0.82) 100%);
}
.v1b-collection-tile__body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}
.v1b-collection-tile h3 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}
.v1b-collection-tile p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28ch;
}
.v1b-collection-tile span {
  font-weight: 700;
  color: #9fe1cb;
}

/* Why grid */
.v1b-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.v1b-why-card {
  background: var(--v1b-white);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius);
  padding: 1.5rem;
}
.v1b-why-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.v1b-why-card p { margin: 0; color: var(--v1b-muted); }

/* Process */
.v1b-process {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.v1b-process__copy .v1b-section__title,
.v1b-process__copy .v1b-slogan { text-align: left; }
.v1b-process__copy .v1b-section__lead {
  margin: 0 0 1.25rem;
  text-align: left;
}
.v1b-process ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--v1b-muted);
}
.v1b-process__media {
  border-radius: var(--v1b-radius);
  overflow: hidden;
  box-shadow: var(--v1b-shadow);
}
.v1b-process__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* FAQ */
.v1b-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.v1b-faq {
  background: var(--v1b-white);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius-sm);
  padding: 1rem 1.15rem;
}
.v1b-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--v1b-font-heading);
}
.v1b-faq p {
  margin: 0.75rem 0 0;
  color: var(--v1b-muted);
}

/* CTA */
.v1b-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 122, 95, 0.28), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(47, 158, 148, 0.28), transparent 40%),
    var(--v1b-ink);
}
.v1b-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.v1b-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Slogan strip */
.v1b-slogan-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #12233f 0%, #1f6f69 50%, #e07a5f 100%);
  color: #fff;
  padding: 0.8rem 0;
}
.v1b-slogan-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: v1b-marquee 34s linear infinite;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.v1b-slogan-strip__item { white-space: nowrap; }
.v1b-slogan-strip__item::after {
  content: " · ";
  margin-left: 2.5rem;
  opacity: 0.55;
}
@keyframes v1b-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .v1b-slogan-strip__track { animation: none; }
}

/* Footer */
.v1b-footer {
  background: #0d1a30;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.75rem;
}
.v1b-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.v1b-footer__brand p { margin: 0.75rem 0 0; max-width: 28ch; }
.v1b-footer h3 {
  color: #9fe1cb;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.v1b-footer ul { list-style: none; margin: 0; padding: 0; }
.v1b-footer li { margin-bottom: 0.4rem; }
.v1b-footer a { color: rgba(255, 255, 255, 0.78); }
.v1b-footer a:hover { color: #fff; }
.v1b-footer__closer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}
.v1b-footer__closer .v1b-slogan { color: #9fe1cb; }
.v1b-footer__bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

/* Woo single */
.v1b-woocommerce,
.v1b-single,
.v1b-page,
.v1b-archive,
.v1b-search,
.v1b-404 { padding: 2.5rem 0 4rem; }

.v1b-page__article { max-width: 760px; }
.v1b-page__header { margin-bottom: 1.5rem; }
.v1b-page__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0;
}
.v1b-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--v1b-ink) !important;
  margin: 0 0 1.5rem;
}
.v1b-page-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--v1b-radius);
  overflow: hidden;
  background: var(--v1b-paper);
}
.v1b-page-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.v1b-page-figure figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--v1b-muted);
}
.v1b-page-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--v1b-radius);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(224, 122, 95, 0.22), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(47, 158, 148, 0.22), transparent 45%),
    var(--v1b-ink);
  color: #fff;
  text-align: center;
}
.v1b-page-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.65rem;
}
.v1b-page-cta p { color: rgba(255, 255, 255, 0.78); }
.v1b-page-cta .v1b-slogan { color: #9fe1cb; }
.v1b-page-cta .v1b-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.v1b-shop-intro { margin-bottom: 2rem; max-width: none; }
.v1b-meta { color: var(--v1b-muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.v1b-page__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--v1b-line);
  color: var(--v1b-muted);
  font-size: 0.92rem;
}
.v1b-featured-image {
  margin: 0 0 1.5rem;
  border-radius: var(--v1b-radius);
  overflow: hidden;
}
.v1b-prose { max-width: 68ch; }
.v1b-prose h2 { font-size: 1.35rem; margin: 1.75rem 0 0.65rem; }
.v1b-prose h3 { font-size: 1.15rem; margin: 1.4rem 0 0.5rem; }
.v1b-prose p, .v1b-prose li { color: var(--v1b-muted); }
.v1b-prose ul, .v1b-prose ol { padding-left: 1.2rem; }
.v1b-prose .v1b-btn { margin: 0.35rem 0.5rem 0.35rem 0; }
.v1b-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.v1b-prose th,
.v1b-prose td {
  border-bottom: 1px solid var(--v1b-line);
  padding: 0.65rem 0.4rem;
  text-align: left;
}
.v1b-callout {
  background: var(--v1b-paper);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius-sm);
  padding: 1rem 1.15rem;
  color: var(--v1b-ink) !important;
}
.v1b-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.v1b-post-card {
  background: var(--v1b-white);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius);
  padding: 1.25rem;
  box-shadow: var(--v1b-shadow);
}
.v1b-post-card__title { font-size: 1.2rem; margin: 0.5rem 0; }
.v1b-empty-state { text-align: center; padding: 3rem 0; max-width: 40ch; margin: 0 auto; }
.v1b-btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.v1b-archive-header { text-align: center; margin-bottom: 2rem; }

@media (max-width: 700px) {
  .v1b-post-grid { grid-template-columns: 1fr; }
}
.v1b-single-product__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.v1b-single-product__media {
  background: var(--v1b-paper);
  border-radius: var(--v1b-radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.v1b-single-product__media .woocommerce-product-gallery,
.v1b-single-product__media .woocommerce-product-gallery__wrapper,
.v1b-single-product__media .woocommerce-product-gallery__image {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.v1b-single-product__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}
.v1b-single-product__summary .v1b-eyebrow,
.v1b-eyebrow {
  color: var(--v1b-accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.v1b-single-product__lead { color: var(--v1b-muted); font-size: 1.05rem; }
.v1b-single-product__trust {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--v1b-muted);
}
.v1b-single-product__details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--v1b-line);
}
.v1b-variant-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.v1b-variant-table th,
.v1b-variant-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--v1b-line);
}

/* WooCommerce loops inherit */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--v1b-white);
  border: 1px solid var(--v1b-line);
  border-radius: var(--v1b-radius);
  overflow: hidden;
  padding: 0 0 1rem !important;
  box-shadow: var(--v1b-shadow);
}
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 0 0.85rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--v1b-font-heading);
  font-size: 1.05rem !important;
  padding: 0 1rem;
}
.woocommerce ul.products li.product .price {
  padding: 0 1rem;
  color: var(--v1b-accent-deep);
  font-weight: 700;
}
.woocommerce ul.products li.product .button {
  margin: 0.85rem 1rem 0;
  background: var(--v1b-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--v1b-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.5rem !important;
}

/* Footer address + legal */
.v1b-footer__address,.v1b-footer__legal{display:block;margin:1.25rem 0;font-style:normal;font-size:.9rem;line-height:1.5}.v1b-footer__legal a{margin:0 .25rem}
