/*
Theme Name: Bulk Cream Chargers Child
Theme URI: https://bulkcreamchargers.co.uk
Description: Child theme for Bulk Cream Chargers — UK wholesale food-grade NOS platform. Steel/navy palette, B2B wholesale focused.
Author: Bulk Cream Chargers
Author URI: https://bulkcreamchargers.co.uk
Template: blocksy
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.0
License: Private
Text Domain: bcc-child
*/

/* =========================================================
   CSS CUSTOM PROPERTIES — BCC STEEL/BLUE PALETTE
   ========================================================= */
:root {
  --bcc-ink: #0F1E2E;
  --bcc-navy: #192B3E;
  --bcc-navy-mid: #1E3A52;
  --bcc-steel: #2C5282;
  --bcc-slate: #3A4A5C;
  --bcc-silver: #6B7C8D;
  --bcc-mist: #C8D4DF;
  --bcc-ice: #EFF3F8;
  --bcc-paper: #F5F7FA;
  --bcc-white: #FFFFFF;
  --bcc-amber: #C8922A;
  --bcc-amber-hover: #E8B84B;
  --bcc-success: #2D7A4A;
  --bcc-warning: #C28A2C;
  --bcc-danger: #A03A2C;
  /* Brand cyan — used ONLY by the brand mark + footer accents.
     Never use for CTAs (amber is the action colour). 2026-06-02 v5 logo. */
  --bcc-cyan: #4ED7EC;
  --bcc-cyan-deep: #2BB8CE;

  /* Typography */
  --bcc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bcc-font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --bcc-space-xs: 8px;
  --bcc-space-sm: 16px;
  --bcc-space-md: 24px;
  --bcc-space-lg: 40px;
  --bcc-space-xl: 64px;
  --bcc-space-2xl: 96px;

  /* Border radius */
  --bcc-radius-sm: 4px;
  --bcc-radius-md: 8px;
  --bcc-radius-lg: 12px;
  --bcc-radius-xl: 20px;

  /* Shadows */
  --bcc-shadow-sm: 0 1px 3px rgba(15, 30, 46, 0.08), 0 1px 2px rgba(15, 30, 46, 0.06);
  --bcc-shadow-md: 0 4px 12px rgba(15, 30, 46, 0.10), 0 2px 6px rgba(15, 30, 46, 0.08);
  --bcc-shadow-lg: 0 10px 30px rgba(15, 30, 46, 0.14), 0 4px 12px rgba(15, 30, 46, 0.10);

  /* Blocksy palette overrides */
  --theme-palette-color-1: #192B3E;
  --theme-palette-color-2: #1E3A52;
  --theme-palette-color-3: #2C5282;
  --theme-palette-color-4: #3A4A5C;
  --theme-palette-color-5: #6B7C8D;
  --theme-palette-color-6: #C8D4DF;
  --theme-palette-color-7: #F5F7FA;
  --theme-palette-color-8: #0F1E2E;
}

/* =========================================================
   GOOGLE FONTS IMPORT
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700;800&display=swap');

/* =========================================================
   BASE TYPOGRAPHY
   ========================================================= */
body {
  font-family: var(--bcc-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bcc-ink);
  background-color: var(--bcc-paper);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bcc-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bcc-navy);
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 28px); }
h4 { font-size: clamp(16px, 2vw, 22px); }

p {
  margin-bottom: 1.2em;
  color: var(--bcc-ink);
}

a {
  color: var(--bcc-steel);
  text-decoration: none;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

a:hover {
  color: var(--bcc-cyan-deep);
  border-bottom: 1px solid var(--bcc-cyan);
}

/* Brand-mark accent threads — used by focus-visible, footer rule,
   and small inline accents. Amber stays the CTA action colour. */
:focus-visible {
  outline: 2px solid var(--bcc-cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

.bcc-footer-block {
  border-top: 3px solid var(--bcc-cyan);
}

/* Subtle cyan rule under H1 hero on /wholesale/ pages */
.page-template-page-wholesale-hub .entry-header h1::after,
.page-template-page-wholesale-hub .entry-header h2.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--bcc-cyan);
  margin: 0.75rem 0 0;
  border-radius: 2px;
}

strong { font-weight: 600; }

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.4em;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.bcc-btn-primary,
.bcc-btn-primary:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bcc-amber);
  color: var(--bcc-ink) !important;
  font-family: var(--bcc-font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--bcc-radius-md);
  border: 2px solid var(--bcc-amber);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(200, 146, 42, 0.3);
  letter-spacing: 0.01em;
}

