/* === FIX START: B2B-PRICE-ACCESS-20260710 === */
.b2b-price-access {
  --b2b-access-ink: #17221a;
  --b2b-access-muted: #536258;
  --b2b-access-green: #1f5f34;
  --b2b-access-green-hover: #174a29;
  --b2b-access-line: #b9cfbd;
  --b2b-access-paper: #f4f8f4;
  box-sizing: border-box;
  position: relative;
  inline-size: 100%;
  margin-block: 1.25rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--b2b-access-line);
  border-inline-start: 5px solid var(--b2b-access-green);
  border-radius: 0.35rem;
  background: var(--b2b-access-paper);
  color: var(--b2b-access-ink);
  font-family: inherit;
  text-align: start;
}

.b2b-price-access *,
.b2b-price-access *::before,
.b2b-price-access *::after {
  box-sizing: border-box;
}

.b2b-price-access .b2b-price-access__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--b2b-access-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.b2b-price-access .b2b-price-access__title {
  margin: 0;
  max-inline-size: 28ch;
  color: var(--b2b-access-ink);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.b2b-price-access .b2b-price-access__copy {
  margin: 0.65rem 0 0;
  max-inline-size: 70ch;
  color: var(--b2b-access-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.b2b-price-access .b2b-price-access__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.b2b-price-access .b2b-price-access__facts > li {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--b2b-access-line);
  background: #ffffff;
  color: var(--b2b-access-ink);
  font-size: 0.88rem;
  line-height: 1.4;
}

.b2b-price-access .b2b-price-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-block-start: 1rem;
}

.b2b-price-access .b2b-price-access__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 48px;
  padding: 0.7rem 1rem;
  border: 2px solid var(--b2b-access-green);
  border-radius: 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.b2b-price-access .b2b-price-access__action--primary,
.b2b-price-access .b2b-price-access__action--primary:visited {
  background: var(--b2b-access-green);
  color: #ffffff;
}

.b2b-price-access .b2b-price-access__action--secondary,
.b2b-price-access .b2b-price-access__action--secondary:visited {
  background: #ffffff;
  color: var(--b2b-access-green);
}

.b2b-price-access .b2b-price-access__action:hover {
  border-color: var(--b2b-access-green-hover);
  text-decoration: none;
}

.b2b-price-access .b2b-price-access__action--primary:hover {
  background: var(--b2b-access-green-hover);
  color: #ffffff;
}

.b2b-price-access .b2b-price-access__action--secondary:hover {
  color: var(--b2b-access-green-hover);
}

.b2b-price-access .b2b-price-access__action:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #ffffff;
}

.b2b-price-access--category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.b2b-price-access--category .b2b-price-access__actions {
  margin-block-start: 0;
}

body.b2b-price-access-category-active .products-page .product .prices {
  min-block-size: 1.6rem;
}

body.b2b-price-access-category-active .products-page .product .b2b-price-access__card-label {
  display: block;
  color: var(--color-primary, #1f5f34);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

body.b2b-price-access-category-active .products-page .product .p-tools > .quantity[hidden] {
  display: none !important;
}

@media (max-width: 680px) {
  .b2b-price-access {
    margin-block: 1rem;
    padding: 1rem;
  }

  .b2b-price-access--category {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2b-price-access--category .b2b-price-access__actions {
    margin-block-start: 0;
  }

  .b2b-price-access .b2b-price-access__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2b-price-access .b2b-price-access__action {
    inline-size: 100%;
  }
}

@media (forced-colors: active) {
  .b2b-price-access {
    border-color: CanvasText;
  }

  .b2b-price-access .b2b-price-access__action {
    border-color: LinkText;
  }

  .b2b-price-access .b2b-price-access__action:focus-visible {
    outline-color: Highlight;
    box-shadow: none;
  }
}
/* === FIX END: B2B-PRICE-ACCESS-20260710 === */
