/* ============================================================
   CARTPULSE — Global Components & Legacy Class Bridge
   Maps old av-* / bm-* classes to new light editorial theme.
   ============================================================ */

:root {
  /* Bridge old var names to CartPulse values */
  --primary:         #010202;
  --primary-dark:    #1a1d1c;
  --gold:            #e9c349;
  --gold-dark:       #735c00;
  --sage:            #536256;
  --sage-dark:       #3c4a3f;
  --sage-btn:        #536256;
  --sage-btn-text:   #ffffff;
  --secondary:       #faf9f7;
  --navy:            #1a1d1c;
  --navy-deep:       #1a1d1c;
  --dark:            #1a1d1c;
  --white:           #1a1c1b;
  --bg:              #faf9f7;
  --bg-cream:        #f4f3f1;
  --bg-light:        #efeeec;
  --bg-section:      #f4f3f1;
  --bg-accent:       rgba(1,2,2,0.04);
  --accent-peach:    #e9c349;
  --accent-peach-dark: #735c00;
  --search-bar:      rgba(1,2,2,0.06);
  --teal-muted:      #536256;
  --text-dark:       #1a1c1b;
  --text-muted:      #434846;
  --border:          #c4c7c5;
  --card-bg:         #ffffff;
  --font-main:       'Inter', sans-serif;
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-mono:       'Inter', monospace;
  --shadow:          0 10px 30px -15px rgba(83,98,86,0.12);
  --shadow-lg:       0 20px 50px -10px rgba(83,98,86,0.18);
  --radius:          4px;
  --radius-lg:       8px;
  --radius-pill:     9999px;
  --transition:      all 0.3s ease;
  --header-height:   72px;

  /* av-* aliases */
  --av-bg:              #faf9f7;
  --av-bg-deep:         #f4f3f1;
  --av-surface:         #ffffff;
  --av-surface-high:    #efeeec;
  --av-surface-highest: #e9e8e6;
  --av-primary:         #010202;
  --av-secondary:       #e9c349;
  --av-tertiary:        #536256;
  --av-primary-cont:    #1a1d1c;
  --av-on-surface:      #1a1c1b;
  --av-on-surface-var:  #434846;
  --av-outline:         #747876;
  --av-outline-var:     #c4c7c5;
  --av-on-secondary:    #1a1c1b;
  --av-radius:          4px;
  --av-radius-lg:       8px;
  --av-radius-xl:       12px;
  --av-radius-full:     9999px;
  --av-shadow:          0 10px 30px -15px rgba(83,98,86,0.12);
  --av-shadow-glow:     none;
  --av-transition:      all 0.3s ease;
  --av-font-head:       'Playfair Display', Georgia, serif;
  --av-font-body:       'Inter', sans-serif;
}

/* ── Global Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background: var(--cp-bg, #faf9f7);
  color: var(--cp-on-surface, #1a1c1b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cp-primary, #010202);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Containers ── */
.av-container, .container, .bm-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .av-container, .container, .bm-container { padding: 0 20px; }
}

