/* ============================================================
   BETTER LIVING PETS — Theme CSS
   File: assets/blp-theme.css
   Brand: Forest Green #2D5016 | Black #1A1A1A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ── BRAND COLORS ── */
:root {
  --cream: #F4F6F2;
  --warm: #FFFFFF;
  --bark: #1A1A1A;
  --bark2: #3D3D3D;
  --org: #2D5016;
  --org2: #1E3A0F;
  --orgp: #EAF0E4;
  --sage: #2D5016;
  --sagep: #EAF0E4;
  --gold: #3D6B20;
  --goldp: #F0F5EB;
  --border: rgba(26,26,26,0.12);
  --muted: #5A5A5A;
  --r: 12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--bark); line-height: 1.6; overflow-x: hidden; width: 100%; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── ANNOUNCE BAR ── */
.blp-announce { background: var(--bark); color: #fff; text-align: center; padding: 10px 16px; font-size: 13px; font-weight: 500; letter-spacing: .03em; }
.blp-announce a { color: #9DC87A; text-decoration: underline; }
.blp-announce-close { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; margin-left: 16px; font-size: 16px; line-height: 1; vertical-align: middle; }

/* ── TRUST BAR ── */
/* Animation speed is controlled by the inline style on the div in blp-homepage.liquid */
/* Change the number there (e.g. 12s) to adjust speed on all devices */
.blp-trust-bar { background: var(--bark); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0; overflow: hidden; width: 100%; }
.blp-trust-bar-inner { display: flex; flex-wrap: nowrap; width: max-content; }
.blp-trust-bar-inner:hover { animation-play-state: paused; }
.blp-ti { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); white-space: nowrap; flex-shrink: 0; padding: 14px 32px; border-right: 1px solid rgba(255,255,255,0.08); min-width: 260px; }
.blp-ti-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.blp-ti-o { background: rgba(255,255,255,0.08); }
.blp-ti-s { background: rgba(255,255,255,0.08); }
.blp-ti-g { background: rgba(255,255,255,0.08); }
@keyframes blpScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HELPERS ── */
.blp-section { padding: 80px 24px; }
.blp-section-sm { padding: 52px 24px; }
.blp-wrap { max-width: 1200px; margin: 0 auto; min-width: 0; }
.blp-section-head { text-align: center; margin-bottom: 52px; }
.blp-stag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--org); margin-bottom: 10px; }
.blp-section-head h2 { font-size: clamp(26px, 4vw, 40px); color: var(--bark); margin-bottom: 14px; }
.blp-section-head p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── BUTTONS ── */
.blp-btn { display: inline-block; padding: 14px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; transition: all .2s ease; text-align: center; font-family: 'DM Sans', sans-serif; cursor: pointer; text-decoration: none; }
.blp-btn-primary { background: #1e3a2f; color: #fff !important; border: 2px solid #1e3a2f; }
.blp-btn-primary:hover { background: #2f5b49; border-color: #2f5b49; color: #fff !important; transform: translateY(-2px); }
.blp-btn-outline { background: #fff; border: 2px solid #1e3a2f; color: #1e3a2f; }
.blp-btn-outline:hover { background: #1e3a2f; color: #fff; }
.blp-btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
.blp-btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.blp-btn-sage { background: #7b9a7d; color: #fff; border: 2px solid #7b9a7d; }
.blp-btn-sage:hover { background: #68866a; border-color: #68866a; }
.blp-btn-bark { background: #1f1f1f; color: #fff; border: 2px solid #1f1f1f; }
.blp-btn-bark:hover { background: #333; border-color: #333; }

/* ── BADGES ── */
.blp-badge { border-radius: 50px; padding: 5px 12px; font-size: 12px; font-weight: 600; display: inline-block; }
.blp-badge-org { background: var(--orgp); color: var(--org2); border: 1px solid rgba(45,80,22,.2); }
.blp-badge-sage { background: var(--sagep); color: var(--sage); border: 1px solid rgba(45,80,22,.2); }
.blp-badge-gold { background: var(--goldp); color: var(--gold); border: 1px solid rgba(61,107,32,.2); }
.blp-badge-white { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.blp-badge-dark { background: rgba(26,26,26,.08); color: var(--bark); border: 1px solid rgba(26,26,26,.15); }
.blp-vet-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,80,22,.2); color: #9DC87A; border: 1px solid rgba(45,80,22,.35); border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── PRODUCT CARDS ── */
.blp-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.blp-product-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blp-product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,26,26,.1); }
.blp-product-img { position: relative; overflow: hidden; background: var(--orgp); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.blp-product-img img { width: 100%; height: 100%; object-fit: contain; object-position: center center; transition: transform .3s; }
.blp-product-card:hover .blp-product-img img { transform: none; }
.blp-product-img-placeholder { font-size: 64px; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 200px; background: var(--orgp); }
.blp-sale-badge { position: absolute; top: 12px; left: 12px; background: var(--org); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; }
.blp-sale-badge-dark { background: var(--bark); }
.blp-product-info { padding: 16px 18px 20px; min-width: 0; overflow-wrap: anywhere; }
.blp-product-vendor { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.blp-product-info h3 { font-size: 16px; font-weight: 600; color: var(--bark); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; line-height: 1.35; }
.blp-product-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.blp-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.blp-product-price { font-size: 19px; font-weight: 600; color: var(--bark); }
.blp-product-price .compare-price { font-size: 14px; color: var(--muted); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.blp-atc-btn { background: var(--org); color: #fff; border: none; border-radius: 50px; padding: 9px 18px; font-size: 13px; font-weight: 600; transition: background .2s; white-space: nowrap; font-family: 'DM Sans', sans-serif; }
.blp-atc-btn:hover { background: var(--org2); }
.blp-atc-btn:disabled { background: var(--muted); cursor: not-allowed; }
.blp-product-stars { color: var(--org); font-size: 12px; margin-bottom: 5px; }

/* ── HERO ── */
.blp-hero { background: var(--bark); min-height: 580px; display: flex; align-items: center; position: relative; overflow: hidden; }
.blp-hero-dots { position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.blp-hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; width: 100%; }
.blp-hero-tag { display: inline-flex; align-items: center; background: rgba(45,80,22,.3); color: #9DC87A; border: 1px solid rgba(45,80,22,.5); border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.blp-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; color: #fff; margin-bottom: 18px; }
.blp-hero h1 em { font-style: italic; color: #9DC87A; }
.blp-hero-sub { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
.blp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.blp-hero-card { background: var(--warm); border-radius: 20px; padding: 32px 28px; }
.blp-hero-card-lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--org); margin-bottom: 6px; }
.blp-hero-card h3 { font-size: 22px; color: var(--bark); margin-bottom: 10px; }
.blp-hero-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.blp-hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.blp-hero-trust { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.blp-trust-av { width: 42px; height: 42px; border-radius: 50%; background: var(--orgp); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.blp-trust-av img { width: 100%; height: 100%; object-fit: cover; }
.blp-trust-txt { font-size: 13px; color: var(--muted); }
.blp-trust-txt strong { color: var(--bark); display: block; font-size: 14px; }
.blp-green-stars { color: var(--org); font-size: 12px; }

/* ── WHY GRID ── */
.blp-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.blp-why-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; }
.blp-why-icon { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 14px; }
.wi-o { background: var(--orgp); }
.wi-s { background: var(--sagep); }
.wi-g { background: var(--goldp); }
.wi-b { background: rgba(26,26,26,.07); }
.blp-why-card h3 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 7px; font-family: 'DM Sans', sans-serif; }
.blp-why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── STORY STRIP ── */
.blp-story-strip { background: var(--bark); padding: 80px 24px; }
.blp-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.blp-story-content h2 { font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 18px; }
.blp-story-content h2 em { color: #9DC87A; font-style: italic; }
.blp-story-content p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; margin-bottom: 14px; min-width: 0; overflow-wrap: anywhere; }
.blp-stat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.blp-stat-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 20px; }
.blp-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #9DC87A; line-height: 1; margin-bottom: 5px; }
.blp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.blp-dogs-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px; display: flex; align-items: center; gap: 14px; }
.blp-dog-avs { display: flex; }
.blp-dog-av { width: 52px; height: 52px; border-radius: 50%; background: var(--orgp); border: 2px solid var(--bark); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.blp-dog-av img { width: 100%; height: 100%; object-fit: cover; }
.blp-dog-av + .blp-dog-av { margin-left: -9px; }
.blp-dogs-info h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.blp-dogs-info p { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── STATS BAR ── */
.blp-stats-bar { background: var(--goldp); border-top: 1px solid rgba(45,80,22,.15); border-bottom: 1px solid rgba(45,80,22,.15); padding: 52px 24px; }
.blp-stats-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(45,80,22,.15); border: 1px solid rgba(45,80,22,.2); border-radius: 16px; overflow: hidden; max-width: 900px; margin: 0 auto; }
.blp-stat-cell { background: var(--goldp); padding: 32px 24px; text-align: center; }
.blp-stat-big { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--org); display: block; margin-bottom: 6px; }
.blp-stat-cell h4 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.blp-stat-cell p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── CONSULT BANNER ── */
.blp-consult-banner { background: var(--sagep); padding: 64px 24px; }
.blp-consult-card { background: var(--warm); border: 1px solid rgba(45,80,22,.2); border-radius: 20px; padding: 44px 40px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; max-width: 1200px; margin: 0 auto; }
.blp-consult-card h2 { font-size: clamp(22px, 3vw, 32px); color: var(--bark); margin-bottom: 12px; }
.blp-consult-card > div > p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.blp-consult-feats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.blp-cfeat { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--sage); }
.blp-cfeat::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.blp-consult-right { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 180px; }
.blp-consult-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── REVIEWS ── */
.blp-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.blp-review-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.blp-rev-stars { color: var(--org); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.blp-rev-text { font-size: 14px; color: var(--bark2); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.blp-rev-author { display: flex; align-items: center; gap: 9px; margin-top: 16px; }
.blp-rev-init { width: 34px; height: 34px; border-radius: 50%; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--orgp); color: var(--org2); }
.blp-review-more { margin: 0 0 16px; font-size: 14px; color: var(--muted); }
.blp-review-more summary { cursor: pointer; color: var(--org); font-weight: 600; list-style: none; margin-bottom: 10px; }
.blp-review-more summary::-webkit-details-marker { display: none; }
.blp-review-more summary::after { content: " ↓"; font-size: 12px; }
.blp-review-more[open] summary::after { content: " ↑"; }
.blp-review-more p { margin-top: 0; line-height: 1.65; font-style: italic; }

/* ── BLOG CARDS ── */
.blp-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blp-blog-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blp-blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,26,26,.1); }
.blp-blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--orgp); display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; }
.blp-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blp-blog-card:hover .blp-blog-img img { transform: scale(1.04); }
.blp-blog-info { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; min-width: 0; overflow-wrap: anywhere; }
.blp-blog-date { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.blp-blog-info h3 { font-size: 18px; color: var(--bark); margin-bottom: 10px; line-height: 1.3; }
.blp-blog-info h3 a { color: inherit; text-decoration: none; transition: color .2s; }
.blp-blog-info h3 a:hover { color: var(--org); }
.blp-blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blp-blog-read-more { color: var(--org); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.blp-blog-read-more:hover { gap: 8px; }

/* ── SOCIAL TILES ── */
.blp-social-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.blp-social-tile { aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform .2s; display: flex; align-items: center; justify-content: center; font-size: 44px; text-decoration: none; }
.blp-social-tile:hover { transform: scale(1.04); }
.blp-social-tile img { width: 100%; height: 100%; object-fit: cover; }
.blp-social-links { text-align: center; margin-top: 22px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.blp-soc-link { padding: 9px 20px; border: 1.5px solid var(--border); border-radius: 50px; font-size: 13px; font-weight: 500; transition: border-color .2s, color .2s; display: inline-block; color: var(--bark); }
.blp-soc-link:hover { border-color: var(--org); color: var(--org); }

/* ── NEWSLETTER ── */
.blp-nl-section { background: var(--org); padding: 80px 24px; }
.blp-nl-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.blp-nl-inner h2 { font-size: clamp(24px, 4vw, 36px); color: #fff; margin-bottom: 12px; }
.blp-nl-inner > p { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 28px; line-height: 1.65; }
.blp-nl-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.blp-nl-form input { flex: 1; padding: 13px 18px; border-radius: 50px; border: none; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; color: var(--bark); }
.blp-nl-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.6); }

/* ── FAQ ACCORDION ── */
.blp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.blp-faq-item { background: var(--warm); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.blp-faq-q { padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--bark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; background: none; border: none; width: 100%; text-align: left; font-family: 'DM Sans', sans-serif; }
.blp-faq-arrow { font-size: 18px; transition: transform .25s; color: var(--muted); flex-shrink: 0; }
.blp-faq-item.open .blp-faq-arrow { transform: rotate(180deg); }
.blp-faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; font-size: 14px; color: var(--muted); line-height: 1.75; }
.blp-faq-item.open .blp-faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ── CART DRAWER ── */
.blp-cart-overlay { position: fixed; inset: 0; background: rgba(26,26,26,.55); z-index: 9000; opacity: 0; pointer-events: none; transition: opacity .25s; }
.blp-cart-overlay.open { opacity: 1; pointer-events: all; }
.blp-cart-panel { position: absolute; right: 0; top: 0; bottom: 0; width: 400px; background: var(--warm); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.blp-cart-overlay.open .blp-cart-panel { transform: translateX(0); }
.blp-cart-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.blp-cart-head h3 { font-size: 18px; font-weight: 600; color: var(--bark); font-family: 'DM Sans', sans-serif; }
.blp-cart-close { font-size: 22px; cursor: pointer; color: var(--muted); background: none; border: none; line-height: 1; padding: 4px; }
.blp-cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.blp-cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.blp-cart-empty p { font-size: 15px; margin-top: 12px; }
.blp-cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.blp-cart-item-img { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--orgp); }
.blp-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.blp-cart-item-info { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.blp-cart-item-name { font-size: 14px; font-weight: 600; color: var(--bark); }
.blp-cart-item-price { font-size: 13px; color: var(--muted); margin-top: 2px; }
.blp-cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.blp-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); background: none; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; line-height: 1; }
.blp-qty-btn:hover { background: var(--orgp); }
.blp-qty-num { font-size: 14px; font-weight: 600; color: var(--bark); min-width: 20px; text-align: center; }
.blp-cart-item-remove { font-size: 16px; color: var(--muted); cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0; }
.blp-cart-item-remove:hover { color: #c0392b; }
.blp-cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.blp-cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.blp-cart-subtotal span { font-size: 14px; color: var(--muted); }
.blp-cart-subtotal strong { font-size: 22px; font-weight: 700; color: var(--bark); }
.blp-cart-free-ship { font-size: 12px; color: var(--sage); margin-bottom: 16px; font-weight: 500; }
.blp-checkout-btn { width: 100%; padding: 16px; background: var(--org); color: #fff; border: none; border-radius: 50px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; display: block; text-align: center; text-decoration: none; }
.blp-checkout-btn:hover { background: var(--org2); color: #fff; }
.blp-checkout-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── SHOP ── */
.blp-shop-header { background: var(--bark); padding: 60px 24px 48px; text-align: center; position: relative; overflow: hidden; }
.blp-shop-header::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 24px 24px; }
.blp-shop-header > * { position: relative; z-index: 1; }
.blp-shop-header h1 { color: #fff; font-size: clamp(30px, 5vw, 50px); margin-bottom: 12px; }
.blp-shop-header p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 520px; margin: 0 auto; }
.blp-filter-bar { background: var(--warm); border-bottom: 1px solid var(--border); padding: 14px 24px; position: sticky; top: 0; z-index: 100; }
.blp-filter-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.blp-filter-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 4px; }
.blp-filter-btn { background: none; border: 1.5px solid var(--border); border-radius: 50px; padding: 7px 16px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--bark2); transition: all .18s; font-family: 'DM Sans', sans-serif; }
.blp-filter-btn:hover, .blp-filter-btn.active { background: var(--org); color: #fff; border-color: var(--org); }

/* ── PAGE HEROES ── */
.blp-page-hero { padding: 64px 24px; text-align: center; position: relative; overflow: hidden; }
.blp-page-hero::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(circle, currentColor 1px, transparent 1px); background-size: 24px 24px; }
.blp-page-hero > * { position: relative; z-index: 1; }
.blp-page-hero h1 { font-size: clamp(30px, 5vw, 52px); margin-bottom: 14px; }
.blp-page-hero p { font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.blp-hero-bark { background: var(--bark); color: var(--cream); }
.blp-hero-bark h1 { color: #fff; }
.blp-hero-bark h1 em { color: #9DC87A; font-style: italic; }
.blp-hero-bark p { color: rgba(255,255,255,.72); }
.blp-hero-bark::before { color: #fff; }
.blp-hero-green { background: var(--org); }
.blp-hero-green h1 { color: #fff; }
.blp-hero-green p { color: rgba(255,255,255,.85); }
.blp-hero-green::before { color: #fff; }
.blp-hero-light { background: var(--goldp); border-bottom: 1px solid rgba(45,80,22,.15); }
.blp-hero-light h1 { color: var(--bark); }
.blp-hero-light p { color: var(--muted); }

/* ── STORY PAGE ── */
.blp-story-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.blp-story-text h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--bark); margin-bottom: 18px; }
.blp-story-text h2 em { color: var(--org); font-style: italic; }
.blp-story-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.blp-story-visual { background: var(--warm); border: 1px solid var(--border); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.blp-story-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: var(--orgp); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.blp-story-photo img { width: 100%; height: 100%; object-fit: cover; }
.blp-story-caption { font-size: 14px; color: var(--muted); text-align: center; line-height: 1.55; }
.blp-story-caption strong { color: var(--bark); display: block; font-size: 15px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.blp-values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.blp-val-card { border-radius: 16px; padding: 28px 22px; border: 1px solid var(--border); }
.blp-val-icon { font-size: 28px; margin-bottom: 14px; }
.blp-val-card h3 { font-size: 16px; font-weight: 600; color: var(--bark); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.blp-val-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blp-timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.blp-tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; position: relative; padding-bottom: 36px; }
.blp-tl-item:last-child { padding-bottom: 0; }
.blp-tl-item::before { content: ''; position: absolute; left: 54px; top: 28px; bottom: 0; width: 2px; background: var(--border); }
.blp-tl-item:last-child::before { display: none; }
.blp-tl-year { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--org); padding-top: 4px; text-align: right; }
.blp-tl-dot { position: absolute; left: 49px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--org); border: 2px solid var(--warm); }
.blp-tl-body { padding-left: 24px; }
.blp-tl-body h4 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.blp-tl-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.blp-mission-section { background: var(--bark); padding: 80px 24px; text-align: center; }
.blp-mission-section h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 18px; max-width: 700px; margin-left: auto; margin-right: auto; }
.blp-mission-section h2 em { color: #9DC87A; font-style: italic; }
.blp-mission-section p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }

/* ── CONSULT PAGE ── */
.blp-steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.blp-step-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; text-align: center; }
.blp-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--org); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; }
.blp-step-card h3 { font-size: 16px; font-weight: 600; color: var(--bark); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.blp-step-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blp-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.blp-includes-list { display: flex; flex-direction: column; gap: 14px; }
.blp-include-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--cream); border: 1px solid var(--border); border-radius: 14px; }
.blp-inc-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.blp-inc-body h4 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.blp-inc-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.blp-booking-card { background: var(--bark); border-radius: 20px; padding: 36px 28px; position: sticky; top: 100px; }
.blp-booking-card h3 { font-size: 22px; color: #fff; margin-bottom: 10px; }
.blp-booking-card p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.blp-booking-price { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: #9DC87A; margin-bottom: 4px; }
.blp-booking-price-note { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.blp-booking-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.blp-bcheck { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.blp-bcheck::before { content: '✓'; color: #9DC87A; font-weight: 700; font-size: 15px; }

/* ── CONTACT ── */
.blp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.blp-form-card { background: var(--warm); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; }
.blp-form-card h2 { font-size: 24px; color: var(--bark); margin-bottom: 22px; }
.blp-form-group { margin-bottom: 18px; }
.blp-form-label { display: block; font-size: 12px; font-weight: 600; color: var(--bark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.blp-form-input, .blp-form-textarea, .blp-form-select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--bark); background: var(--cream); transition: border-color .2s; outline: none; }
.blp-form-input:focus, .blp-form-textarea:focus, .blp-form-select:focus { border-color: var(--org); }
.blp-form-textarea { resize: vertical; min-height: 120px; }
.blp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.blp-form-success { background: var(--sagep); border: 1px solid rgba(45,80,22,.25); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--sage); font-weight: 500; margin-top: 16px; display: none; }
.blp-contact-info { display: flex; flex-direction: column; gap: 18px; }
.blp-info-card { background: var(--warm); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.blp-info-icon { font-size: 26px; margin-bottom: 10px; }
.blp-info-card h3 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.blp-info-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blp-social-connect { background: var(--bark); border-radius: 16px; padding: 24px; }
.blp-social-connect h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.blp-social-connect p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.blp-soc-row { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: rgba(255,255,255,.08); border-radius: 10px; color: #fff; font-size: 14px; font-weight: 500; margin-bottom: 8px; transition: background .2s; text-decoration: none; }
.blp-soc-row:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── FOOTER ── */
.blp-footer { background: var(--bark); color: rgba(255,255,255,.7); padding: 60px 24px 32px; }
.blp-footer-inner { max-width: 1200px; margin: 0 auto; }
.blp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.blp-footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.blp-footer-brand h3 span { color: #9DC87A; }
.blp-footer-brand p { font-size: 14px; line-height: 1.7; max-width: 250px; margin-bottom: 20px; }
.blp-footer-socials { display: flex; gap: 10px; }
.blp-fsoc { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: #fff; transition: background .2s; }
.blp-fsoc:hover { background: var(--org); color: #fff; }
.blp-footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.38); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.blp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.blp-footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s; }
.blp-footer-col ul li a:hover { color: #fff; }
.blp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.38); }
.blp-footer-bottom a { color: rgba(255,255,255,.38); text-decoration: none; }
.blp-footer-bottom a:hover { color: #fff; }
.blp-footer-links { display: flex; gap: 18px; }

/* ── BLOG ARTICLE ── */
.blp-article-body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.blp-article-body h1 { font-size: clamp(28px, 4vw, 44px); color: var(--bark); margin-bottom: 16px; }
.blp-article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.blp-article-tag { background: var(--orgp); color: var(--org); border-radius: 50px; padding: 3px 10px; font-size: 12px; font-weight: 600; }
.blp-article-content { font-size: 16px; color: var(--bark2); line-height: 1.85; min-width: 0; overflow-wrap: anywhere; }
.blp-article-content h2 { font-size: 26px; color: var(--bark); margin: 36px 0 14px; }
.blp-article-content h3 { font-size: 20px; color: var(--bark); margin: 28px 0 10px; }
.blp-article-content p { margin-bottom: 20px; }
.blp-article-content img { border-radius: 12px; margin: 24px 0; width: 100%; }
.blp-article-content ul, .blp-article-content ol { padding-left: 24px; margin-bottom: 20px; }
.blp-article-content li { margin-bottom: 8px; }

/* ── PRODUCT PAGE ── */
.blp-prod-main-img { aspect-ratio: auto !important; height: auto !important; max-height: none !important; overflow: visible !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.blp-prod-main-img img { width: 100% !important; height: auto !important; max-height: none !important; object-fit: contain !important; object-position: center center !important; display: block !important; }
.product__media img, .product-media img, .media img, .product__media-item img { width: 100% !important; height: auto !important; object-fit: contain !important; }
.product__media, .product-media, .media, .product__media-item { overflow: visible !important; }

/* ── JUDGE.ME ── */
.jm-review-widget__header-and-body, .jm-review-widget__body, .jm-review-widget__header { padding-left: 24px !important; padding-right: 24px !important; box-sizing: border-box !important; }

/* ── PRICING CARDS ── */
.blp-pricing-card .blp-btn, .blp-pricing-card .blp-btn:visited, .blp-pricing-card .blp-btn:link, .blp-pricing-card .blp-btn-primary, .blp-pricing-card .blp-btn-primary:visited, .blp-pricing-card .blp-btn-primary:link { background: #1e3a2f !important; border: 2px solid #1e3a2f !important; color: #ffffff !important; opacity: 1 !important; visibility: visible !important; }
.blp-pricing-card .blp-btn:hover, .blp-pricing-card .blp-btn-primary:hover { background: #2f5b49 !important; border-color: #2f5b49 !important; color: #ffffff !important; }
.blp-tier-featured { border: 2px solid #1e3a2f !important; box-shadow: 0 10px 30px rgba(30,58,47,.10); transform: translateY(-6px); }
.blp-tier-badge { background: #e9efe7 !important; color: #1e3a2f !important; border: 1px solid rgba(30,58,47,.15); font-weight: 800; }
.blp-guide-banner-link { text-decoration: none; display: block; }
.blp-guide-banner { transition: .2s ease; cursor: pointer; }
.blp-guide-banner:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(30,58,47,.10); border-color: rgba(30,58,47,.28); }
.blp-plan-finder-btn { color: #1e3a2f !important; background: #ffffff !important; border: 2px solid #1e3a2f !important; }
.blp-plan-finder-btn:hover { color: #ffffff !important; background: #1e3a2f !important; border-color: #1e3a2f !important; }

/* ── OVERFLOW SAFE ── */
.blp-wrap, .blp-hero-inner, .blp-story-grid, .blp-consult-card, .blp-contact-grid, .blp-includes-grid, .blp-blog-grid, .blp-blog-card, .blp-article-body, .blp-filter-inner, .blp-trust-bar-inner { min-width: 0; max-width: 100%; }
.blp-blog-info, .blp-product-info, .blp-cart-item-info, .blp-article-content, .blp-story-content, .blp-dogs-info { min-width: 0; overflow-wrap: anywhere; }

/* ── RESPONSIVE 960px ── */
@media (max-width: 960px) {
  .blp-hero-inner, .blp-story-grid, .blp-story-2col, .blp-consult-card, .blp-contact-grid, .blp-includes-grid { grid-template-columns: 1fr; gap: 36px; }
  .blp-footer-grid { grid-template-columns: 1fr 1fr; }
  .blp-social-tiles { grid-template-columns: repeat(2, 1fr); }
  .blp-stats-3 { grid-template-columns: 1fr; }
  .blp-booking-card { position: static; }
  .blp-hero { min-height: auto; }
  .blp-hero-inner { padding: 48px 20px; }
  .blp-hero h1 { font-size: 36px; }
  .blp-hero-sub { font-size: 15px; }
  .blp-hero-card { padding: 24px 20px; }
  .blp-consult-card { padding: 32px 24px; }
  .blp-consult-right { width: 100%; }
  .blp-consult-right .blp-btn { width: 100%; }
}

/* ── RESPONSIVE 660px ── */
@media (max-width: 660px) {
  .blp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .blp-nl-form { flex-direction: column; }
  .blp-nl-form input { border-radius: 50px; width: 100%; }
  .blp-nl-form button { width: 100%; border-radius: 50px; }
  .blp-social-tiles { grid-template-columns: repeat(2, 1fr); }
  .blp-form-row { grid-template-columns: 1fr; }
  .blp-cart-panel { width: 100%; }
  .blp-blog-grid { grid-template-columns: 1fr; }
  .blp-hero-btns { flex-direction: column; }
  .blp-hero-btns .blp-btn { width: 100%; text-align: center; }
  .blp-why-grid { grid-template-columns: 1fr; }
  .blp-product-grid { grid-template-columns: 1fr; }
  .blp-reviews-grid { grid-template-columns: 1fr; }
  .blp-section { padding: 48px 16px; }
  .blp-section-sm { padding: 36px 16px; }
  .blp-wrap { padding: 0 4px; }
  .blp-shop-header { padding: 40px 20px 32px; }
  .blp-page-hero { padding: 48px 20px; }
  .blp-page-hero h1 { font-size: 32px; }
  .blp-stats-3 { grid-template-columns: 1fr; }
  .blp-stat-cell { padding: 24px 20px; }
  .blp-stat-big { font-size: 32px; }
  .blp-story-strip { padding: 48px 16px; }
  .blp-stat-boxes { grid-template-columns: 1fr 1fr; }
  .blp-values-grid { grid-template-columns: 1fr; }
  .blp-steps-grid { grid-template-columns: 1fr; }
  .blp-form-card { padding: 24px 20px; }
  .blp-filter-inner { gap: 8px; }
  .blp-filter-btn { padding: 6px 12px; font-size: 12px; }
}

/* ── RESPONSIVE 400px ── */
@media (max-width: 400px) {
  .blp-hero h1 { font-size: 28px; }
  .blp-hero-badges { gap: 5px; }
  .blp-badge { font-size: 11px; padding: 4px 9px; }
  .blp-nav-logo span { display: none; }
}