/*
Theme Name: Bleame WordPress Pro
Theme URI: https://menfia.com
Author: Menfia
Author URI: https://menfia.com
Description: Bleame Pro – A complete WooCommerce-ready beauty product landing theme with full Theme Options panel, login popup, section toggles, and shortcode section.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bleame-pro
Tags: woocommerce, ecommerce, beauty, landing-page, custom-colors
*/

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bp-purple: #5b4fcf;
  --bp-purple-light: #7c6fe0;
  --bp-purple-pale: #e8e4f8;
  --bp-purple-bg: #f0eefe;
  --bp-dark: #1e1c2e;
  --bp-dark2: #2d2b3d;
  --bp-text: #2d2b3d;
  --bp-muted: #6b6880;
  --bp-white: #ffffff;
  --bp-gold: #f5a623;
  --bp-green: #27ae60;
  --bp-radius: 14px;
  --bp-radius-sm: 8px;
  --bp-shadow: 0 4px 24px rgba(91,79,207,.10);
  --bp-shadow-lg: 0 8px 40px rgba(91,79,207,.15);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--bp-text); background: #fff; font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
.bp-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* === ANNOUNCEMENT === */
.bp-announcement-bar { background: var(--bp-purple); color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.bp-timer { display: inline-flex; align-items: center; gap: 4px; }
.bp-timer-unit { background: rgba(255,255,255,.2); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 14px; font-weight: 700; min-width: 32px; text-align: center; }
.bp-timer-bar { background: var(--bp-purple-pale); text-align: center; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--bp-purple); }