/* ── Utility Bar ── */
.av-util-bar {
  background: var(--cp-primary-container, #1a1d1c);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.av-util-bar a { color: rgba(255,255,255,0.65); }
.av-util-bar a:hover { color: var(--cp-gold, #e9c349); }
.av-util-icon { color: var(--cp-gold, #e9c349); }
@media (max-width: 768px) { .av-util-bar { display: none; } }

/* ── Buttons ── */
.av-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.av-btn-primary, .btn-primary, .btn-dark {
  background: var(--cp-primary, #010202);
  color: #fff;
}
.av-btn-primary:hover, .btn-primary:hover, .btn-dark:hover {
  background: #2f3130;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(1,2,2,0.2);
}
.av-btn-ghost, .btn-ghost, .btn-outline-primary, .btn-outline {
  background: transparent;
  color: var(--cp-primary, #010202);
  border: 1px solid var(--cp-outline-var, #c4c7c5);
}
.av-btn-ghost:hover, .btn-ghost:hover, .btn-outline-primary:hover, .btn-outline:hover {
  background: var(--cp-primary, #010202);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-danger {
  background: transparent;
  color: #ba1a1a;
  border: 1px solid #ba1a1a;
}
.btn-outline-danger:hover {
  background: #ba1a1a;
  color: #fff;
  transform: translateY(-2px);
}
.av-btn-secondary {
  background: var(--cp-gold, #e9c349);
  color: var(--cp-primary, #010202);
}
.av-btn-secondary:hover { background: #ffe088; transform: translateY(-2px); }

/* ── Cards ── */
.av-card, .bm-card, .card {
  background: #fff;
  border-radius: var(--radius, 4px);
  box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12);
  border: 1px solid var(--cp-outline-var, #c4c7c5);
}
.av-glass {
  background: #fff;
  border: 1px solid var(--cp-outline-var, #c4c7c5);
  box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12);
  backdrop-filter: none;
}

/* ── Form Elements ── */
.av-input, .av-select, .av-textarea,
.form-control, input[type=text], input[type=email],
input[type=password], input[type=number],
input[type=tel], input[type=search],
select, textarea {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--cp-on-surface, #1a1c1b);
  background: #fff;
  border: 1px solid var(--cp-outline-var, #c4c7c5);
  border-radius: 2px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.av-input:focus, .av-select:focus, .av-textarea:focus,
.form-control:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--cp-primary, #010202);
  background: #fff;
}
input::placeholder, textarea::placeholder { color: #747876; }
.av-label, label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cp-on-surface-var, #434846);
  display: block; margin-bottom: 8px;
}
.av-form-group, .form-group { margin-bottom: 20px; }

/* ── Alerts / Flash ── */
.av-alert, .alert {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}
.av-alert-success, .alert-success {
  background: #d7e7d8;
  color: #1a3320;
  border-left: 3px solid #536256;
}
.av-alert-error, .alert-danger, .alert-error {
  background: #ffdad6;
  color: #410002;
  border-left: 3px solid #ba1a1a;
}
.av-alert-info, .alert-info {
  background: #efeeec;
  color: #1a1c1b;
  border-left: 3px solid #747876;
}

/* ── Auth Pages ── */
.av-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cp-bg, #faf9f7);
  padding: 40px 20px;
}
.av-auth-wrap { width: 100%; max-width: 460px; }
.av-auth-logo { text-align: center; margin-bottom: 40px; }
.av-auth-logo a {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--cp-primary, #010202) !important;
  letter-spacing: -0.02em !important;
}
.av-form-card {
  background: #fff;
  border: 1px solid var(--cp-outline-var, #c4c7c5);
  box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12);
  padding: 40px;
}
.av-form-card h1, .av-form-card h2 {
  font-family: var(--font-heading);
  color: var(--cp-primary, #010202);
  font-size: 24px;
  margin-bottom: 6px;
}
.av-form-card .sub, .av-form-card p {
  font-size: 14px;
  color: #434846;
  margin-bottom: 24px;
}
.av-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--cp-primary, #010202);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-top: 8px;
}
.av-submit-btn:hover { background: #2f3130; transform: translateY(-1px); }
.av-divider {
  height: 1px;
  background: var(--cp-outline-var, #c4c7c5);
  margin: 24px 0;
  position: relative;
  text-align: center;
}
.av-divider::after {
  content: 'or';
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 12px;
  font-size: 12px;
  color: #747876;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.av-oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px;
  border: 1px solid var(--cp-outline-var, #c4c7c5);
  background: #fff; color: #1a1c1b;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; font-family: inherit;
}
.av-oauth-btn:hover { background: #f4f3f1; }
.av-link { color: var(--cp-primary, #010202); font-weight: 600; }
.av-link:hover { text-decoration: underline; }
.av-terms-text {
  font-size: 12px; color: #747876;
  text-align: center; margin-top: 20px; line-height: 1.5;
}

/* ── Password toggle ── */
.av-pass-wrap { position: relative; }
.av-pass-toggle {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: #747876; transition: color 0.2s;
}
.av-pass-toggle:hover { color: var(--cp-primary, #010202); }

/* ── Product Cards (legacy classes) ── */
.bm-product-card, .product-card, .av-product-card {
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.bm-product-card:hover, .product-card:hover { transform: translateY(-4px); }
.bm-product-img, .product-card-img {
  position: relative; overflow: hidden;
  background: #f4f3f1; aspect-ratio: 4/3;
}
.bm-product-img img, .product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.bm-product-card:hover .bm-product-img img,
.product-card:hover .product-card-img img { transform: scale(1.05); }
.bm-product-body, .product-card-body { padding: 16px 0 0; }
.bm-product-name, .product-card-name {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 600;
  color: #1a1c1b; margin-bottom: 4px;
}
.bm-product-price, .product-card-price {
  font-size: 15px; font-weight: 600; color: #010202;
}
.bm-badge, .product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.bm-badge-featured, .badge-featured { background: #e9c349; color: #010202; }
.bm-badge-new, .badge-new { background: #010202; color: #fff; }
.bm-badge-sale, .badge-sale { background: #ba1a1a; color: #fff; }

/* ── Product Grid ── */
.bm-products-grid, .products-grid, .av-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px 24px;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #1a1d1c; color: #fff;
  padding: 14px 20px; font-size: 14px;
  box-shadow: 0 8px 32px rgba(1,2,2,0.25);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  max-width: 320px; border-left: 3px solid #e9c349;
}
.toast.show { transform: translateX(0); }

/* ── Tables ── */
.bm-table, table.data-table {
  width: 100%; border-collapse: collapse;
}
.bm-table th, table.data-table th {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #434846; border-bottom: 1px solid #c4c7c5;
  padding: 12px 16px; text-align: left; background: #f4f3f1;
}
.bm-table td, table.data-table td {
  padding: 14px 16px; font-size: 14px; color: #1a1c1b;
  border-bottom: 1px solid #e9e8e6;
}
.bm-table tr:hover td, table.data-table tr:hover td { background: #f4f3f1; }

/* ── Status Badges ── */
.badge, .status-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-pending, .status-pending { background: #ffe088; color: #3d2d00; }
.badge-processing, .status-processing { background: #d7e7d8; color: #1a3320; }
.badge-completed, .status-completed { background: #d7e7d8; color: #0a2213; }
.badge-cancelled, .status-cancelled { background: #ffdad6; color: #410002; }
.badge-shipped, .status-shipped { background: #dce9ff; color: #00174f; }

/* ── Page Section Defaults ── */
.bm-page { background: #faf9f7; min-height: 60vh; }
.bm-page-inner { padding: 36px 0 80px; }
.av-section { padding: 80px 0; }
.av-section-sm { padding: 48px 0; }
.av-section-dark { background: #1a1d1c; }
.av-page-header {
  padding: 120px 0 48px;
  background: #faf9f7;
}
.av-page-header h1 { font-family: var(--font-heading); color: #010202; }

/* ── Breadcrumb ── */
.bm-breadcrumb {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #747876; margin-bottom: 24px;
}
.bm-breadcrumb a { color: #747876; }
.bm-breadcrumb a:hover { color: #010202; }

/* ── Cart / Checkout ── */
.cart-page, .checkout-page { background: #faf9f7; }
.cart-items-wrap, .checkout-form-wrap {
  background: #fff;
  border: 1px solid #c4c7c5;
  box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12);
  padding: 32px;
}
.cart-summary, .order-summary {
  background: #f4f3f1;
  border: 1px solid #c4c7c5;
  padding: 28px;
}
.cart-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid #c4c7c5; align-items: flex-start;
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; background: #efeeec; flex-shrink: 0; }
.cart-item-name { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: #010202; }
.cart-item-price { font-size: 15px; font-weight: 700; color: #010202; }
.cart-item-remove {
  background: none; border: none; color: #747876;
  cursor: pointer; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; transition: color 0.2s;
}
.cart-item-remove:hover { color: #ba1a1a; }

/* ── Quantity Control ── */
.qty-wrap { display: flex; align-items: center; border: 1px solid #c4c7c5; overflow: hidden; width: fit-content; }
.qty-btn { background: none; border: none; width: 34px; height: 38px; cursor: pointer; font-size: 14px; color: #010202; transition: background 0.2s; }
.qty-btn:hover { background: #efeeec; }
.qty-input { width: 44px; height: 38px; text-align: center; border: none; border-left: 1px solid #c4c7c5; border-right: 1px solid #c4c7c5; font-size: 14px; font-weight: 600; outline: none; background: transparent; }

/* ── Account / Sidebar ── */
.av-account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.av-account-sidebar { background: #fff; border: 1px solid #c4c7c5; padding: 24px; }
.av-account-nav-link {
  display: block; padding: 12px 16px;
  font-size: 13px; font-weight: 500; color: #434846;
  border-left: 2px solid transparent; transition: all 0.2s;
}
.av-account-nav-link:hover, .av-account-nav-link.active {
  color: #010202; border-left-color: #e9c349; background: #f4f3f1;
}
@media (max-width: 768px) { .av-account-layout { grid-template-columns: 1fr; } }

/* ── Product Page ── */
.av-product-name { font-family: var(--font-heading); font-size: clamp(24px,3vw,36px); font-weight: 700; color: #010202; margin-bottom: 8px; }
.av-product-price { font-size: 24px; font-weight: 700; color: #010202; }
.av-product-add-btn {
  background: #010202; color: #fff;
  border: none; cursor: pointer; padding: 16px 40px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; width: 100%;
}
.av-product-add-btn:hover { background: #2f3130; transform: translateY(-2px); }

/* ── Blog ── */
.blog-card { background: #fff; box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12); overflow: hidden; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: #010202; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; line-height: 1.65; color: #434846; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #c4c7c5; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 600;
  color: #010202; background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-heading);
}
.faq-answer { padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: #434846; display: none; }
.faq-answer.open { display: block; }

/* ── Policy Pages ── */
.policy-page { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
.policy-page h1 { font-family: var(--font-heading); font-size: clamp(28px,4vw,44px); color: #010202; margin-bottom: 12px; }
.policy-page h2 { font-family: var(--font-heading); font-size: 22px; color: #010202; margin-top: 40px; margin-bottom: 12px; }
.policy-page h3 { font-family: var(--font-heading); font-size: 18px; color: #010202; margin-top: 28px; margin-bottom: 10px; }
.policy-page p { font-size: 15px; line-height: 1.75; color: #434846; margin-bottom: 14px; }
.policy-page ul, .policy-page ol { padding-left: 24px; margin-bottom: 14px; }
.policy-page li { font-size: 15px; line-height: 1.7; color: #434846; margin-bottom: 6px; }
.policy-page a { color: #010202; text-decoration: underline; }

/* ── Order Success ── */
.success-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #faf9f7; padding: 40px 20px; }
.success-card { background: #fff; border: 1px solid #c4c7c5; box-shadow: 0 10px 30px -15px rgba(83,98,86,0.12); padding: 48px; max-width: 560px; width: 100%; text-align: center; }
.success-icon { width: 64px; height: 64px; background: #d7e7d8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon i { color: #536256; font-size: 24px; }

/* ── 404 Page ── */
.not-found-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #faf9f7; text-align: center; padding: 40px 20px; }
.not-found-page h1 { font-family: var(--font-heading); font-size: clamp(80px,15vw,160px); font-weight: 700; color: #e9e8e6; line-height: 1; margin-bottom: 16px; }
.not-found-page h2 { font-family: var(--font-heading); font-size: 24px; color: #010202; margin-bottom: 12px; }
.not-found-page p { font-size: 16px; color: #434846; margin-bottom: 32px; }

/* ── Wishlist ── */
.wishlist-card { background: #fff; border: 1px solid #c4c7c5; overflow: hidden; }
.wishlist-card-img { aspect-ratio: 4/3; overflow: hidden; }
.wishlist-card-img img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-card-body { padding: 16px; }

/* ── Star Rating ── */
.stars-wrap { display: flex; gap: 2px; color: #e9c349; }
.star-empty { color: #c4c7c5; }

/* ── Pagination ── */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.page-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid #c4c7c5; font-size: 13px; font-weight: 600; color: #434846; transition: all 0.2s; }
.page-link:hover, .page-link.active { background: #010202; color: #fff; border-color: #010202; }

/* ── Mobile Bottom Nav ── */
.av-mobile-bottom { display: none; }
@media (max-width: 768px) { .av-mobile-bottom { display: block; } }

/* ── Search suggestions ── */
.search-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid #c4c7c5; z-index: 200;
  box-shadow: 0 20px 50px -10px rgba(83,98,86,0.18);
}
.search-results-overlay {
  background: #fff; border: 1px solid #c4c7c5;
  max-height: 400px; overflow-y: auto;
}

/* ── Swiper overrides ── */
.swiper-pagination-bullet { background: #c4c7c5; opacity: 1; }
.swiper-pagination-bullet-active { background: #010202; }
.swiper-button-next, .swiper-button-prev { color: #010202; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bm-products-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bm-products-grid, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .av-account-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bm-products-grid, .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT HERO — used by FAQ, Shipping, Refund, Policy pages
   ============================================================ */
.bm-content-hero {
  background: #1a1d1c;
  padding: 100px 0 64px;
  text-align: center;
}
.bm-content-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.bm-content-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Content body wrappers ── */
.bm-content-body,
.page-content-main {
  background: #faf9f7;
  padding: 64px 0 100px;
}

.bm-content-card,
.page-content-card {
  background: #fff;
  border: 1px solid #e8e7e5;
  box-shadow: 0 10px 40px -15px rgba(83,98,86,0.10);
  padding: 48px 56px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bm-content-card,
  .page-content-card { padding: 32px 24px; }
  .bm-content-hero { padding: 80px 24px 48px; }
}

/* ── Prose inside policy cards ── */
.bm-content-card .policy-content,
.page-content-card .policy-content,
.policy-content {
  max-width: 100%;
}

.policy-content > p,
.bm-content-card > p { font-size: 15px; line-height: 1.8; color: #434846; margin-bottom: 16px; }

.policy-content h2,
.bm-content-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700;
  color: #010202; margin-top: 40px; margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e7e5;
}

.policy-content h3,
.bm-content-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: #010202; margin-top: 28px; margin-bottom: 8px;
}

.policy-content p,
.bm-content-card p { font-size: 15px; line-height: 1.8; color: #434846; margin-bottom: 14px; }

.policy-content ul,
.policy-content ol,
.bm-content-card ul,
.bm-content-card ol { padding-left: 24px; margin-bottom: 16px; }

.policy-content li,
.bm-content-card li { font-size: 15px; line-height: 1.75; color: #434846; margin-bottom: 8px; }

.policy-content strong,
.bm-content-card strong { color: #1a1c1b; font-weight: 600; }

.policy-content a,
.bm-content-card a { color: #010202; text-decoration: underline; text-underline-offset: 3px; }

.policy-content a:hover,
.bm-content-card a:hover { color: #536256; }

/* ── Shipping table override (remove dark rgba borders) ── */
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; }
.policy-content table thead tr { border-bottom: 2px solid #e8e7e5 !important; }
.policy-content table tbody tr { border-bottom: 1px solid #e8e7e5 !important; }
.policy-content table th { text-align: left; padding: 12px 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #747876; background: #faf9f7; }
.policy-content table td { padding: 14px 14px; font-size: 14px; color: #434846; }
.policy-content table tr:hover td { background: #f4f3f1; }

/* ── CTA box at bottom of policy pages ── */
.page-cta-box {
  background: #1a1d1c;
  padding: 36px 40px;
  margin-top: 48px;
  text-align: center;
}
.page-cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.page-cta-box p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* ── vs-btn-primary (legacy button used in policy pages) ── */
.vs-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #e9c349;
  color: #010202;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.vs-btn-primary:hover { background: #ffe088; color: #010202; }

/* ── Blog grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Container fallback (pages that use .container instead of .cp-container) ── */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }
