/*
 * Theme Name: Bag of Apples Child
 * Template: kadence
 * Description: Child theme for bagofapples.com — service business web design
 * Version: 2.0
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --boa-navy:       #1B2A4A;
  --boa-navy-dark:  #111E36;
  --boa-amber:      #E8A320;
  --boa-amber-dark: #C98A10;
  --boa-off-white:  #F7F6F2;
  --boa-white:      #FFFFFF;
  --boa-text:       #1A1A1A;
  --boa-text-muted: #5A6478;
  --boa-border:     #E2E0D8;

  --boa-font-display: 'DM Sans', 'Helvetica Neue', sans-serif;
  --boa-font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --boa-radius:    6px;
  --boa-radius-lg: 12px;
  --boa-shadow:    0 2px 16px rgba(27, 42, 74, 0.10);
  --boa-shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.15);

  --boa-max-width: 1200px;
  --boa-section-pad: 80px 24px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--boa-font-body);
  color: var(--boa-text);
  background: var(--boa-white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--boa-navy); }
a:hover { color: var(--boa-amber-dark); }

h1, h2, h3, h4 {
  font-family: var(--boa-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--boa-navy);
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

p { margin-top: 0; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.boa-container {
  max-width: var(--boa-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--boa-section-pad); }

/* ============================================================
   BUTTONS
   ============================================================ */
.boa-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--boa-radius);
  font-family: var(--boa-font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.boa-btn--primary {
  background: var(--boa-amber);
  color: var(--boa-navy);
  border-color: var(--boa-amber);
}
.boa-btn--primary:hover {
  background: var(--boa-amber-dark);
  border-color: var(--boa-amber-dark);
  color: var(--boa-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 163, 32, 0.35);
}

.boa-btn--secondary {
  background: transparent;
  color: var(--boa-navy);
  border-color: var(--boa-navy);
}
.boa-btn--secondary:hover {
  background: var(--boa-navy);
  color: var(--boa-white);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAV (Kadence override)
   ============================================================ */
.site-header,
#masthead {
  background: var(--boa-navy) !important;
  border-bottom: 1px solid #00000029;
}

.site-branding .site-title a,
.header-site-branding .site-title a {
  color: var(--boa-white) !important;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* Nav links */
.main-navigation a,
#site-navigation a {
  color: var(--boa-white) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.main-navigation a:hover,
#site-navigation a:hover {
  color: var(--boa-amber) !important;
}

/* Nav CTA button */
.boa-nav-cta {
  background: var(--boa-amber) !important;
  color: var(--boa-navy) !important;
  padding: 8px 18px !important;
  border-radius: var(--boa-radius) !important;
  font-weight: 700 !important;
}
.boa-nav-cta:hover {
  background: var(--boa-amber-dark) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.boa-hero {
  background: var(--boa-navy);
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.boa-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,163,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.boa-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.boa-hero__eyebrow {
  display: inline-block;
  background: rgba(232,163,32,0.15);
  color: var(--boa-amber);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.boa-hero__headline {
  color: var(--boa-white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.boa-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.boa-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.boa-hero .boa-btn--secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--boa-white);
}
.boa-hero .boa-btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--boa-white);
}

.boa-hero__proof {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.boa-trust-bar {
  background: var(--boa-navy-dark);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
}

.boa-trust-bar .boa-container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.boa-trust-bar__label {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.boa-trust-bar__list {
  display: flex;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.boa-trust-bar__list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

.boa-trust-bar__list li::before {
  content: '·';
  margin-right: 8px;
  color: var(--boa-amber);
  opacity: 0.6;
}
.boa-trust-bar__list li:first-child::before { display: none; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.boa-section__title {
  text-align: center;
  margin-bottom: 12px;
}

.boa-section__sub {
  text-align: center;
  color: var(--boa-text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.boa-steps { background: var(--boa-off-white); border-radius: 7px;}

.boa-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.boa-step {
  background: var(--boa-white);
  border-radius: var(--boa-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--boa-shadow);
  position: relative;
}

.boa-step__number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--boa-amber);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.boa-step__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--boa-navy);
}

.boa-step__body { color: var(--boa-text-muted); font-size: 0.97rem; }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.boa-included { background: var(--boa-white); }

.boa-included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.boa-included__item {
  border: 1px solid var(--boa-border);
  border-radius: var(--boa-radius-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--boa-amber);
  transition: box-shadow 0.2s;
}

.boa-included__item:hover { box-shadow: var(--boa-shadow); }

.boa-included__item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.boa-included__item p { color: var(--boa-text-muted); font-size: 0.95rem; }

/* ============================================================
   INDUSTRIES GRID
   ============================================================ */
.boa-industries { background: var(--boa-navy); border-radius: 7px;}
.boa-industries .boa-section__title { color: var(--boa-white); }
.boa-industries .boa-section__sub { color: rgba(255,255,255,0.6); }

.boa-industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.boa-industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--boa-radius-lg);
  padding: 24px 20px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.boa-industry-card:hover {
  background: rgba(232,163,32,0.12);
  border-color: var(--boa-amber);
  transform: translateY(-2px);
}

.boa-industry-card h3 {
  color: var(--boa-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.boa-industry-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
}

.boa-industry-card--more { border-style: dashed; opacity: 0.7; }

/* ============================================================
   PRICING CARD
   ============================================================ */
.boa-pricing { background: var(--boa-off-white); border-radius: 7px;}

.boa-pricing__card {
  background: var(--boa-white);
  border-radius: var(--boa-radius-lg);
  box-shadow: var(--boa-shadow-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 48px auto 0;
  border-top: 4px solid var(--boa-amber);
}

.boa-pricing__badge {
  display: inline-block;
  background: rgba(232,163,32,0.12);
  color: var(--boa-amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.boa-pricing__name { font-size: 1.4rem; margin-bottom: 16px; }

.boa-pricing__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--boa-navy);
  line-height: 1;
  margin-bottom: 8px;
}
.boa-pricing__price span { font-size: 1.2rem; font-weight: 500; color: var(--boa-text-muted); }

.boa-pricing__note { color: var(--boa-text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.boa-pricing__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.boa-pricing__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--boa-border);
  font-size: 0.97rem;
  color: var(--boa-text);
}
.boa-pricing__features li:last-child { border-bottom: none; }

/* Industry page pricing card (simpler) */
.boa-industry-pricing .boa-pricing__card {
  display: block;
  text-align: center;
  max-width: 500px;
}
.boa-industry-pricing .boa-pricing__price { font-size: 4rem; margin-bottom: 16px; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.boa-about-teaser { background: var(--boa-white); }

.boa-about-teaser__text { max-width: 660px; }
.boa-about-teaser__text h2 { margin-bottom: 20px; }
.boa-about-teaser__text p { color: var(--boa-text-muted); margin-bottom: 16px; }
.boa-about-teaser__text .boa-btn { margin-top: 8px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.boa-cta-band {
  background: var(--boa-navy);
  text-align: center;
  padding: 80px 24px;
  border-radius: 7px;
}

.boa-cta-band h2 {
  color: var(--boa-amber) !important;
  margin-bottom: 16px;
}

.boa-cta-band p {
  color: var(--boa-white) !important;
  max-width: 500px;
  margin: 0 auto 28px;
}

.boa-cta-band .boa-btn { margin-bottom: 20px; }

.boa-cta-band__phone {
  color: var(--boa-white) !important;
  font-size: 0.95rem;
  margin-top: 8px;
}

.boa-cta-band__phone a {
  color: var(--boa-white) !important;
  font-weight: 700 !important;
  text-decoration: none;
}

.boa-cta-band__phone a:hover {
  color: var(--boa-amber) !important;
  text-decoration: underline;
}

/* ============================================================
   PAGE HEROES (interior pages)
   ============================================================ */
.boa-page-hero {
  background: var(--boa-navy);
  padding: 80px 24px 72px;
  text-align: center;
  border-radius: 7px;
  overflow: hidden;
}

body.content-width-fullwidth .boa-page-hero {
  border-radius: 7px;
}

/* Pull page hero flush to header — match Our Work page spacing */
body:not(.single-portfolio) .content-area:has(.boa-page-hero),
body:not(.single-portfolio) .content-container:has(.boa-page-hero) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Fallback for browsers without :has() support */
body.page-template-default .content-area,
body.page-template-default .content-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.boa-page-hero h1 { color: var(--boa-white); margin-bottom: 16px; }
.boa-page-hero p { color: rgba(255,255,255,0.85) !important; max-width: 580px; margin: 0 auto; font-size: 1.15rem; }

.boa-page-hero--industry { padding-bottom: 80px; }
.boa-page-hero--industry .boa-btn { margin-top: 28px; }

.boa-eyebrow {
  display: inline-block;
  color: var(--boa-amber);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.boa-services-package { background: var(--boa-white); }
.boa-services-package h2 { margin-bottom: 12px; }
.boa-services-package > .boa-container > p { color: var(--boa-text-muted); margin-bottom: 48px; }

.boa-services__pages {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--boa-border);
  border-radius: var(--boa-radius-lg);
  overflow: hidden;
}

.boa-service-page {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--boa-border);
  align-items: start;
  transition: background 0.15s;
}
.boa-service-page:last-child { border-bottom: none; }
.boa-service-page:hover { background: var(--boa-off-white); }

.boa-service-page__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--boa-amber);
  line-height: 1;
  padding-top: 4px;
}

.boa-service-page h3 { margin-bottom: 6px; }
.boa-service-page p { color: var(--boa-text-muted); font-size: 0.97rem; margin: 0; }

.boa-monthly { background: var(--boa-off-white); }
.boa-monthly h2 { margin-bottom: 12px; }
.boa-monthly > .boa-container > p { color: var(--boa-text-muted); margin-bottom: 48px; }

.boa-monthly__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.boa-monthly__item {
  background: var(--boa-white);
  border-radius: var(--boa-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--boa-shadow);
}
.boa-monthly__item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.boa-monthly__item p { color: var(--boa-text-muted); font-size: 0.95rem; margin: 0; }

/* Pricing table */
.boa-pricing-full { background: var(--boa-white); }
.boa-pricing-table { border: 1px solid var(--boa-border); border-radius: var(--boa-radius-lg); overflow: hidden; margin: 32px 0; }
.boa-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--boa-border);
  font-size: 0.97rem;
}
.boa-pricing-row:last-child { border-bottom: none; }
.boa-pricing-row--header { background: var(--boa-navy); font-weight: 700; }
.boa-pricing-row--header span { color: var(--boa-white); }

/* Not included */
.boa-not-included { background: var(--boa-off-white); }
.boa-not-included p { color: var(--boa-text-muted); max-width: 680px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.boa-about-main { background: var(--boa-white); }
.boa-about-main__content { max-width: 720px; }
.boa-about-main__content h2 { margin-top: 40px; margin-bottom: 16px; }
.boa-about-main__content h2:first-child { margin-top: 0; }
.boa-about-main__content p { color: var(--boa-text-muted); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.boa-portfolio { background: var(--boa-white); }

.boa-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.boa-portfolio__item {
  border-radius: var(--boa-radius-lg);
  overflow: hidden;
  box-shadow: var(--boa-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.boa-portfolio__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--boa-shadow-lg);
}

.boa-portfolio__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.boa-portfolio__info {
  padding: 16px 20px;
  border-top: 1px solid var(--boa-border);
}

.boa-portfolio__info h3 { font-size: 1rem; margin-bottom: 4px; }

.boa-portfolio__tag {
  font-size: 0.8rem;
  color: var(--boa-text-muted);
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.boa-contact-main { background: var(--boa-white); }

.boa-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.boa-contact__info h2 { margin-bottom: 16px; }
.boa-contact__info > p { color: var(--boa-text-muted); margin-bottom: 32px; }

.boa-contact__details {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.boa-contact__details li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--boa-border);
}
.boa-contact__details li:last-child { border-bottom: none; }
.boa-contact__details strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--boa-text-muted); margin-bottom: 4px; }
.boa-contact__details a { color: var(--boa-navy); font-weight: 600; text-decoration: none; font-size: 1.05rem; }
.boa-contact__details a:hover { color: var(--boa-amber-dark); }

.boa-contact__faqs h3 { font-size: 1rem; margin-bottom: 20px; color: var(--boa-text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

.boa-faq { margin-bottom: 20px; }
.boa-faq h4 { font-size: 0.97rem; margin-bottom: 6px; }
.boa-faq p { color: var(--boa-text-muted); font-size: 0.93rem; margin: 0; }

.boa-contact__form h2 { margin-bottom: 24px; }

/* WPForms override */
.wpforms-form .wpforms-field input,
.wpforms-form .wpforms-field textarea,
.wpforms-form .wpforms-field select {
  border: 1px solid var(--boa-border) !important;
  border-radius: var(--boa-radius) !important;
  padding: 12px 16px !important;
  font-family: var(--boa-font-body) !important;
  font-size: 1rem !important;
  width: 100% !important;
  transition: border-color 0.15s !important;
}

.wpforms-form .wpforms-field input:focus,
.wpforms-form .wpforms-field textarea:focus {
  border-color: var(--boa-navy) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08) !important;
}

.wpforms-form .wpforms-submit {
  background: var(--boa-amber) !important;
  color: var(--boa-navy) !important;
  font-weight: 700 !important;
  font-family: var(--boa-font-body) !important;
  padding: 14px 32px !important;
  border-radius: var(--boa-radius) !important;
  border: none !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.wpforms-form .wpforms-submit:hover { background: var(--boa-amber-dark) !important; }

/* ============================================================
   INDUSTRY LANDING PAGES
   ============================================================ */
.boa-industry-intro { background: var(--boa-white); }
.boa-industry-intro h2 { margin-bottom: 20px; }
.boa-industry-intro p { color: var(--boa-text-muted); max-width: 720px; }

.boa-industry-includes { background: var(--boa-off-white); }
.boa-industry-includes h2 { text-align: center; margin-bottom: 8px; }
.boa-industry-includes > .boa-container > p { text-align: center; color: var(--boa-text-muted); margin-bottom: 48px; }

.boa-industry-includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.boa-industry-item {
  background: var(--boa-white);
  border-radius: var(--boa-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--boa-shadow);
}
.boa-industry-item h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--boa-navy); }
.boa-industry-item p { color: var(--boa-text-muted); font-size: 0.95rem; margin: 0; }

.boa-industry-pricing { background: var(--boa-white); text-align: center; }
.boa-industry-pricing h2 { margin-bottom: 8px; }
.boa-industry-pricing > .boa-container > p { color: var(--boa-text-muted); }

/* ============================================================
   BLOG
   ============================================================ */
.entry-header .entry-title { color: var(--boa-navy); }
.entry-content h2, .entry-content h3 { color: var(--boa-navy); margin-top: 2em; }
.entry-content p, .entry-content li { color: var(--boa-text-muted); line-height: 1.75; }
.entry-content a { color: var(--boa-navy); font-weight: 600; }
.entry-content a:hover { color: var(--boa-amber-dark); }
.entry-content ul { padding-left: 24px; }
.entry-content ul li { margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
#colophon {
  background: var(--boa-navy-dark) !important;
  color: rgba(255,255,255,0.6) !important;
  border-top: 3px solid var(--boa-amber);
}

.site-footer a,
#colophon a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
}
.site-footer a:hover,
#colophon a:hover {
  color: var(--boa-amber) !important;
}

.site-footer .widget-title,
#colophon .widget-title {
  color: var(--boa-white) !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --boa-section-pad: 56px 20px; }

  .boa-hero { padding: 72px 20px 64px; }
  .boa-hero__headline { font-size: 2.2rem; }
  .boa-hero__sub { font-size: 1.05rem; }
  .boa-hero__ctas { flex-direction: column; align-items: center; }

  .boa-pricing__card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }

  .boa-contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .boa-service-page { grid-template-columns: 56px 1fr; padding: 20px; }

  .boa-industries__grid { grid-template-columns: repeat(2, 1fr); }

  .boa-portfolio__grid { grid-template-columns: 1fr; }

  .boa-pricing-row { grid-template-columns: 1fr; gap: 4px; }
  .boa-pricing-row span:last-child { font-weight: 600; color: var(--boa-navy); }
}

@media (max-width: 480px) {
  .boa-industries__grid { grid-template-columns: 1fr; }
  .boa-trust-bar__list { gap: 6px 12px; }
}

/* ============================================================
   PORTFOLIO GRID — Our Work index page
   ============================================================ */

.boa-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--boa-max-width);
  margin: 60px auto;
  padding: 0 24px;
}

.boa-portfolio-card {
  display: block;
  text-decoration: none;
  color: var(--boa-text);
  border-radius: var(--boa-radius-lg);
  overflow: hidden;
  background: var(--boa-white);
  box-shadow: var(--boa-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.boa-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--boa-shadow-lg);
  color: var(--boa-text);
  text-decoration: none;
}

.boa-portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.boa-portfolio-card-info {
  padding: 18px 20px 20px;
  border-top: 3px solid var(--boa-amber);
}

.boa-portfolio-card-info h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--boa-navy);
}

/* ============================================================
   PORTFOLIO CASE STUDY pages — individual /our-work/client/
   ============================================================ */

.boa-portfolio-hero {
  background: var(--boa-navy);
  color: var(--boa-white);
  padding: 60px 24px;
  text-align: center;
}

.boa-portfolio-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.boa-back-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.boa-back-link:hover { color: var(--boa-amber); }

.boa-portfolio-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--boa-white);
}

.boa-portfolio-hero .boa-subheadline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
}

.boa-portfolio-body {
  max-width: var(--boa-max-width);
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.boa-portfolio-image img {
  width: 100%;
  border-radius: var(--boa-radius-lg);
  box-shadow: var(--boa-shadow-lg);
  position: sticky;
  top: 32px;
}

.boa-portfolio-details > div {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--boa-border);
}

.boa-portfolio-details > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.boa-portfolio-details h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--boa-amber);
  margin: 0 0 10px;
}

