:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-2: #eef4f8;
  --line: #d6e2ea;
  --line-strong: #c5d4df;

  --text: #0f2433;
  --text-muted: #4e6475;

  --brand: #0f6f8b;
  --brand-2: #0c5468;
  --brand-soft: #e4f3f8;

  --accent: #178f78;
  --accent-2: #0f6f5d;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(8, 36, 52, 0.08);
  --shadow: 0 14px 34px rgba(8, 36, 52, 0.12);

  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px;
  line-height: 1.18;
}

p {
  margin: 0 0 12px;
}

ul {
  margin: 0;
  padding-left: 18px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.bc-section {
  padding: 84px 0;
}

.bc-section--light {
  background: #f9fcfe;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bc-eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 14px;
}

.bc-muted,
.muted {
  color: var(--text-muted);
}

.page-content p,
.page-content li,
.page-content span {
  font-size: 16px;
}

.bc-page-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.btn,
button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  border: 1px solid transparent;
  border-radius: 999px;
  height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

.btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  background: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 0 0 rgba(23, 143, 120, 0);
}

.btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover {
  background: var(--brand-2) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.bc-hero .btn-primary {
  box-shadow: 0 0 22px rgba(24, 143, 120, 0.35);
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.fg-badge,
.pill,
.badge-pill,
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px 10px;
  font-weight: 700;
}

.bc-input,
input,
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 11px 13px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.bc-input:focus,
input:focus,
select:focus,
textarea:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 111, 139, 0.12);
}

.site-alert {
  background: linear-gradient(90deg, #0d2f44, #115f78);
  color: #ecf8ff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-alert .container {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.utility-bar {
  background: #f2f7fa;
  border-bottom: 1px solid var(--line);
}

.utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  color: #274456;
}

.utility-bar__inner a:hover {
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 396px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.12) saturate(1.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-column: 2;
  justify-self: center;
  transition: transform 0.18s ease;
}

.logo:hover {
  transform: translateY(-1px) scale(1.01);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  grid-column: 1;
  justify-self: start;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #1d3a4a;
  margin: 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
  grid-column: 3;
  justify-self: end;
}

.primary-nav ul,
.primary-nav .menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.primary-nav li {
  margin: 0;
}

.primary-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #112b3d;
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid transparent;
}

.primary-nav a:hover {
  color: #0d4f68;
  background: #f7fbfe;
  border-color: #d5e3ed;
  box-shadow: 0 8px 18px rgba(12, 42, 62, 0.08);
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: #0f5f7a;
  background: #f2f9fd;
  border-color: #cfe2ee;
}

.primary-nav a::after {
  content: none;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0f6f8b, #17a296);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-pill {
  border-radius: 15px;
  border: 1px solid #b9cfdd;
  padding: 0 18px;
  height: 48px;
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(11, 42, 64, 0.1);
}

.nav-pill-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;
}

.nav-pill::after,
.nav-pill-cart::after {
  display: none !important;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 13px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.bc-hero {
  background: linear-gradient(130deg, #0f1db7, #11088d);
  color: #ffffff;
  padding: 70px 0 20px;
}

.bc-hero--catalog .container {
  max-width: 1320px;
}

.bc-hero--video {
  position: relative;
  min-height: clamp(620px, 86vh, 940px);
  padding: 0;
  overflow: hidden;
  background: #070f1b;
}

.bc-hero--image {
  min-height: 0;
}

.bc-hero--video.bc-hero--image {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.bc-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.bc-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #e8edf4;
}

.bc-hero-image picture,
.bc-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.bc-hero-image img {
  object-fit: cover;
  object-position: center center;
}

.bc-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(4, 12, 22, 0.76), rgba(8, 16, 28, 0.48) 46%, rgba(8, 16, 28, 0.3) 70%, rgba(8, 16, 28, 0.5)),
    radial-gradient(circle at 10% 22%, rgba(26, 118, 162, 0.35), transparent 42%);
}

.bc-hero--image .bc-hero-video__overlay {
  background:
    linear-gradient(100deg, rgba(6, 16, 34, 0.24) 0%, rgba(7, 17, 36, 0.12) 34%, rgba(7, 17, 36, 0.06) 62%, rgba(7, 17, 36, 0.22) 100%),
    radial-gradient(circle at 18% 34%, rgba(26, 118, 162, 0.16), transparent 48%);
}

.bc-hero--video .container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.bc-hero--image .container {
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100%;
  height: 100%;
  padding-top: 32px;
  padding-bottom: 26px;
}

.bc-hero-content--cinematic {
  max-width: 780px;
}

.bc-hero--image .bc-hero-content--cinematic {
  max-width: 392px;
  margin-left: clamp(0px, 1.2vw, 18px);
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(14, 49, 78, 0.15);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 36px rgba(11, 31, 47, 0.2);
}

.bc-hero--image .bc-hero-content--cinematic .bc-eyebrow {
  color: #0f5772;
}

.bc-hero--image .bc-hero-content--cinematic h1 {
  color: #102a3b;
}

.bc-hero--image .bc-hero-content--cinematic p {
  color: #27495f;
}

.bc-hero-content--cinematic .bc-eyebrow {
  color: #9ec8d8;
}

.bc-hero-content--cinematic h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.bc-hero-content--cinematic p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(231, 244, 255, 0.95);
  max-width: 620px;
}

.bc-hero-content--cinematic .bc-hero__actions {
  margin-top: 24px;
}

.bc-hero--image .bc-hero__actions .btn {
  min-width: 126px;
  height: 38px;
  font-size: 12.5px;
  padding: 0 12px;
}

.bc-hero .btn-primary:hover,
.bc-hero .btn-secondary:hover,
.bc-products .bc-section__actions .btn:hover {
  transform: none;
}

.bc-stats {
  background: linear-gradient(180deg, #f8fbfe, #f2f8fc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.bc-stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.bc-stat-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  color: #0f3448;
  letter-spacing: -0.02em;
}

.bc-stat-card span {
  display: block;
  margin-top: 4px;
  color: #4c6678;
  font-weight: 600;
}

.bc-tools {
  background: #fff;
}

.bc-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bc-tools-grid .bc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-tools-grid .btn {
  margin-top: auto;
  align-self: flex-start;
}

.bc-research {
  background: #fff;
}

.bc-cards-3--iconic .bc-card {
  padding: 26px;
}

.bc-card--feature {
  position: relative;
  overflow: hidden;
}

.bc-card--feature::after {
  content: "";
  position: absolute;
  inset: auto -20% -65% -20%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(14, 111, 139, 0.18), transparent 68%);
  pointer-events: none;
}

.bc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #c6dae7;
  background: linear-gradient(160deg, #f3f9fd, #e7f3fa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 12px;
}

.bc-media {
  background: linear-gradient(180deg, #f8fbfe 0%, #edf5fb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bc-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bc-media-slot {
  --slot-fit: cover;
  --slot-position: center center;
  --slot-scale: 1.08;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid #c7d8e4;
  border-radius: 14px;
  background: #dfe8f1;
  display: grid;
  align-items: end;
  padding: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.bc-media-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--slot-fit);
  object-position: var(--slot-position);
  filter: none;
  transition: none;
  transform: scale(var(--slot-scale));
}

.bc-media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 36, 0.04) 0%, rgba(8, 25, 36, 0.42) 100%);
}

.bc-media-slot:hover img {
  transform: scale(var(--slot-scale));
}

.bc-media-slot span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.bc-media-slot--lab {
  --slot-fit: cover;
  --slot-position: center center;
  --slot-scale: 1.08;
}

.bc-media-slot--vial {
  --slot-fit: cover;
  --slot-position: center center;
  --slot-scale: 1.1;
  background: linear-gradient(180deg, #edf4f9, #dde8f0);
}

.bc-media-slot--vial::before {
  background: linear-gradient(180deg, rgba(8, 25, 36, 0.01) 0%, rgba(8, 25, 36, 0.24) 100%);
}

.bc-media-slot--packaging {
  --slot-fit: cover;
  --slot-position: center center;
  --slot-scale: 1.08;
}

.bc-media-slot--sterile {
  --slot-fit: cover;
  --slot-position: center center;
  --slot-scale: 1.08;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.bc-hero--fullbg {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #0e069b;
}

.bc-hero-bg {
  position: relative;
  z-index: 1;
}

.bc-hero-bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.bc-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 7, 40, 0.22) 0%, rgba(7, 7, 40, 0.08) 30%, rgba(7, 7, 40, 0) 58%),
    linear-gradient(0deg, rgba(4, 4, 38, 0.14) 0%, rgba(4, 4, 38, 0) 50%);
  pointer-events: none;
}

.bc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.bc-hero-overlay .container {
  width: 100%;
  padding-bottom: 34px;
}

.bc-hero-content--floating {
  pointer-events: auto;
  max-width: 520px;
  width: 100%;
}

.bc-hero--fullbg .bc-hero__actions {
  margin-top: 0;
}

.bc-hero-canvas {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(10, 13, 78, 0.32);
}

.bc-hero-canvas__left {
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(700px 280px at 10% 12%, rgba(255, 255, 255, 0.08), transparent 56%),
    radial-gradient(440px 300px at 34% 36%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(180deg, #1803a5, #0d047f);
}

.bc-hero-strap {
  margin: 0;
  max-width: 520px;
  font-size: clamp(42px, 5.3vw, 74px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.bc-hero-quote {
  margin: 10px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 28px;
}

.bc-hero h1 {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.bc-hero p {
  color: rgba(236, 243, 255, 0.9);
  font-size: 18px;
  max-width: 720px;
}

.bc-hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bc-hero-canvas__right {
  position: relative;
  background: linear-gradient(180deg, #1b0ea8 0%, #15078f 46%, #0c0475 100%);
  overflow: hidden;
}

.bc-hero-reference {
  position: absolute;
  inset: 0;
}

.bc-hero-reference img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-hero-wave {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 180px at 84% 10%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(320px 140px at 66% 24%, rgba(255, 255, 255, 0.1), transparent 62%),
    radial-gradient(420px 220px at 12% 86%, rgba(67, 163, 255, 0.14), transparent 66%);
}

.bc-bottle-band {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 16px);
  padding: 0 24px;
}

.bc-bottle-band img {
  width: clamp(150px, 16vw, 250px);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.2));
  transform-origin: center bottom;
  transform: scale(1.72);
}

.bc-bottle-band img:nth-child(1),
.bc-bottle-band img:nth-child(5) {
  transform: scale(1.62) translateY(20px);
}

.bc-bottle-band img:nth-child(2),
.bc-bottle-band img:nth-child(4) {
  transform: scale(1.76) translateY(8px);
}

.bc-bottle-band img:nth-child(3) {
  transform: scale(1.86) translateY(-2px);
}

.bc-section__head {
  margin-bottom: 28px;
}

.bc-section__head h2,
.bc-page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
}

.bc-section__head p,
.bc-page-hero p {
  color: var(--text-muted);
  max-width: 760px;
}

.bc-how {
  background: #fff;
}

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

.bc-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.bc-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.bc-step h3 {
  font-size: 20px;
}

.bc-step p {
  color: var(--text-muted);
  margin: 0;
}

.bc-why {
  background: linear-gradient(180deg, #f7fbfe 0%, #eef5fa 100%);
}

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

.bc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.bc-card h3 {
  margin-bottom: 10px;
}

.bc-card p {
  color: var(--text-muted);
  margin: 0;
}

.bc-products {
  background: #fff;
}

.bc-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-product-card,
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  align-items: flex-start;
}

.bc-product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.bc-product-card__thumb,
.product-thumb {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  position: relative;
}

.bc-card-logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 58px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 47, 67, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(9, 37, 57, 0.12);
}

.bc-card-logo img {
  width: 48px;
  height: auto;
  opacity: 0.92;
}

.bc-product-fallback-logo {
  object-fit: contain !important;
  padding: 18% 20%;
  background: linear-gradient(160deg, #f4f9fd, #ecf4fa);
}

.bc-product-card__thumb img,
.product-thumb img,
.woocommerce ul.products li.product a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  transition: transform 0.35s ease;
}

.bc-product-card:hover .bc-product-card__thumb img,
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04);
}