/* === HEADER === */
.bp-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid #ede8ff; box-shadow: 0 2px 12px rgba(91,79,207,.08); }
.bp-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 24px; max-width: 1200px; margin: 0 auto; }
.bp-logo { font-size: 26px; font-weight: 700; color: var(--bp-dark); }
.bp-logo a { display: flex; align-items: center; gap: 8px; }
.bp-logo img { max-height: 48px; width: auto; }
.bp-main-nav { display: flex; gap: 28px; align-items: center; }
.bp-main-nav a { font-size: 14px; font-weight: 500; color: var(--bp-muted); transition: color .2s; }
.bp-main-nav a:hover { color: var(--bp-purple); }
.bp-nav-shop { background: var(--bp-dark) !important; color: #fff !important; padding: 7px 18px !important; border-radius: 30px !important; font-weight: 600 !important; }
.bp-nav-shop:hover { background: var(--bp-purple) !important; color: #fff !important; }
.bp-header-actions { display: flex; align-items: center; gap: 14px; }
.bp-login-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; color: var(--bp-dark); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: 30px; transition: background .2s; font-family: inherit; }
.bp-login-btn:hover { background: var(--bp-purple-pale); color: var(--bp-purple); }
.bp-login-btn svg { width: 20px; height: 20px; }
.bp-user-menu-wrap { position: relative; }
.bp-user-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bp-purple); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; cursor: pointer; }
.bp-user-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: #fff; border-radius: var(--bp-radius-sm); box-shadow: var(--bp-shadow-lg); border: 1px solid var(--bp-purple-pale); min-width: 160px; overflow: hidden; display: none; z-index: 300; }
.bp-user-dropdown.open { display: block; }
.bp-user-dropdown a, .bp-user-dropdown button { display: block; width: 100%; text-align: left; padding: 10px 16px; font-size: 13px; color: var(--bp-text); background: none; border: none; cursor: pointer; transition: background .15s; font-family: inherit; }
.bp-user-dropdown a:hover, .bp-user-dropdown button:hover { background: var(--bp-purple-bg); color: var(--bp-purple); }
.bp-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.bp-hamburger span { display: block; width: 24px; height: 2px; background: var(--bp-dark); border-radius: 2px; transition: .3s; }
.bp-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bp-hamburger.active span:nth-child(2) { opacity: 0; }
.bp-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.bp-mobile-nav { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--bp-purple-pale); padding: 20px 24px; gap: 4px; }
.bp-mobile-nav.open { display: flex; }
.bp-mobile-nav a { font-size: 16px; font-weight: 500; color: var(--bp-dark); padding: 12px 0; border-bottom: 1px solid var(--bp-purple-pale); }
.bp-mobile-nav a:hover { color: var(--bp-purple); }
.bp-trust-strip { background: var(--bp-dark); color: #ccc; text-align: center; padding: 8px 16px; font-size: 12.5px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.bp-trust-strip span { display: flex; align-items: center; gap: 6px; }

/* === LOGIN POPUP === */
.bp-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.bp-popup-overlay.open { display: flex; }
.bp-popup-box { background: #fff; border-radius: 20px; max-width: 440px; width: 100%; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.25); animation: bpPopupIn .3s ease both; }
@keyframes bpPopupIn { from { opacity:0; transform: scale(.92) translateY(20px); } to { opacity:1; transform: none; } }
.bp-popup-header { background: linear-gradient(135deg, var(--bp-purple), var(--bp-purple-light)); padding: 28px 32px 20px; color: #fff; position: relative; }
.bp-popup-header h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.bp-popup-header p { font-size: 13px; opacity: .85; }
.bp-popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.2); border: none; border-radius: 50%; width: 32px; height: 32px; font-size: 18px; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.bp-popup-close:hover { background: rgba(255,255,255,.35); }
.bp-popup-tabs { display: flex; border-bottom: 2px solid var(--bp-purple-pale); background: var(--bp-purple-bg); }
.bp-popup-tab { flex: 1; padding: 14px; background: none; border: none; font-size: 14px; font-weight: 600; color: var(--bp-muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .2s; font-family: inherit; }
.bp-popup-tab.active { color: var(--bp-purple); border-bottom-color: var(--bp-purple); }
.bp-popup-body { padding: 28px 32px 32px; }
.bp-popup-form { display: none; }
.bp-popup-form.active { display: block; }
.bp-form-group { margin-bottom: 16px; }
.bp-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--bp-dark); margin-bottom: 6px; }
.bp-form-group input { width: 100%; padding: 12px 16px; border: 2px solid var(--bp-purple-pale); border-radius: var(--bp-radius-sm); font-size: 14px; color: var(--bp-text); outline: none; transition: border-color .2s; font-family: inherit; }
.bp-form-group input:focus { border-color: var(--bp-purple); }
.bp-form-submit { width: 100%; padding: 14px; background: var(--bp-purple); color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 8px; font-family: inherit; }
.bp-form-submit:hover { background: var(--bp-purple-light); }
.bp-form-submit:disabled { opacity: .7; cursor: not-allowed; }
.bp-form-msg { padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; display: none; }
.bp-form-msg.error { background: #fee2e2; color: #b91c1c; }
.bp-form-msg.success { background: #d1fae5; color: #065f46; }
.bp-form-msg.show { display: block; }

/* === SECTIONS === */
.bp-hero { background: linear-gradient(135deg, var(--bp-purple-bg) 0%, #f8f5ff 100%); padding: 70px 24px; display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; min-height: 480px; position: relative; overflow: hidden; }
.bp-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(91,79,207,.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.bp-hero-text { flex: 1; min-width: 280px; max-width: 500px; animation: bpFadeUp .7s ease both; }
.bp-hero-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--bp-purple); background: rgba(91,79,207,.1); border-radius: 30px; padding: 4px 14px; margin-bottom: 20px; }
.bp-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 700; color: var(--bp-dark); line-height: 1.15; margin-bottom: 20px; }
.bp-hero-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.bp-hero-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--bp-text); font-weight: 500; }
.bp-hero-features li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--bp-purple); flex-shrink: 0; }
.bp-btn-primary { display: inline-block; background: var(--bp-purple); color: #fff; padding: 15px 36px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all .25s; border: none; cursor: pointer; box-shadow: 0 6px 24px rgba(91,79,207,.35); font-family: inherit; }
.bp-btn-primary:hover { background: var(--bp-purple-light); transform: translateY(-2px); }
.bp-hero-rating { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; color: var(--bp-muted); flex-wrap: wrap; }
.bp-stars { color: var(--bp-gold); font-size: 16px; letter-spacing: 1px; }
.bp-hero-image { flex: 1; min-width: 260px; max-width: 420px; animation: bpFadeUp .7s .2s ease both; }
.bp-hero-image img { border-radius: 20px; box-shadow: var(--bp-shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 3/4; }
.bp-hero-image-placeholder { background: linear-gradient(160deg, #c9b8f0, #a899e0); border-radius: 20px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 80px; box-shadow: var(--bp-shadow-lg); }

.bp-section-heading { text-align: center; margin-bottom: 40px; }
.bp-section-heading h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: var(--bp-dark); margin-bottom: 10px; }
.bp-section-heading p { font-size: 15px; color: var(--bp-muted); }

.bp-features-section { padding: 60px 24px 50px; }
.bp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; max-width: 860px; margin: 0 auto; }
.bp-feature-card { background: var(--bp-purple-bg); border-radius: var(--bp-radius); padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .2s, box-shadow .2s; text-align: center; }
.bp-feature-card:hover { transform: translateY(-4px); box-shadow: var(--bp-shadow); }
.bp-feature-icon { width: 64px; height: 64px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 2px 12px rgba(91,79,207,.15); }
.bp-feature-card p { font-size: 14px; font-weight: 600; color: var(--bp-dark); }

.bp-products-section { padding: 50px 24px 60px; background: #faf9ff; }
.bp-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.bp-product-card { background: #fff; border-radius: var(--bp-radius); overflow: hidden; box-shadow: var(--bp-shadow); transition: transform .2s, box-shadow .2s; position: relative; }
.bp-product-card:hover { transform: translateY(-4px); box-shadow: var(--bp-shadow-lg); }
.bp-product-img { aspect-ratio: 1; background: var(--bp-purple-bg); display: flex; align-items: center; justify-content: center; font-size: 56px; overflow: hidden; position: relative; }
.bp-product-img img { width: 100%; height: 100%; object-fit: cover; }
.bp-product-badge { position: absolute; top: 10px; left: 10px; background: var(--bp-purple); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 30px; letter-spacing: .5px; text-transform: uppercase; }
.bp-product-info { padding: 16px; }
.bp-product-info h3 { font-size: 14px; font-weight: 600; color: var(--bp-dark); margin-bottom: 4px; }

.bp-reviews-section { padding: 60px 24px; }
.bp-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto 36px; }
.bp-review-card { background: #fff; border-radius: var(--bp-radius); overflow: hidden; box-shadow: var(--bp-shadow); transition: transform .2s; border: 1px solid var(--bp-purple-pale); }
.bp-review-card:hover { transform: translateY(-3px); }
.bp-before-after { display: grid; grid-template-columns: 1fr 1fr; }
.bp-ba-panel { min-height: 130px; background: linear-gradient(160deg, #ccc, #aaa); display: flex; align-items: flex-end; overflow: hidden; }
.bp-ba-panel.after { background: linear-gradient(160deg, #c9b8f0, #a899e0); }
.bp-ba-panel img { width: 100%; height: 100%; object-fit: cover; }
.bp-ba-label { width: 100%; text-align: center; padding: 5px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.bp-ba-panel.before .bp-ba-label { background: rgba(0,0,0,.45); }
.bp-ba-panel.after .bp-ba-label { background: rgba(91,79,207,.8); }
.bp-review-body { padding: 20px; }
.bp-review-title { font-weight: 700; font-size: 15px; color: var(--bp-dark); margin-bottom: 8px; }
.bp-review-text { font-size: 13px; color: var(--bp-muted); line-height: 1.55; margin-bottom: 14px; }
.bp-reviewer { display: flex; align-items: center; gap: 10px; }
.bp-reviewer-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bp-purple-pale); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--bp-purple); }
.bp-reviewer-name { font-size: 13px; font-weight: 600; color: var(--bp-dark); }
.bp-verified { font-size: 11px; color: var(--bp-green); }
.bp-btn-outline { display: inline-block; border: 2px solid var(--bp-dark); color: var(--bp-dark); padding: 12px 32px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all .2s; cursor: pointer; background: none; font-family: inherit; }
.bp-btn-outline:hover { background: var(--bp-dark); color: #fff; }

.bp-action-section { padding: 60px 24px; }
.bp-action-inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; max-width: 960px; margin: 0 auto; }
.bp-action-text { flex: 1; min-width: 240px; }
.bp-action-text h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; color: var(--bp-dark); margin-bottom: 8px; line-height: 1.3; }
.bp-action-text h2 em { font-style: italic; font-weight: 400; color: var(--bp-muted); }
.bp-tab-buttons { display: flex; gap: 8px; margin: 20px 0 28px; flex-wrap: wrap; }
.bp-tab-btn { padding: 7px 18px; border-radius: 30px; border: 2px solid var(--bp-purple-pale); font-size: 13px; font-weight: 600; color: var(--bp-muted); cursor: pointer; background: none; transition: .2s; font-family: inherit; }
.bp-tab-btn.active, .bp-tab-btn:hover { background: var(--bp-purple); color: #fff; border-color: var(--bp-purple); }
.bp-action-image { flex: 1; min-width: 280px; border-radius: 20px; overflow: hidden; box-shadow: var(--bp-shadow-lg); }
.bp-action-image img { width: 100%; object-fit: cover; }
.bp-action-image-placeholder { background: linear-gradient(160deg, #e2d9f0, #c5b5e8); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 72px; opacity: .6; }

.bp-dark-cta { background: var(--bp-dark2); padding: 70px 24px; text-align: center; color: #fff; }

/* Product Showcase Card */
.bp-product-showcase {
  background: rgba(255,255,255,.07);
  border-radius: 20px;
  max-width: 340px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
}
.bp-product-showcase-img {
  background: linear-gradient(135deg, #c9b8f0, #a899e0);
  border-radius: var(--bp-radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.bp-product-showcase-img img { width: 100%; height: 100%; object-fit: cover; }

.bp-cta-product-name {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: -.2px;
}

/* Pricing */
.bp-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bp-price-old { color: #888; text-decoration: line-through; font-size: 15px; }
.bp-price-new { color: #a78bfa; font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.bp-price-badge {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: .5px;
  text-transform: uppercase;
  animation: bpBadgePulse 2.5s ease-in-out infinite;
}
@keyframes bpBadgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* CTA Action Buttons */
.bp-cta-actions { display: flex; flex-direction: column; gap: 10px; }

/* Add to Cart Button */
.bp-btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--bp-purple), var(--bp-purple-light));
  color: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 6px 24px rgba(91,79,207,.5);
  font-family: inherit;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}
.bp-btn-add-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.bp-btn-add-cart:hover::before { opacity: 1; }
.bp-btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(91,79,207,.6); }
.bp-btn-add-cart:active { transform: translateY(0); }
.bp-btn-add-cart:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.bp-btn-add-cart.bp-atc-loading { pointer-events: none; opacity: .8; }
.bp-btn-add-cart.bp-atc-success {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  box-shadow: 0 6px 24px rgba(5,150,105,.4) !important;
}

/* View Cart Button */
.bp-btn-view-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .3px;
  font-family: inherit;
  text-decoration: none;
  animation: bpSlideUp .35s ease both;
}
.bp-btn-view-cart:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}
@keyframes bpSlideUp { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none; } }

/* Add to cart toast notification */
.bp-cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1e1c2e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9998;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s;
  opacity: 0;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.1);
}
.bp-cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.bp-cart-toast.success { border-left: 4px solid #10b981; }
.bp-cart-toast.error { border-left: 4px solid #ef4444; }

.bp-stats-section { padding: 60px 24px; }
.bp-stats-inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; max-width: 960px; margin: 0 auto; }
.bp-stats-media { flex: 1; min-width: 260px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bp-stats-video { background: linear-gradient(135deg, #c9b8f0, #a899e0); border-radius: var(--bp-radius-sm); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 40px; cursor: pointer; position: relative; overflow: hidden; }
.bp-stats-video::after { content: '▶'; position: absolute; font-size: 28px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.bp-stats-video img { width: 100%; height: 100%; object-fit: cover; }
.bp-stats-info { flex: 1; min-width: 260px; }
.bp-stats-info h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--bp-dark); margin-bottom: 28px; }
.bp-stat-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.bp-stat-circle { width: 58px; height: 58px; border-radius: 50%; border: 3px solid var(--bp-purple-pale); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--bp-purple); flex-shrink: 0; background: #fff; }
.bp-stat-text { font-size: 14px; color: var(--bp-muted); line-height: 1.5; padding-top: 14px; }
.bp-stat-disclaimer { font-size: 11px; color: #aaa; margin-bottom: 24px; }
.bp-btn-claim { display: inline-block; background: var(--bp-purple); color: #fff; padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: .2s; margin-bottom: 16px; box-shadow: 0 6px 24px rgba(91,79,207,.3); font-family: inherit; }
.bp-btn-claim:hover { background: var(--bp-purple-light); transform: translateY(-2px); }

.bp-testimonial-banner { background: var(--bp-purple-pale); padding: 56px 24px; text-align: center; }
.bp-testimonial-banner blockquote { max-width: 700px; margin: 0 auto 20px; font-size: clamp(17px, 2.5vw, 22px); font-style: italic; color: var(--bp-dark); line-height: 1.6; }
.bp-testimonial-banner cite { font-size: 14px; font-weight: 600; color: var(--bp-purple); font-style: normal; }

.bp-faq-section { padding: 60px 24px; }
.bp-faq-section .bp-faq-inner { max-width: 760px; margin: 0 auto; }
.bp-faq-item { border-bottom: 1px solid var(--bp-purple-pale); }
.bp-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--bp-dark); gap: 16px; transition: color .2s; font-family: inherit; }
.bp-faq-q:hover, .bp-faq-q.active { color: var(--bp-purple); }
.bp-faq-icon { font-size: 22px; font-weight: 300; flex-shrink: 0; transition: transform .3s; }
.bp-faq-q.active .bp-faq-icon { transform: rotate(45deg); }
.bp-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.bp-faq-a.open { max-height: 600px; padding-bottom: 18px; }
.bp-faq-a p { font-size: 14px; color: var(--bp-muted); line-height: 1.7; margin-bottom: 8px; }
.bp-faq-contact { text-align: center; margin-top: 48px; }
.bp-faq-contact h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--bp-dark); }
.bp-faq-contact p { color: var(--bp-muted); font-size: 14px; margin-bottom: 24px; }

.bp-trust-section { background: var(--bp-purple-bg); padding: 56px 24px; text-align: center; }
.bp-trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 36px; }
.bp-trust-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bp-trust-icon { width: 72px; height: 72px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: var(--bp-shadow); }
.bp-trust-item p { font-size: 14px; font-weight: 600; color: var(--bp-dark); }

.bp-shortcode-section { padding: 60px 24px; }

.bp-newsletter { background: var(--bp-dark); padding: 70px 24px; text-align: center; color: #fff; }
.bp-newsletter h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; margin-bottom: 10px; }
.bp-newsletter p { color: #aaa; font-size: 14px; margin-bottom: 28px; }
.bp-email-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.bp-email-input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 50px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; outline: none; transition: border-color .2s; font-family: inherit; }
.bp-email-input::placeholder { color: #888; }
.bp-email-input:focus { border-color: var(--bp-purple); }
.bp-btn-subscribe { padding: 14px 24px; border-radius: 50px; background: var(--bp-purple); color: #fff; font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: .2s; white-space: nowrap; font-family: inherit; }
.bp-btn-subscribe:hover { background: var(--bp-purple-light); }

.bp-footer { background: var(--bp-dark); border-top: 1px solid rgba(255,255,255,.07); padding: 56px 24px 32px; color: #ccc; }
.bp-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; max-width: 1080px; margin: 0 auto 48px; }
.bp-footer-logo { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.bp-footer-logo img { max-height: 40px; }
.bp-footer-mission { font-size: 13px; line-height: 1.75; color: #aaa; margin-bottom: 20px; }
.bp-social-links { display: flex; gap: 10px; }
.bp-social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #aaa; transition: .2s; }
.bp-social-links a:hover { background: var(--bp-purple); color: #fff; }
.bp-footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; color: #fff; margin-bottom: 18px; }
.bp-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.bp-footer-col li a { font-size: 13px; color: #aaa; transition: color .2s; }
.bp-footer-col li a:hover { color: var(--bp-purple-light); }
.bp-footer-bottom { max-width: 1080px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.bp-copyright { font-size: 12px; color: #666; }
.bp-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-payment-icon { background: rgba(255,255,255,.1); border-radius: 4px; padding: 4px 8px; font-size: 11px; color: #aaa; font-weight: 600; }
.bp-disclaimer { background: #161424; text-align: center; padding: 16px 24px; font-size: 11.5px; color: #555; line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 900px) { .bp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .bp-main-nav { display: none; }
  .bp-hamburger { display: flex; }
  .bp-hero { padding: 48px 20px; gap: 32px; text-align: center; }
  .bp-hero-features { text-align: left; display: inline-flex; }
  .bp-action-inner { flex-direction: column; }
  .bp-stats-inner { flex-direction: column; }
  .bp-trust-items { gap: 28px; }
}
@media (max-width: 540px) {
  .bp-footer-grid { grid-template-columns: 1fr; }
  .bp-footer-bottom { flex-direction: column; align-items: flex-start; }
  .bp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-popup-body { padding: 20px 20px 24px; }
}

@keyframes bpFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }


a.added_to_cart.wc-forward {
    display: none;
}