.bcc-btn-primary:hover {
  background-color: var(--bcc-amber-hover);
  border-color: var(--bcc-amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.4);
  color: var(--bcc-ink) !important;
}

.bcc-btn-secondary,
.bcc-btn-secondary:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--bcc-ice) !important;
  font-family: var(--bcc-font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--bcc-radius-md);
  border: 2px solid var(--bcc-mist);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.bcc-btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--bcc-ice);
  color: var(--bcc-ice) !important;
}

.bcc-btn-outline,
.bcc-btn-outline:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--bcc-steel) !important;
  font-family: var(--bcc-font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--bcc-radius-md);
  border: 2px solid var(--bcc-steel);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bcc-btn-outline:hover {
  background-color: var(--bcc-steel);
  color: var(--bcc-white) !important;
}

/* =========================================================
   CARDS
   ========================================================= */
.bcc-card {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border: 1px solid var(--bcc-mist);
  padding: var(--bcc-space-md);
  box-shadow: var(--bcc-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.bcc-card:hover {
  box-shadow: var(--bcc-shadow-md);
  transform: translateY(-2px);
  border-color: var(--bcc-steel);
}

.bcc-card-dark {
  background: var(--bcc-navy-mid);
  border-radius: var(--bcc-radius-lg);
  border: 1px solid rgba(200, 212, 223, 0.15);
  padding: var(--bcc-space-md);
  color: var(--bcc-ice);
}

.bcc-card-dark h3,
.bcc-card-dark h4 {
  color: var(--bcc-ice);
}

.bcc-card-dark p {
  color: rgba(239, 243, 248, 0.8);
}

.bcc-card-highlight {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border: 2px solid var(--bcc-amber);
  padding: var(--bcc-space-md);
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.2);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.bcc-hero {
  background: linear-gradient(135deg, var(--bcc-navy) 0%, var(--bcc-navy-mid) 50%, #163248 100%);
  padding: var(--bcc-space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.bcc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(44, 82, 130, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.bcc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--bcc-space-lg);
  position: relative;
  z-index: 1;
}

.bcc-hero__label {
  display: inline-block;
  background: rgba(200, 146, 42, 0.15);
  border: 1px solid rgba(200, 146, 42, 0.4);
  color: var(--bcc-amber);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--bcc-space-sm);
}

.bcc-hero h1 {
  color: var(--bcc-white);
  font-family: var(--bcc-font-heading);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--bcc-space-sm);
  max-width: 700px;
}

.bcc-hero__subtitle {
  color: rgba(239, 243, 248, 0.85);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  margin-bottom: var(--bcc-space-lg);
  max-width: 600px;
}

.bcc-hero__actions {
  display: flex;
  gap: var(--bcc-space-sm);
  flex-wrap: wrap;
  align-items: center;
}

/* =========================================================
   SECTION WRAPPERS
   ========================================================= */
.bcc-section {
  padding: var(--bcc-space-xl) 0;
}

.bcc-section--dark {
  background-color: var(--bcc-navy);
  padding: var(--bcc-space-xl) 0;
}

.bcc-section--ice {
  background-color: var(--bcc-ice);
  padding: var(--bcc-space-xl) 0;
}

.bcc-section--paper {
  background-color: var(--bcc-paper);
  padding: var(--bcc-space-xl) 0;
}

.bcc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--bcc-space-lg);
}

.bcc-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--bcc-space-lg);
}

.bcc-section__header {
  text-align: center;
  margin-bottom: var(--bcc-space-lg);
}

.bcc-section__header h2 {
  margin-bottom: 12px;
}

.bcc-section__header p {
  font-size: 18px;
  color: var(--bcc-silver);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   GRID LAYOUTS
   ========================================================= */
.bcc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bcc-space-md);
}

.bcc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bcc-space-md);
}

.bcc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bcc-space-md);
}

@media (max-width: 1024px) {
  .bcc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bcc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bcc-grid-2,
  .bcc-grid-3,
  .bcc-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BUYER SEGMENT CARDS
   ========================================================= */
.bcc-buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bcc-space-md);
}

.bcc-buyer-card {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border: 1px solid var(--bcc-mist);
  padding: var(--bcc-space-md);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bcc-buyer-card:hover {
  border-color: var(--bcc-steel);
  box-shadow: var(--bcc-shadow-md);
  transform: translateY(-2px);
}

.bcc-buyer-card__icon {
  font-size: 28px;
  line-height: 1;
}

.bcc-buyer-card__title {
  font-family: var(--bcc-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--bcc-navy);
  margin: 0;
}

.bcc-buyer-card__desc {
  font-size: 14px;
  color: var(--bcc-slate);
  margin: 0;
  line-height: 1.5;
}

.bcc-buyer-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--bcc-steel);
  margin-top: auto;
}

.bcc-buyer-card__link:hover {
  color: var(--bcc-amber);
}

@media (max-width: 768px) {
  .bcc-buyer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bcc-buyer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PROCESS TIMELINE
   ========================================================= */
.bcc-timeline {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: timeline-step;
}

.bcc-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--bcc-mist), var(--bcc-steel), var(--bcc-mist));
  z-index: 0;
}

.bcc-timeline__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.bcc-timeline__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bcc-navy);
  border: 3px solid var(--bcc-steel);
  color: var(--bcc-amber);
  font-family: var(--bcc-font-heading);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--bcc-space-sm);
  flex-shrink: 0;
}

.bcc-timeline__step-title {
  font-family: var(--bcc-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--bcc-navy);
  margin-bottom: 6px;
}

.bcc-timeline__step-desc {
  font-size: 13px;
  color: var(--bcc-silver);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .bcc-timeline {
    flex-direction: column;
    gap: var(--bcc-space-sm);
  }
  .bcc-timeline::before {
    display: none;
  }
  .bcc-timeline__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--bcc-space-sm);
  }
  .bcc-timeline__step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.bcc-trust-strip {
  background: var(--bcc-navy);
  padding: var(--bcc-space-md) 0;
  border-top: 1px solid rgba(200, 212, 223, 0.15);
  border-bottom: 1px solid rgba(200, 212, 223, 0.15);
}

.bcc-trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--bcc-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bcc-space-xl);
  flex-wrap: wrap;
}

.bcc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bcc-ice);
}

.bcc-trust-item__icon {
  font-size: 20px;
  color: var(--bcc-amber);
  flex-shrink: 0;
}

.bcc-trust-item__text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(239, 243, 248, 0.9);
  letter-spacing: 0.01em;
}

/* =========================================================
   ORDER TYPE CARDS
   ========================================================= */