.bc-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
}

.bc-product-badge--coa {
  left: auto;
  right: 10px;
  background: #0f766e;
}

.bc-product-card h3 {
  font-size: 20px;
  margin: 0;
}

.bc-product-card p,
.product-card__excerpt {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.45;
}

.bc-product-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  color: #4f697b;
  font-size: 13px;
}

.bc-product-meta li {
  position: relative;
  padding-left: 14px;
}

.bc-product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1b8296;
}

.bc-product-card__bottom,
.product-card__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-product-card__actions {
  width: 100%;
  justify-content: flex-end;
}

.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #0f2f43;
  font-weight: 800;
  font-size: 18px;
}

.bc-section__actions {
  margin-top: 24px;
}

.bc-products .bc-section__actions {
  display: flex;
  justify-content: center;
}

.bc-products .bc-section__actions .btn {
  min-width: 210px;
  height: 46px;
}

.bc-home-spiral {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bc-home-spiral-wrap {
  position: relative;
  padding: 0 64px;
}

.bc-home-spiral-wrap::before,
.bc-home-spiral-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 14px;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.bc-home-spiral-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 24%, rgba(255, 255, 255, 0));
}

.bc-home-spiral-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 24%, rgba(255, 255, 255, 0));
}

.bc-home-spiral__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(10, 23, 64, 0.84);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(8, 14, 46, 0.38);
}

.bc-home-spiral__nav:hover {
  background: rgba(10, 23, 64, 0.98);
}

.bc-home-spiral__nav:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.96);
}

.bc-home-spiral__nav--prev {
  left: 10px;
}

.bc-home-spiral__nav--next {
  right: 10px;
}

.bc-home-spiral .bc-product-card {
  flex: 0 0 min(320px, 84vw);
  scroll-snap-align: start;
}

.bc-product-card--spiral.is-offset {
  margin-top: 26px;
}

.bc-cta {
  background: linear-gradient(130deg, #e9f4fa, #f4f9fd);
  border-top: 1px solid var(--line);
}

.bc-cta__inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bc-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-page-hero {
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, #f0f7fc, #fff);
}

.bc-page-hero .container {
  position: relative;
}

.bc-page-hero .container::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 156px;
  height: 58px;
  background: rgba(255, 255, 255, 0.75) url("../images/logo-clean.jpg") center / 84% no-repeat;
  border: 1px solid rgba(18, 52, 74, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10, 34, 52, 0.12);
  opacity: 1;
  pointer-events: none;
}

.bc-page-hero--shop,
.bc-page-hero--coas,
.bc-page-hero--calculator,
.bc-page-hero--reconstitute,
.bc-page-hero--faq,
.bc-page-hero--contact,
.bc-page-hero--product {
  position: relative;
  overflow: hidden;
}

.bc-page-hero--shop::after,
.bc-page-hero--coas::after,
.bc-page-hero--calculator::after,
.bc-page-hero--reconstitute::after,
.bc-page-hero--faq::after,
.bc-page-hero--contact::after,
.bc-page-hero--product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(15, 111, 139, 0.12), transparent 45%);
  pointer-events: none;
}

.bc-shop-filterbar {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.bc-shop-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3px 0 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.bc-shop-chips::-webkit-scrollbar {
  display: none;
}

.bc-shop-chips-wrap {
  position: relative;
  padding: 0 54px;
}

.bc-shop-chips-wrap::before,
.bc-shop-chips-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 52px;
  pointer-events: none;
  z-index: 2;
}

.bc-shop-chips-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f4f9fc 32%, rgba(244, 249, 252, 0));
}

.bc-shop-chips-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f4f9fc 32%, rgba(244, 249, 252, 0));
}

.bc-shop-chips__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(17, 44, 69, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #103149;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 42, 64, 0.14);
  transition: all 0.18s ease;
}

.bc-shop-chips__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.03);
}

.bc-shop-chips__nav:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.bc-shop-chips__nav--prev {
  left: 8px;
}

.bc-shop-chips__nav--next {
  right: 8px;
}

.bc-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1c3d4f;
  font-weight: 700;
  font-size: 13px;
  padding: 0 14px;
  white-space: nowrap;
}

.bc-chip.is-active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

.bc-shop-search {
  display: flex;
  gap: 8px;
  width: 100%;
}

.bc-shop-categories {
  min-width: 0;
}

.bc-cat-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  box-shadow: var(--shadow-sm);
}

.bc-cat-select span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a7488;
  font-weight: 700;
  white-space: nowrap;
}

.bc-cat-select select {
  margin-left: 0;
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #15374b;
  padding: 0 24px 0 0;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #33556a 50%), linear-gradient(135deg, #33556a 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% - 3px), calc(100% - 6px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.bc-cat-select select:focus {
  outline: none;
}

.bc-shop-toolbar {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce .woocommerce-ordering select {
  min-width: 210px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul {
  margin: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

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

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a3a4e;
  font-weight: 700;
  transition: all 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li a.page-numbers:hover {
  border-color: var(--line);
  background: #f7fbfe;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(12, 84, 104, 0.24);
}

.woocommerce nav.woocommerce-pagination ul li .prev,
.woocommerce nav.woocommerce-pagination ul li .next {
  background: #f4f9fc;
  border-color: var(--line);
  font-size: 13px;
}

.bc-product-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.bc-product-single-media,
.bc-product-single-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.bc-product-highlights {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.bc-product-highlights > div {
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.bc-product-highlights h4 {
  margin-bottom: 6px;
}

.bc-coa-search-wrap {
  max-width: 760px;
}

.bc-coa-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.bc-coa-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.bc-coa-item h3 {
  margin: 0 0 10px;
}

.bc-coa-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-coa-item__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bc-coa-viewer-wrap {
  display: grid;
  gap: 14px;
}

.bc-coa-viewer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 70vh;
  min-height: 520px;
}

.bc-calc-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.bc-calc-card h3 {
  margin-bottom: 10px;
}

.bc-calc-stack {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bc-calc-card--small {
  max-width: none;
}

.bc-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.bc-calc-grid--two {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 14px;
}

.bc-calc-grid label,
.bc-contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: #274556;
  display: grid;
  gap: 8px;
}

.bc-preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.bc-preset-grid p {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #527085;
  font-weight: 700;
}

.bc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #214357;
  cursor: pointer;
}

.bc-pill:hover {
  border-color: #aac4d3;
  background: #f8fcff;
}

.bc-calc-results {
  border: 1px solid var(--line);
  background: #f8fcff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  display: grid;
  gap: 8px;
}

.bc-result-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.bc-result-row strong {
  font-size: 19px;
  color: #102f42;
}

.bc-calc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.bc-recon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.bc-recon-video {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bc-recon-video video {
  width: 100%;
}

.bc-recon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.bc-recon-card ul {
  margin: 12px 0 18px;
}

.bc-recon-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-steps--recon .bc-step {
  min-height: 180px;
}

.bc-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.bc-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.bc-faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #153449;
  cursor: pointer;
}

.bc-faq-panel {
  display: none;
  padding: 0 16px 16px;
  color: var(--text-muted);
}

.bc-faq-item.is-open .bc-faq-panel {
  display: block;
}

.bc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.bc-contact-panel,
.bc-contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.bc-contact-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.bc-contact-form {
  display: grid;
  gap: 12px;
}

.bc-form-success {
  color: #0f766e;
  font-weight: 700;
}

.bc-form-error {
  color: #b42318;
  font-weight: 700;
}

.site-footer {
  margin-top: 30px;
  background: #0f2230;
  color: #cfe2ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  padding: 44px 22px;
}

.footer-logo {
  width: 176px;
  margin-bottom: 12px;
}

.footer-note,
.footer-contact {
  color: #97b4c7;
  font-size: 13px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #bfd5e2;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(192, 218, 235, 0.2);
  padding: 14px 0;
  color: #9eb6c8;
  font-size: 13px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 32, 0.55);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 96vw);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  box-shadow: -8px 0 30px rgba(6, 24, 35, 0.2);
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__close {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  height: 36px;
  padding: 0 12px;
  font-weight: 700;
}

.cart-drawer__content {
  overflow-y: auto;
  max-height: 55vh;
}

.cart-drawer__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.cart-open,
body.quick-open,
body.age-locked,
body.nav-open {
  overflow: hidden;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.quick-view.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quick-view__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 32, 0.55);
}

.quick-view__panel {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(860px, 94vw);
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px;
}

.quick-view__close {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  height: 36px;
  padding: 0 12px;
  font-weight: 700;
}

.quick-view__body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.quick-view__media {
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 280px;
  overflow: hidden;
}

.quick-view__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-view__content {
  display: flex;
  flex-direction: column;
}

.quick-view__eyebrow {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
}

.quick-view__title {
  margin-bottom: 8px;
}

.quick-view__price {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.quick-view__excerpt {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quick-view__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 19, 31, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.is-visible {
  display: flex;
}

.age-gate__card {
  width: min(520px, 95vw);
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.age-gate__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a6679;
  font-size: 11px;
  font-weight: 700;
}

.age-gate__check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
}

.age-gate__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.age-gate.shake {
  animation: ageShake 0.3s linear;
}

@keyframes ageShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  padding: 0 0 10px;
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  list-style: none !important;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  background: #f8fbfe;
  color: #17384b;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-color: transparent;
  background: var(--brand);
  color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  margin: 0;
}

.woocommerce-Reviews {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.woocommerce-Reviews .woocommerce-Reviews-title,
.woocommerce-Reviews #reply-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.woocommerce #reviews #comments ol.commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.woocommerce #reviews #comments ol.commentlist li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfe;
  padding: 14px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

.woocommerce #reviews #comments p.woocommerce-noreviews {
  border: 1px dashed var(--line);
  background: #f8fbfe;
  border-radius: 12px;
  padding: 12px 14px;
}

.woocommerce #reviews #comment {
  min-height: 140px;
}

.woocommerce #review_form #respond p.comment-form-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.woocommerce #review_form #respond p.stars {
  display: flex;
  gap: 8px;
  margin: 0;
}

.woocommerce #review_form #respond p.stars a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  background: #fff;
  color: transparent !important;
  text-decoration: none !important;
  font-size: 0;
  position: relative;
  overflow: hidden;
}

.woocommerce #review_form #respond p.stars a::before {
  content: "★";
  color: #2b4d63;
  font-size: 16px;
  line-height: 1;
}

.woocommerce #review_form #respond p.stars a:hover,
.woocommerce #review_form #respond p.stars a.active {
  background: #e8f5ff;
  border-color: #aec9da;
}

.woocommerce #review_form #respond p.stars.selected a.active::before,
.woocommerce #review_form #respond p.stars:hover a::before {
  color: #0f7a98;
}

.woocommerce #review_form #respond p.comment-form-comment label,
.woocommerce #review_form #respond p.comment-form-rating label {
  font-weight: 700;
  color: #24485e;
}

.woocommerce #review_form #respond .form-submit input.submit {
  min-width: 220px;
  border-radius: 999px !important;
}

.fg-coa-list {
  display: grid;
  gap: 12px;
}

.fg-coa-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.fg-coa-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 16px;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f9fcff;
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: 20px;
}

.woocommerce-account table.shop_table,
.woocommerce table.shop_table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 12px;
}

.woocommerce-cart table.cart img {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f7fbfd;
}

@media (max-width: 1080px) {
  .primary-nav ul,
  .primary-nav .menu {
    gap: 10px;
  }

  .bc-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .bc-hero-image {
    background-color: #e8edf4;
  }

  .bc-hero-image img {
    object-fit: cover;
    object-position: center center;
  }

  .bc-hero--video.bc-hero--image {
    aspect-ratio: 4 / 5;
  }

  .bc-hero--image .container {
    justify-content: center;
    align-items: flex-end;
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .bc-hero--image .bc-hero-content--cinematic {
    max-width: 500px;
    padding: 22px 22px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    right: 12px;
    top: 100px;
    width: min(380px, calc(100% - 24px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul,
  .primary-nav .menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }

  .primary-nav li a,
  .primary-nav > a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .nav-pill {
    text-align: center;
  }

  .bc-hero-canvas,
  .bc-recon-grid,
  .bc-contact-grid,
  .bc-product-single-grid,
  .quick-view__body,
  .bc-shop-filterbar {
    grid-template-columns: 1fr;
  }

  .logo {
    order: 1;
    transform: none !important;
  }

  .logo img {
    width: 270px;
    height: auto;
    max-height: 56px;
  }

  .primary-nav {
    order: 2;
  }

  .bc-hero-canvas {
    min-height: 0;
  }

  .bc-hero--fullbg {
    padding: 0;
  }

  .bc-hero-overlay {
    align-items: flex-end;
  }

  .bc-hero-overlay .container {
    padding-bottom: 18px;
  }

  .bc-hero-canvas__left {
    min-height: 360px;
  }

  .bc-hero-canvas__right {
    min-height: 320px;
  }

  .bc-cards-3,
  .bc-steps,
  .bc-tools-grid,
  .bc-preset-grid,
  .bc-calc-grid,
  .bc-calc-grid--two,
  .bc-calc-stack {
    grid-template-columns: 1fr;
  }

  .bc-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-stats-grid {
    grid-template-columns: 1fr;
  }

  .bc-home-spiral-wrap {
    padding: 0 10px;
  }

  .bc-shop-chips-wrap {
    padding: 0 44px;
  }

  .bc-shop-chips-wrap::before,
  .bc-shop-chips-wrap::after {
    width: 40px;
  }

  .bc-shop-chips__nav {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .bc-home-spiral-wrap::before,
  .bc-home-spiral-wrap::after {
    width: 28px;
  }

  .bc-home-spiral__nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .bc-page-hero .container::before {
    width: 128px;
    height: 46px;
    top: 8px;
    right: 8px;
  }

  .bc-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-shop-categories {
    min-width: 100%;
  }

  .bc-cat-select select {
    min-width: 0;
    font-size: 13px;
  }

  .bc-coa-item {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .bc-section,
  .bc-page-hero,
  .bc-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bc-hero--video {
    min-height: 620px;
    padding: 0;
  }

  .bc-hero-content--cinematic h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .bc-hero-image {
    background-color: #e8edf4;
  }

  .bc-hero-image img {
    object-fit: cover;
    object-position: center center;
  }

  .bc-hero--image .container {
    justify-content: center;
    align-items: flex-end;
    padding-top: 42px;
    padding-bottom: 14px;
  }

  .bc-hero--image .bc-hero-content--cinematic {
    max-width: 100%;
    margin-left: 0;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
  }

  .bc-hero--fullbg {
    padding: 0;
  }

  .site-alert .container {
    gap: 6px;
    letter-spacing: 0.08em;
    font-size: 11px;
  }

  .header-inner {
    min-height: 78px;
  }

  .logo img {
    width: 225px;
    height: auto;
    max-height: 46px;
  }

  .bc-hero-strap {
    font-size: clamp(34px, 9vw, 50px);
  }

  .bc-hero-overlay .container {
    padding-bottom: 12px;
  }

  .bc-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .bc-shop-chips-wrap {
    padding: 0 10px;
  }

  .bc-shop-chips-wrap::before,
  .bc-shop-chips-wrap::after,
  .bc-shop-chips__nav {
    display: none;
  }

  .bc-page-hero .container::before {
    width: 108px;
    height: 38px;
    right: 4px;
    top: 2px;
  }

  .bc-bottle-band img {
    width: clamp(90px, 21vw, 120px);
    transform: scale(1.28) !important;
  }

  .bc-product-card--spiral.is-offset {
    margin-top: 0;
  }

  .bc-product-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .bc-media-grid {
    grid-template-columns: 1fr;
  }

  .bc-shop-categories {
    min-width: 100%;
  }

  .bc-cat-select {
    width: 100%;
    padding: 0 12px;
  }

  .bc-cat-select select {
    min-width: 0;
    width: 68%;
  }

  .bc-cta__inner {
    padding: 20px;
  }

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

  .cart-drawer__panel {
    width: 100%;
  }

  .quick-view__panel {
    width: calc(100vw - 20px);
  }
}