.boa-portfolio-details p {
  margin: 0;
  color: var(--boa-text);
  line-height: 1.7;
}

.boa-portfolio-cta {
  background: var(--boa-navy-dark);
  color: var(--boa-white);
  text-align: center;
  padding: 60px 24px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.boa-portfolio-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--boa-white);
}

.boa-portfolio-cta .boa-btn-secondary {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.boa-portfolio-cta .boa-btn-secondary:hover {
  color: var(--boa-amber);
}

/* ============================================================
   PAGE HERO — used on Our Work index
   ============================================================ */

.boa-page-hero {
  background: var(--boa-navy);
  color: var(--boa-white);
  text-align: center;
  padding: 72px 24px 64px;
  border-radius: 7px;
  overflow: hidden;
}

/* No rounded corners on full-width pages (portfolio, etc.) */
body.content-width-fullwidth .boa-page-hero {
  border-radius: 7px;
}

.boa-page-hero .boa-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--boa-amber);
  margin: 0 0 14px;
}

.boa-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--boa-white);
  margin: 0 0 16px;
}

.boa-page-hero .boa-subheadline,
.boa-page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85) !important;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   INDUSTRY TAG — used on both grid and case study pages
   ============================================================ */

.boa-industry-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--boa-text-muted);
  background: var(--boa-off-white);
  border-radius: 4px;
  padding: 3px 8px;
}

/* Dark backgrounds get a lighter tag */
.boa-portfolio-hero .boa-industry-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   RESPONSIVE — portfolio
   ============================================================ */

@media (max-width: 960px) {
  .boa-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .boa-portfolio-body { grid-template-columns: 1fr; gap: 40px; }
  .boa-portfolio-image img { position: static; }
}

@media (max-width: 600px) {
  .boa-portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
  .boa-portfolio-card img { height: 180px; }
}


/* ============================================================
   PORTFOLIO GALLERY — additional images below featured image
   ============================================================ */
.boa-portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.boa-portfolio-gallery .boa-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.boa-portfolio-gallery .boa-gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.boa-portfolio-gallery .boa-gallery-item:hover img {
    transform: scale(1.04);
}

/* If only 1 gallery image, span full width */
.boa-portfolio-gallery .boa-gallery-item:only-child {
    grid-column: 1 / -1;
}

.boa-portfolio-gallery .boa-gallery-item:only-child img {
    height: 240px;
}


/* ============================================================
   SINGLE PORTFOLIO — Full Width Layout
   ============================================================ */

.boa-single-portfolio {
    padding: 0;
}

/* HERO */
.boa-ph-hero {
    background: #1a2340;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.boa-ph-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.boa-ph-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
}

.boa-ph-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.boa-ph-breadcrumb a:hover {
    color: #fff;
}

.boa-ph-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
}

.boa-ph-subheadline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* FEATURED IMAGE */
.boa-ph-featured-image {
    width: 100%;
    max-height: 560px;
    overflow: hidden;
    background: #0d1526;
}

.boa-ph-featured-image img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* CONTENT AREA */
.boa-ph-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.boa-ph-client-link {
    margin-bottom: 40px;
}

/* Case study sections — style the headings from the_content() */
.boa-ph-body h2,
.boa-ph-body h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8A320;
    margin: 48px 0 12px;
}

.boa-ph-body h2:first-child,
.boa-ph-body h3:first-child {
    margin-top: 0;
}

.boa-ph-body p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 20px;
}

/* GALLERY */
.boa-ph-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.boa-ph-gallery-title {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #E8A320 !important;
    margin: 0 0 24px !important;
}

.boa-ph-gallery-grid {
    display: grid;
    gap: 16px;
}

/* 1 image: full width */
.boa-ph-gallery-count-1 { grid-template-columns: 1fr; }

/* 2 images: side by side */
.boa-ph-gallery-count-2 { grid-template-columns: repeat(2, 1fr); }

/* 3 images: 2 top, 1 full bottom */
.boa-ph-gallery-count-3 { grid-template-columns: repeat(2, 1fr); }
.boa-ph-gallery-count-3 .boa-ph-gallery-item:last-child { grid-column: 1 / -1; }

/* 4 images: 2x2 grid */
.boa-ph-gallery-count-4 { grid-template-columns: repeat(2, 1fr); }

/* 5 images: 2 top, 3 bottom */
.boa-ph-gallery-count-5 { grid-template-columns: repeat(3, 1fr); }
.boa-ph-gallery-count-5 .boa-ph-gallery-item:nth-child(1),
.boa-ph-gallery-count-5 .boa-ph-gallery-item:nth-child(2) {
    grid-column: span 1;
}

.boa-ph-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.boa-ph-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.boa-ph-gallery-item:hover img {
    transform: scale(1.03);
}

/* CTA BAND */
.boa-ph-cta {
    background: #1a2340;
    color: #fff;
    text-align: center;
    padding: 60px 40px;
}

.boa-ph-cta p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 28px;
}

.boa-ph-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media ( max-width: 640px ) {
    .boa-ph-hero { padding: 60px 24px; }
    .boa-ph-content { padding: 40px 24px; }
    .boa-ph-gallery-count-2,
    .boa-ph-gallery-count-3,
    .boa-ph-gallery-count-4,
    .boa-ph-gallery-count-5 { grid-template-columns: 1fr; }
    .boa-ph-gallery-count-3 .boa-ph-gallery-item:last-child,
    .boa-ph-gallery-count-5 .boa-ph-gallery-item:nth-child(1),
    .boa-ph-gallery-count-5 .boa-ph-gallery-item:nth-child(2) { grid-column: auto; }
    .boa-ph-cta { padding: 48px 24px; }
    .boa-ph-cta p { font-size: 1.15rem; }
}

/* ============================================================
   SINGLE PORTFOLIO — hero image crop fix on wide screens
   ============================================================ */
@media ( min-width: 1024px ) {
    .boa-ph-featured-image {
        max-height: 680px;
    }

    .boa-ph-featured-image img {
        max-height: 680px;
        object-position: top;
    }
}

/* ============================================================
   SINGLE PORTFOLIO — Override old two-column styles
   ============================================================ */