.bcc-order-card {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border: 1px solid var(--bcc-mist);
  padding: var(--bcc-space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.bcc-order-card:hover {
  border-color: var(--bcc-amber);
  box-shadow: 0 6px 24px rgba(200, 146, 42, 0.15);
  transform: translateY(-2px);
}

.bcc-order-card__icon {
  font-size: 32px;
}

.bcc-order-card__title {
  font-family: var(--bcc-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--bcc-navy);
  margin: 0;
}

.bcc-order-card__desc {
  font-size: 14px;
  color: var(--bcc-slate);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.bcc-order-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bcc-amber);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.bcc-faq {
  max-width: 800px;
  margin: 0 auto;
}

.bcc-faq-item {
  border: 1px solid var(--bcc-mist);
  border-radius: var(--bcc-radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bcc-white);
}

.bcc-faq-item summary {
  padding: 18px var(--bcc-space-md);
  font-family: var(--bcc-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bcc-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.bcc-faq-item summary::-webkit-details-marker {
  display: none;
}

.bcc-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--bcc-steel);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bcc-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.bcc-faq-item summary:hover {
  background-color: var(--bcc-ice);
}

.bcc-faq-item[open] summary {
  background-color: var(--bcc-ice);
  border-bottom: 1px solid var(--bcc-mist);
}

.bcc-faq-answer {
  padding: var(--bcc-space-md);
  color: var(--bcc-slate);
  font-size: 15px;
  line-height: 1.65;
}

.bcc-faq-answer p:last-child { margin-bottom: 0; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.bcc-cta-section {
  background: linear-gradient(135deg, var(--bcc-navy) 0%, var(--bcc-navy-mid) 100%);
  padding: var(--bcc-space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bcc-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(44, 82, 130, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.bcc-cta-section h2 {
  color: var(--bcc-white);
  font-size: clamp(24px, 3.5vw, 40px);
  margin-bottom: var(--bcc-space-sm);
}

.bcc-cta-section p {
  color: rgba(239, 243, 248, 0.8);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--bcc-space-lg);
}

.bcc-cta-section__actions {
  display: flex;
  gap: var(--bcc-space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   COMPLIANCE / TRUST BADGES
   ========================================================= */
.bcc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bcc-badge--navy {
  background: rgba(25, 43, 62, 0.08);
  color: var(--bcc-navy);
  border: 1px solid rgba(25, 43, 62, 0.2);
}

.bcc-badge--steel {
  background: rgba(44, 82, 130, 0.1);
  color: var(--bcc-steel);
  border: 1px solid rgba(44, 82, 130, 0.25);
}

.bcc-badge--amber {
  background: rgba(200, 146, 42, 0.1);
  color: var(--bcc-warning);
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.bcc-badge--success {
  background: rgba(45, 122, 74, 0.1);
  color: var(--bcc-success);
  border: 1px solid rgba(45, 122, 74, 0.3);
}

/* =========================================================
   FEATURE LIST
   ========================================================= */
.bcc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--bcc-slate);
  border-bottom: 1px solid var(--bcc-mist);
}

.bcc-feature-list li:last-child {
  border-bottom: none;
}

.bcc-feature-list li::before {
  content: '✓';
  color: var(--bcc-success);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bcc-feature-list--light li {
  color: rgba(239, 243, 248, 0.85);
  border-bottom-color: rgba(200, 212, 223, 0.15);
}

.bcc-feature-list--light li::before {
  color: var(--bcc-amber);
}

/* =========================================================
   VOLUME TIER TABLE
   ========================================================= */
.bcc-tier-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--bcc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bcc-shadow-sm);
}

.bcc-tier-table th {
  background: var(--bcc-navy);
  color: var(--bcc-ice);
  padding: 14px 20px;
  font-family: var(--bcc-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bcc-tier-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--bcc-ink);
  border-bottom: 1px solid var(--bcc-mist);
}

.bcc-tier-table tr:nth-child(even) td {
  background-color: var(--bcc-ice);
}

.bcc-tier-table tr:last-child td {
  border-bottom: none;
}

.bcc-tier-table tr:hover td {
  background-color: rgba(44, 82, 130, 0.05);
}

/* =========================================================
   STAT BOX
   ========================================================= */
.bcc-stats {
  display: flex;
  gap: var(--bcc-space-md);
  flex-wrap: wrap;
}

.bcc-stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: var(--bcc-space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 212, 223, 0.15);
  border-radius: var(--bcc-radius-md);
}

.bcc-stat__value {
  font-family: var(--bcc-font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--bcc-amber);
  line-height: 1;
  margin-bottom: 6px;
}

.bcc-stat__label {
  font-size: 14px;
  color: rgba(239, 243, 248, 0.7);
  font-weight: 500;
}

/* =========================================================
   TWO-COL LAYOUT
   ========================================================= */
.bcc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bcc-space-xl);
  align-items: center;
}

.bcc-two-col--3-2 {
  grid-template-columns: 3fr 2fr;
}

.bcc-two-col--2-3 {
  grid-template-columns: 2fr 3fr;
}

@media (max-width: 768px) {
  .bcc-two-col,
  .bcc-two-col--3-2,
  .bcc-two-col--2-3 {
    grid-template-columns: 1fr;
    gap: var(--bcc-space-lg);
  }
}

/* =========================================================
   DARK SECTION TYPOGRAPHY OVERRIDES
   ========================================================= */
.bcc-section--dark h1,
.bcc-section--dark h2,
.bcc-section--dark h3,
.bcc-section--dark h4 {
  color: var(--bcc-ice);
}

.bcc-section--dark p {
  color: rgba(239, 243, 248, 0.8);
}

/* =========================================================
   NAVIGATION (DARK NAVY HEADER)
   ========================================================= */
#masthead,
.site-header,
header.site-header,
.ct-header-content,
.ct-main-header-row {
  background-color: var(--bcc-navy) !important;
  border-bottom: 1px solid rgba(200, 212, 223, 0.15) !important;
}

.ct-menu-link,
.ct-menu > li > a,
.ct-header-content a,
header a,
.site-navigation a {
  color: var(--bcc-ice) !important;
  font-weight: 500;
}

.ct-menu-link:hover,
.ct-menu > li > a:hover {
  color: var(--bcc-amber) !important;
}

.ct-site-logo img,
.site-logo img,
.custom-logo {
  max-height: 70px !important;
  width: auto;
}

/* Mobile hamburger */
.ct-toggle-mobile-menu-btn span {
  background-color: var(--bcc-ice) !important;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.bcc-breadcrumb {
  font-size: 13px;
  color: rgba(239, 243, 248, 0.6);
  margin-bottom: var(--bcc-space-sm);
}

.bcc-breadcrumb a {
  color: rgba(239, 243, 248, 0.6);
}

.bcc-breadcrumb a:hover {
  color: var(--bcc-amber);
}

.bcc-breadcrumb span {
  margin: 0 6px;
}

/* =========================================================
   PAGE INTRO BLOCK
   ========================================================= */
.bcc-page-intro {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-xl);
  border: 1px solid var(--bcc-mist);
  padding: var(--bcc-space-lg);
  margin-bottom: var(--bcc-space-lg);
}

/* =========================================================
   INTERNAL LINKS SECTION
   ========================================================= */
.bcc-internal-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.bcc-internal-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bcc-white);
  border: 1px solid var(--bcc-mist);
  border-radius: var(--bcc-radius-md);
  color: var(--bcc-navy) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bcc-internal-link:hover {
  border-color: var(--bcc-steel);
  background: var(--bcc-ice);
  color: var(--bcc-steel) !important;
  transform: translateX(2px);
}

.bcc-internal-link__arrow {
  margin-left: auto;
  color: var(--bcc-steel);
  font-size: 16px;
}

/* =========================================================
   PRIVATE LABEL SECTION
   ========================================================= */
.bcc-pl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bcc-space-md);
  counter-reset: pl-step;
}

.bcc-pl-step {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border: 1px solid var(--bcc-mist);
  padding: var(--bcc-space-md);
  position: relative;
  counter-increment: pl-step;
}

.bcc-pl-step::before {
  content: counter(pl-step);
  position: absolute;
  top: -14px;
  left: var(--bcc-space-md);
  background: var(--bcc-amber);
  color: var(--bcc-ink);
  font-family: var(--bcc-font-heading);
  font-size: 13px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .bcc-pl-steps {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LOGISTICS SECTION
   ========================================================= */
.bcc-logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bcc-space-md);
}

.bcc-logistics-card {
  background: var(--bcc-white);
  border-radius: var(--bcc-radius-lg);
  border-left: 4px solid var(--bcc-steel);
  padding: var(--bcc-space-md);
}

.bcc-logistics-card__title {
  font-family: var(--bcc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--bcc-navy);
  margin-bottom: 8px;
}

.bcc-logistics-card p {
  font-size: 14px;
  color: var(--bcc-slate);
  margin: 0;
}

@media (max-width: 640px) {
  .bcc-logistics-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BLOCKSY OVERRIDES
   ========================================================= */
.wp-block-button__link {
  background-color: var(--bcc-amber) !important;
  color: var(--bcc-ink) !important;
  border-radius: var(--bcc-radius-md) !important;
  font-weight: 700 !important;
  padding: 13px 26px !important;
}

.wp-block-button__link:hover {
  background-color: var(--bcc-amber-hover) !important;
}

/* =========================================================
   UTILITY
   ========================================================= */
.bcc-text-center { text-align: center; }
.bcc-text-right { text-align: right; }
.bcc-mt-sm { margin-top: var(--bcc-space-sm); }
.bcc-mt-md { margin-top: var(--bcc-space-md); }
.bcc-mt-lg { margin-top: var(--bcc-space-lg); }
.bcc-mb-sm { margin-bottom: var(--bcc-space-sm); }
.bcc-mb-md { margin-bottom: var(--bcc-space-md); }
.bcc-mb-lg { margin-bottom: var(--bcc-space-lg); }

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

.bcc-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bcc-space-sm);
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .bcc-container {
    padding: 0 var(--bcc-space-md);
  }
  .bcc-section {
    padding: var(--bcc-space-lg) 0;
  }
  .bcc-hero {
    padding: var(--bcc-space-xl) 0;
  }
}

@media (max-width: 768px) {
  :root {
    --bcc-space-xl: 48px;
    --bcc-space-2xl: 64px;
  }
  .bcc-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .bcc-trust-strip__inner {
    gap: var(--bcc-space-md);
  }
  .bcc-two-col {
    grid-template-columns: 1fr;
  }
  .ct-site-logo img,
  .site-logo img {
    max-height: 50px !important;
  }
}

@media (max-width: 480px) {
  .bcc-container {
    padding: 0 var(--bcc-space-sm);
  }
  .bcc-hero__inner {
    padding: 0 var(--bcc-space-sm);
  }
  .bcc-cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}