.boa-single-portfolio .boa-portfolio-body,
.boa-single-portfolio .boa-portfolio-hero,
.boa-single-portfolio .boa-portfolio-cta {
    display: block !important;
    grid-template-columns: unset !important;
}

.boa-single-portfolio .boa-portfolio-image,
.boa-single-portfolio .boa-portfolio-details {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
}

/* Hide any stray alt text showing as visible text */
.boa-ph-featured-image img[alt]::before {
    display: none !important;
}

/* Ensure content sections are full width, not cramped */
.boa-ph-body > div {
    display: block;
    width: 100%;
}

.boa-ph-body h2 {
    margin-top: 48px;
}

.boa-ph-body h2:first-child {
    margin-top: 0;
}


/* ============================================================
   PORTFOLIO HERO — compact version
   ============================================================ */
.boa-ph-hero {
    background: #1a2340;
    color: #fff;
    padding: 36px 40px 32px;
    text-align: center;
}

.boa-ph-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.boa-ph-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.boa-ph-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.boa-ph-breadcrumb a:hover { color: #fff; }

.boa-ph-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff;
}

.boa-ph-subheadline {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    margin: 0 auto;
    max-width: 580px;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
#boa-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#boa-lightbox.boa-lb-open {
    display: flex;
}

#boa-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

#boa-lb-inner {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#boa-lb-img {
    max-width: 90vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: opacity 0.2s ease;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

#boa-lb-caption {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;
}

#boa-lb-close {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
    box-shadow: none;
}

#boa-lb-close:hover { opacity: 1; }

#boa-lb-prev,
#boa-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 4px;
    transition: background 0.2s;
    box-shadow: none;
}

#boa-lb-prev { left: 12px; }
#boa-lb-next { right: 12px; }

#boa-lb-prev:hover,
#boa-lb-next:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
}

@media (max-width: 640px) {
    #boa-lb-prev { left: 4px; padding: 10px 12px; }
    #boa-lb-next { right: 4px; padding: 10px 12px; }
    #boa-lb-img  { max-height: 75vh; }
}


/* ============================================================
   FOOTER — remove Kadence credit text
   ============================================================ */
.site-info a[href*="kadencewp"],
.footer-html-inner a[href*="kadencewp"] {
    display: none !important;
}

.footer-html-inner p {
    font-size: inherit;
}


/* ============================================================
   BUTTON ALIASES — boa-btn-primary / boa-btn-secondary
   (used in single portfolio template CTA band)
   ============================================================ */
.boa-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #E8A320;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.boa-btn-primary:hover {
    background: #c8891a;
    color: #fff !important;
}

.boa-btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.boa-btn-secondary:hover {
    border-color: rgba(255,255,255,0.9);
    color: #fff !important;
}

/* Secondary button when used on white background (e.g. client link) */
.boa-ph-client-link .boa-btn-secondary {
    color: #1a2340 !important;
    border-color: #1a2340;
}

.boa-ph-client-link .boa-btn-secondary:hover {
    background: #1a2340;
    color: #fff !important;
}


/* ============================================================
   CTA BAND — force visibility overrides
   ============================================================ */
.boa-single-portfolio .boa-ph-cta {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #1a2340 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 60px 40px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.boa-single-portfolio .boa-ph-cta p {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 28px !important;
}

.boa-single-portfolio .boa-ph-cta-buttons {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.boa-single-portfolio .boa-btn-primary {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: #E8A320 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    border: none !important;
}

.boa-single-portfolio .boa-btn-primary:hover {
    background: #c8891a !important;
    color: #fff !important;
}

.boa-single-portfolio .boa-btn-secondary {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
}

.boa-single-portfolio .boa-btn-secondary:hover {
    border-color: rgba(255,255,255,0.9) !important;
    color: #fff !important;
}


/* ============================================================
   KADENCE BOXED CONTENT — prevent clipping of full-width elements
   ============================================================ */
.boa-single-portfolio,
.boa-single-portfolio #primary,
.boa-single-portfolio .content-container,
body.content-style-boxed .boa-single-portfolio {
    overflow: visible !important;
}

body.single-portfolio .content-area {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

body.single-portfolio .entry,
body.single-portfolio .entry-content-wrap,
body.single-portfolio .single-entry {
    padding: 0 !important;
    box-shadow: none !important;
}

/* Toggle */
#bpp .bpp-tr { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 0 !important; margin-bottom: 32px !important; }
#bpp .bpp-lbl { font-size: 1rem; font-weight: 600; color: #1B2A4A; white-space: nowrap; flex-shrink: 0; width: 80px; }
#bpp .bpp-lbl:first-child { text-align: right; padding-right: 12px; }
#bpp .bpp-lbl:last-child  { text-align: left;  padding-left: 12px; }
#bpp .bpp-sw { position: relative; display: inline-block; width: 54px; height: 28px; flex-shrink: 0; cursor: pointer; border-radius: 28px; }
#bpp .bpp-tk { position: absolute; inset: 0; background: #1B2A4A; border-radius: 28px; transition: background 0.2s; }
#bpp .bpp-th { position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,.3); }

/* ── BOA Plans Page ── */
#bpp * { box-sizing: border-box; margin: 0; padding: 0; }
#bpp { font-family: 'DM Sans','Helvetica Neue',Arial,sans-serif; max-width: 1100px; margin: 0 auto; padding: 20px 20px 80px; color: #1A1A1A; }

/* Plans table */
#bpp .bpp-tbl { width: 100%; border-collapse: collapse; table-layout: fixed; }
#bpp .bpp-tbl > tbody > tr > td { width: 33.33%; vertical-align: top; border: 1px solid #ddd; padding: 0; background: #fff; }
#bpp .bpp-tbl > tbody > tr > td.bpp-silver { border-radius: 8px 0 0 8px; overflow: hidden; }
#bpp .bpp-tbl > tbody > tr > td.bpp-plat   { border-radius: 0 8px 8px 0; overflow: hidden; }
#bpp .bpp-tbl > tbody > tr > td.bpp-gold   { position: relative; z-index: 1; }

#bpp .bpp-hd { padding: 12px 16px; text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; line-height: 1.2; }
#bpp .bpp-silver .bpp-hd { background: #9E9E9E; }
#bpp .bpp-gold   .bpp-hd { background: #E8A320; }
#bpp .bpp-plat   .bpp-hd { background: #78909C; }

#bpp .bpp-bd { padding: 24px 20px 28px; }
#bpp .bpp-tg { display: block; font-size: 1rem; font-weight: 700; color: #1B2A4A; text-align: center; margin-bottom: 16px; line-height: 1.3; }

/* Price — inline-flex so all parts sit on one line */
#bpp .bpp-pr { display: flex !important; flex-direction: row !important; align-items: baseline !important; justify-content: center !important; gap: 0 !important; margin-bottom: 10px; line-height: 1; flex-wrap: nowrap !important; }
#bpp .bpp-pr .p-sym { font-size: 1rem; font-weight: 700; color: #1B2A4A; align-self: flex-start; padding-top: 6px; }
#bpp .bpp-pr .p-num { font-size: 2.8rem; font-weight: 800; color: #1B2A4A; line-height: 1; }
#bpp .bpp-pr .p-cnt { font-size: 1rem; font-weight: 700; color: #1B2A4A; align-self: flex-start; padding-top: 6px; }
#bpp .bpp-pr .p-per { font-size: 0.8rem; color: #888; align-self: flex-end; padding-bottom: 3px; padding-left: 2px; }

#bpp .bpp-bi { display: block; text-align: center; font-size: 0.78rem; color: #5A6478; background: #f0f4f0; border-radius: 4px; padding: 5px 10px; margin: 0 0 4px 0 !important; line-height: 1.4; }
#bpp .bpp-sf { display: block; text-align: center; font-size: 0.85rem; color: #5A6478; margin: 20px 0; padding: 4px; line-height: 1; }

#bpp .bpp-ct { display: block; width: 70%; margin-left: auto; margin-right: auto; padding: 13px 10px; background: #E8A320; color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; margin-bottom: 15px; line-height: 1; box-sizing: border-box; }
#bpp .bpp-ct:hover { background: #C98A10; color: #fff; text-decoration: none; }

#bpp .bpp-dc { display: block; font-size: 0.84rem; color: #5A6478; line-height: 1.65; margin-bottom: 16px; }

#bpp .bpp-fl { list-style: none; }
#bpp .bpp-fl li { font-size: 0.83rem; color: #333; line-height: 1.5; padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid #f0f0f0; }
#bpp .bpp-fl li:last-child { border-bottom: none; }
#bpp .bpp-fl li::before { content: "\2713"; position: absolute; left: 0; top: 6px; color: #E8A320; font-weight: 700; font-size: 0.85rem; }
#bpp .bpp-fl li strong { color: #1B2A4A; }

/* Toggle show/hide */
.bpp-m { display: inline !important; }
.bpp-y { display: none !important; }
#bpp.is-yearly .bpp-m { display: none !important; }
#bpp.is-yearly .bpp-y { display: inline !important; }

/* Bottom section */
#bpp .bpp-bot { margin-top: 56px; padding-top: 48px; border-top: 1px solid #E2E0D8; }
#bpp .bpp-bot > table { width: 100%; border-collapse: collapse; table-layout: fixed; }
#bpp .bpp-bot > table > tbody > tr > td { width: 50%; vertical-align: top; border: none; padding: 0; background: transparent; box-shadow: none; }
#bpp .bpp-bot > table > tbody > tr > td:first-child { padding-right: 48px; }
#bpp .bpp-bh { display: block; font-size: 1.35rem; font-weight: 800; color: #1B2A4A; text-transform: uppercase; margin-bottom: 14px; line-height: 1.2; }
#bpp .bpp-bs { display: block; font-size: 0.95rem; color: #5A6478; line-height: 1.7; }

#bpp .bpp-fr .bpp-row { width: 100%; border-collapse: collapse; table-layout: fixed; margin-bottom: 14px; display: table; }
#bpp .bpp-fr .bpp-row td { display: table-cell; width: 50%; border: none; padding: 0; background: transparent; box-shadow: none; vertical-align: top; }
#bpp .bpp-fr .bpp-row td:first-child { padding-right: 10px; }
#bpp .bpp-fr .bpp-row td:last-child  { padding-left: 10px; }
#bpp .bpp-fr input, #bpp .bpp-fr textarea { width: 100%; padding: 9px 0; border: none !important; border-bottom: 1.5px solid #ccc !important; border-radius: 0 !important; font-family: 'DM Sans',Arial,sans-serif; font-size: 0.93rem; color: #1B2A4A; background: transparent !important; outline: none !important; box-shadow: none !important; display: block; }
#bpp .bpp-fr input:focus, #bpp .bpp-fr textarea:focus { border-bottom-color: #1B2A4A !important; }
#bpp .bpp-fr textarea { resize: none; min-height: 72px; margin-bottom: 16px; }
#bpp .bpp-fb { padding: 13px 28px; background: #1B2A4A; color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; border: none; border-radius: 5px; cursor: pointer; }
#bpp .bpp-fb:hover { background: #E8A320; }

@media (max-width: 720px) {
  #bpp .bpp-tbl, #bpp .bpp-tbl tbody, #bpp .bpp-tbl tr { display: block !important; width: 100% !important; }
  #bpp .bpp-tbl > tbody > tr > td { display: block !important; width: 100% !important; border: 1px solid #ddd !important; border-top: none !important; border-radius: 0 !important; }
  #bpp .bpp-tbl > tbody > tr > td.bpp-silver { border-top: 1px solid #ddd !important; border-radius: 8px 8px 0 0 !important; }
  #bpp .bpp-tbl > tbody > tr > td.bpp-plat { border-radius: 0 0 8px 8px !important; }
  #bpp .bpp-bot > table, #bpp .bpp-bot > table tbody, #bpp .bpp-bot > table tr { display: block !important; }
  #bpp .bpp-bot > table > tbody > tr > td { display: block !important; width: 100% !important; padding: 0 0 32px !important; }
  #bpp .bpp-fr .bpp-row { display: block !important; }
  #bpp .bpp-fr .bpp-row td { display: block !important; width: 100% !important; padding: 0 !important; }
}

/* ── CF7 typeform inside plans page bottom section ── */
#bpp .bpp-bot .boa-tf-wrap { padding: 0; }
#bpp .bpp-bot .boa-tf-step { padding: 16px 0 12px; }
#bpp .bpp-bot .boa-tf-q { font-size: 1.3rem; margin-bottom: 20px; }
#bpp .bpp-bot .boa-tf-next,
#bpp .bpp-bot .boa-tf-submit { padding: 12px 28px; font-size: 0.9rem; }
#bpp .bpp-bot .boa-tf-progress { margin-bottom: 16px; }
#bpp .bpp-bot .boa-tf-num { margin-bottom: 8px; }
#bpp .bpp-bot .boa-tf-step input,
#bpp .bpp-bot .boa-tf-step textarea { font-size: 1rem; padding: 10px 0; }
#bpp .bpp-bot .boa-tf-hint { margin-top: 8px; font-size: 0.75rem; }
#bpp .bpp-bot .boa-tf-nav { margin-top: 20px; gap: 10px; }

/* ============================================================
   WOOCOMMERCE — GLOBAL RESETS & LAYOUT
   ============================================================ */

/* Remove WC's own wrappers interfering with Kadence layout */
.boa-wc-page .woocommerce,
.boa-wc-page .woocommerce-page {
  max-width: var(--boa-max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.boa-wc-page .entry-content-wrap,
.boa-wc-page .single-entry {
  padding: 0 !important;
  box-shadow: none !important;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--boa-amber) !important;
  background: #fffbf2 !important;
  color: var(--boa-text) !important;
  font-size: 0.95rem;
  border-radius: var(--boa-radius);
  padding: 14px 18px !important;
  margin-bottom: 20px !important;
  list-style: none !important;
  border-left: none !important;
}
.woocommerce-error {
  border-top-color: #c0392b !important;
  background: #fef5f5 !important;
}
.woocommerce-message::before,
.woocommerce-info::before { display: none !important; }

/* ============================================================
   CART ICON BUBBLE — floats top-right on WC pages
   ============================================================ */
.boa-cart-bubble {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 9999;
}

.boa-cart-bubble__link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--boa-navy);
  color: var(--boa-white);
  border-radius: 40px;
  padding: 8px 14px 8px 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.22);
  transition: background 0.18s, box-shadow 0.18s;
}

.boa-cart-bubble__link:hover {
  background: var(--boa-navy-dark);
  color: var(--boa-white);
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.3);
}

.boa-cart-bubble__icon {
  display: block;
  flex-shrink: 0;
}

.boa-cart-bubble__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: var(--boa-amber);
  color: var(--boa-navy);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0 5px;
  line-height: 1;
  transition: background 0.18s;
}

/* Hide count badge when cart is empty */
.boa-cart-bubble__count:not(.has-items) {
  display: none;
}

/* ============================================================
   SHOP / ARCHIVE PAGE
   ============================================================ */
.boa-wc-archive__header {
  text-align: center;
  padding: 48px 0 32px;
}

.boa-wc-archive__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--boa-navy);
  margin: 0;
}

/* Product grid */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  ul.products {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   PRODUCT CARD (loop)
   ============================================================ */
.boa-product-card {
  background: var(--boa-white);
  border: 1px solid var(--boa-border);
  border-radius: var(--boa-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.boa-product-card:hover {
  box-shadow: var(--boa-shadow-lg);
  transform: translateY(-3px);
}

.boa-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.boa-product-card__body {
  padding: 28px 24px 20px;
}

.boa-product-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--boa-navy);
  margin-bottom: 8px;
}

.boa-product-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--boa-amber);
  margin-bottom: 12px;
}

.boa-product-card__price del { color: var(--boa-text-muted); font-size: 1rem; font-weight: 400; }
.boa-product-card__price ins { text-decoration: none; }

.boa-product-card__desc {
  font-size: 0.9rem;
  color: var(--boa-text-muted);
  line-height: 1.6;
}

.boa-product-card__footer {
  padding: 0 24px 24px;
}

/* Small button modifier */
.boa-btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Ghost button for secondary cart actions */
.boa-btn--ghost {
  background: transparent;
  color: var(--boa-text-muted);
  border: 1.5px solid var(--boa-border);
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--boa-radius);
  cursor: pointer;
  font-family: var(--boa-font-display);
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.boa-btn--ghost:hover {
  border-color: var(--boa-navy);
  color: var(--boa-navy);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.boa-wc-single-wrap {
  max-width: var(--boa-max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.woocommerce div.product .woocommerce-product-gallery { grid-column: 1; }
.woocommerce div.product .summary { grid-column: 2; }

@media (max-width: 768px) {
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary { grid-column: 1; }
}

.woocommerce div.product h1.product_title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--boa-navy);
  margin-bottom: 12px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--boa-amber) !important;
  margin-bottom: 20px;
  display: block;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.97rem;
  color: var(--boa-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Add-to-cart button on product page */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--boa-amber) !important;
  color: var(--boa-navy) !important;
  border: none !important;
  border-radius: var(--boa-radius) !important;
  font-family: var(--boa-font-display) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  transition: background 0.18s, transform 0.18s !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--boa-amber-dark) !important;
  transform: translateY(-1px) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 48px;
  border-top: 1px solid var(--boa-border);
  padding-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--boa-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--boa-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--boa-navy);
  border-bottom-color: var(--boa-amber);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.boa-wc-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .boa-wc-cart .woocommerce {
    grid-template-columns: 1fr;
  }
}

/* Cart table */
.boa-cart-table-wrap { grid-column: 1; }
.cart-collaterals { grid-column: 2; }

@media (max-width: 900px) {
  .boa-cart-table-wrap,
  .cart-collaterals { grid-column: 1; }
}

.boa-cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.boa-cart-table th {
  font-weight: 700;
  color: var(--boa-navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0 14px;
  border-bottom: 2px solid var(--boa-border);
  text-align: left;
}

.boa-cart-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--boa-border);
  vertical-align: middle;
}

.boa-cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--boa-border);
  color: var(--boa-text-muted) !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.boa-cart-remove:hover {
  background: #fde8e8;
  color: #c0392b !important;
}

.boa-cart-table td.product-name a {
  font-weight: 600;
  color: var(--boa-navy);
  text-decoration: none;
}
.boa-cart-table td.product-name a:hover { color: var(--boa-amber-dark); }

.boa-cart-table td.actions {
  padding-top: 20px;
}

.boa-cart-table td.actions .coupon {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.boa-cart-table td.actions .coupon input {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--boa-border);
  border-radius: var(--boa-radius);
  font-family: var(--boa-font-body);
  font-size: 0.92rem;
  color: var(--boa-text);
  outline: none;
  transition: border-color 0.15s;
}
.boa-cart-table td.actions .coupon input:focus { border-color: var(--boa-navy); }

/* Qty input */
.woocommerce .quantity .qty {
  width: 64px !important;
  padding: 8px 10px !important;
  border: 1.5px solid var(--boa-border) !important;
  border-radius: var(--boa-radius) !important;
  text-align: center !important;
  font-family: var(--boa-font-body) !important;
  font-size: 0.95rem !important;
  color: var(--boa-text) !important;
}

/* Cart totals */
.boa-cart-totals {
  background: var(--boa-off-white);
  border-radius: var(--boa-radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--boa-border);
}

.boa-cart-totals h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--boa-navy);
  margin-bottom: 20px;
}

.boa-cart-totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.boa-cart-totals .shop_table th,
.boa-cart-totals .shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--boa-border);
  vertical-align: top;
}

.boa-cart-totals .shop_table th {
  font-weight: 600;
  color: var(--boa-text-muted);
  width: 50%;
}

.boa-cart-totals .shop_table tr.order-total th,
.boa-cart-totals .shop_table tr.order-total td {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--boa-navy);
  border-bottom: none;
  padding-top: 16px;
}

.boa-cart-totals .wc-proceed-to-checkout {
  margin-top: 20px;
}

.boa-cart-totals .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  background: var(--boa-amber) !important;
  color: var(--boa-navy) !important;
  border-radius: var(--boa-radius) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 15px 24px !important;
  text-decoration: none !important;
  transition: background 0.18s !important;
}
.boa-cart-totals .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--boa-amber-dark) !important;
}

/* Empty cart */
.boa-cart-empty {
  text-align: center;
  padding: 80px 24px;
}
.boa-cart-empty__icon {
  color: var(--boa-border);
  margin: 0 auto 20px;
  display: inline-block;
}
.boa-cart-empty__text {
  font-size: 1.1rem;
  color: var(--boa-text-muted);
  margin-bottom: 28px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.boa-wc-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .boa-wc-checkout .woocommerce {
    grid-template-columns: 1fr;
  }
}

/* Checkout form fields */
.woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce form .form-row label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--boa-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid var(--boa-border) !important;
  border-radius: var(--boa-radius) !important;
  font-family: var(--boa-font-body) !important;
  font-size: 0.97rem !important;
  color: var(--boa-text) !important;
  background: var(--boa-white) !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.15s !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--boa-navy) !important;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #c0392b !important;
}

/* Section headings inside checkout */
.woocommerce h3#order_review_heading,
.woocommerce h3#ship-to-different-address {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--boa-navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--boa-border);
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--boa-border);
}

.woocommerce-checkout-review-order-table th {
  font-weight: 700;
  color: var(--boa-navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout-review-order-table tr.order-total td {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--boa-navy);
  border-bottom: none;
}

/* Payment section */
.woocommerce-checkout #payment {
  background: var(--boa-off-white);
  border-radius: var(--boa-radius-lg);
  padding: 24px;
  border: 1px solid var(--boa-border);
  margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 10px 0;
  border-bottom: 1px solid var(--boa-border);
}

.woocommerce-checkout #payment ul.payment_methods li:last-child { border-bottom: none; }

.woocommerce-checkout #payment div.payment_box {
  background: var(--boa-white);
  border-radius: var(--boa-radius);
  padding: 14px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--boa-text-muted);
}

/* Place order button */
#place_order {
  display: block !important;
  width: 100% !important;
  background: var(--boa-amber) !important;
  color: var(--boa-navy) !important;
  border: none !important;
  border-radius: var(--boa-radius) !important;
  font-family: var(--boa-font-display) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 16px 24px !important;
  cursor: pointer !important;
  transition: background 0.18s !important;
  text-align: center !important;
}
#place_order:hover { background: var(--boa-amber-dark) !important; }

/* ============================================================
   MY ACCOUNT PAGE
   ============================================================ */
.boa-wc-account .woocommerce {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .boa-wc-account .woocommerce {
    grid-template-columns: 1fr;
  }
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--boa-off-white);
  border-radius: var(--boa-radius-lg);
  border: 1px solid var(--boa-border);
  overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--boa-border);
}
.woocommerce-MyAccount-navigation ul li:last-child { border-bottom: none; }

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--boa-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--boa-navy);
  color: var(--boa-white);
}

.woocommerce-MyAccount-content h3 {
  font-size: 1.1rem;
  color: var(--boa-navy);
  margin-bottom: 20px;
}

/* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */
.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--boa-navy);
  margin-bottom: 8px;
}

.woocommerce-order-details,
.woocommerce-customer-details {
  margin-top: 32px;
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--boa-navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--boa-border);
}

/* ============================================================
   RESPONSIVE — CART TABLE on mobile
   ============================================================ */
@media (max-width: 600px) {
  .boa-cart-table thead { display: none; }
  .boa-cart-table td {
    display: block;
    text-align: right;
    padding: 8px 0;
    border-bottom: none;
  }
  .boa-cart-table td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
    color: var(--boa-navy);
  }
  .boa-cart-table tr { border-bottom: 1px solid var(--boa-border); padding: 12px 0; display: block; }
  .boa-cart-table td.actions { text-align: left; }
  .boa-cart-table td.actions::before { display: none; }

  .boa-cart-bubble { top: auto; bottom: 20px; right: 20px; }
}
