/*
Theme Name: Bully Owners
Theme URI: https://bullyowners.com
Author: Bully Owners
Author URI: https://bullyowners.com
Description: Premium navy/red/gold theme for The American Bully Buyer's Guide. Built for EDD with conversion-focused landing page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bullyowners
Tags: dark, one-page, e-commerce, custom-background
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --bo-navy: #0D1B2A;
    --bo-navy2: #152233;
    --bo-red: #C8390A;
    --bo-red2: #E04010;
    --bo-gold: #E8B84B;
    --bo-cream: #F5F0E8;
    --bo-white: #FFFFFF;
    --bo-gray: #8A95A0;
    --bo-light: #EEF2F6;
    --bo-font-display: 'Bebas Neue', sans-serif;
    --bo-font-cond: 'Barlow Condensed', sans-serif;
    --bo-font-body: 'Barlow', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--bo-font-body);
    background: var(--bo-navy);
    color: var(--bo-cream);
    overflow-x: hidden;
    padding-bottom: 64px; /* space for sticky bar */
}

/* ============================================
   NAV BAR
   ============================================ */
.bo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.bo-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bo-nav-logo {
    text-decoration: none;
}

.bo-nav-logo-text {
    font-family: var(--bo-font-display);
    font-size: 26px;
    color: var(--bo-white);
    letter-spacing: 0.02em;
}

.bo-nav-logo-text span {
    color: var(--bo-red);
}

.bo-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bo-nav-links a {
    font-family: var(--bo-font-cond);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.bo-nav-links a:hover {
    color: var(--bo-white);
}

.bo-nav-cta {
    background: var(--bo-red) !important;
    color: var(--bo-white) !important;
    padding: 8px 22px !important;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    font-weight: 800 !important;
    transition: background 0.2s !important;
}

.bo-nav-cta:hover {
    background: var(--bo-red2) !important;
}

.bo-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.bo-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--bo-white);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 600px) {
    .bo-nav-toggle {
        display: flex;
    }

    .bo-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .bo-nav-links.open {
        display: flex;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--bo-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bo-red2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bo-font-display);
    font-weight: 700;
    line-height: 1;
    color: var(--bo-white);
}

ul,
ol {
    list-style: none;
}

/* ============================================
   HERO
   ============================================ */
.bo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 24px 80px;
    overflow: hidden;
}

.bo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 57, 10, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(13, 27, 42, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.bo-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 184, 75, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 184, 75, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.bo-badge {
    display: inline-block;
    background: var(--bo-red);
    color: var(--bo-white);
    font-family: var(--bo-font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    margin-bottom: 28px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    animation: boFadeDown 0.6s ease both;
}

.bo-hero-eyebrow {
    font-family: var(--bo-font-cond);
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bo-gold);
    margin-bottom: 16px;
    animation: boFadeDown 0.7s 0.1s ease both;
}

.bo-hero-title {
    font-family: var(--bo-font-display);
    font-size: clamp(64px, 12vw, 148px);
    line-height: 0.92;
    color: var(--bo-white);
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: boFadeDown 0.7s 0.2s ease both;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.bo-hero-title span {
    color: var(--bo-red);
    display: block;
}

.bo-hero-subtitle {
    font-family: var(--bo-font-display);
    font-size: clamp(28px, 5vw, 58px);
    color: var(--bo-gold);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    animation: boFadeDown 0.7s 0.3s ease both;
}

.bo-hero-desc {
    max-width: 580px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.65;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 48px;
    animation: boFadeDown 0.7s 0.4s ease both;
}

.bo-hero-desc strong {
    color: var(--bo-white);
}

.bo-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: boFadeDown 0.7s 0.5s ease both;
}

.bo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bo-red);
    color: var(--bo-white);
    font-family: var(--bo-font-cond);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 48px;
    border: none;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 8px 32px rgba(200, 57, 10, 0.45);
}

.bo-btn-primary:hover {
    background: var(--bo-red2);
    color: var(--bo-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 57, 10, 0.55);
}

.bo-price-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bo-price-was {
    font-family: var(--bo-font-cond);
    font-size: 15px;
    color: var(--bo-gray);
    text-decoration: line-through;
}

.bo-price-now {
    font-family: var(--bo-font-display);
    font-size: 36px;
    color: var(--bo-gold);
}

.bo-price-note {
    font-size: 13px;
    color: var(--bo-gray);
    letter-spacing: 0.04em;
}

.bo-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 56px;
    animation: boFadeDown 0.7s 0.6s ease both;
}

.bo-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bo-font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bo-gray);
}

.bo-trust-item .bo-icon {
    width: 18px;
    height: 18px;
    background: var(--bo-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--bo-navy);
    flex-shrink: 0;
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.bo-section-label {
    font-family: var(--bo-font-cond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bo-red);
    margin-bottom: 16px;
}

.bo-section-title {
    font-family: var(--bo-font-display);
    font-size: clamp(42px, 7vw, 80px);
    line-height: 0.95;
    color: var(--bo-navy);
    margin-bottom: 32px;
}

.bo-section-title.light {
    color: var(--bo-white);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.bo-pain {
    background: var(--bo-cream);
    color: var(--bo-navy);
    padding: 90px 24px;
}

.bo-pain-inner {
    max-width: 840px;
    margin: 0 auto;
}

.bo-pain-lead {
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.7;
    color: #3A4A5A;
    margin-bottom: 40px;
    max-width: 680px;
}

.bo-pain-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.bo-pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 17px;
    line-height: 1.6;
    color: #2A3A4A;
    padding: 18px 20px;
    background: var(--bo-white);
    border-left: 4px solid var(--bo-red);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bo-pain-list li .bo-x {
    font-family: var(--bo-font-cond);
    font-size: 18px;
    font-weight: 800;
    color: var(--bo-red);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   FEATURES
   ============================================ */
.bo-features {
    background: var(--bo-navy2);
    padding: 90px 24px;
}

.bo-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.bo-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.bo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.bo-feature-card {
    background: var(--bo-navy);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.bo-feature-card:hover {
    background: #1A2D40;
}

.bo-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bo-red), var(--bo-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.bo-feature-card:hover::after {
    transform: scaleX(1);
}

.bo-feature-num {
    font-family: var(--bo-font-display);
    font-size: 52px;
    color: rgba(232, 184, 75, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.bo-feature-title {
    font-family: var(--bo-font-cond);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--bo-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bo-feature-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(245, 240, 232, 0.7);
}

.bo-feature-items {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bo-feature-items li {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    padding-left: 16px;
    position: relative;
}

.bo-feature-items li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--bo-red);
    font-weight: 700;
}

/* ============================================
   PROOF BANNER
   ============================================ */
.bo-proof {
    background: var(--bo-red);
    padding: 70px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bo-proof::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--bo-font-display);
    font-size: 300px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.bo-proof-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.bo-proof-quote {
    font-family: var(--bo-font-body);
    font-size: clamp(20px, 3vw, 26px);
    font-style: italic;
    line-height: 1.6;
    color: var(--bo-white);
    margin-bottom: 24px;
    font-weight: 500;
}

.bo-proof-author {
    font-family: var(--bo-font-cond);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   WHO IT'S FOR
   ============================================ */
.bo-for-who {
    background: var(--bo-cream);
    color: var(--bo-navy);
    padding: 90px 24px;
}

.bo-for-who-inner {
    max-width: 840px;
    margin: 0 auto;
}

.bo-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.bo-col-block {
    padding: 32px;
}

.bo-col-block.yes {
    background: var(--bo-navy);
    color: var(--bo-cream);
    border-top: 4px solid var(--bo-gold);
}

.bo-col-block.no {
    background: var(--bo-white);
    color: var(--bo-navy);
    border-top: 4px solid #CCC;
}

.bo-col-title {
    font-family: var(--bo-font-display);
    font-size: 34px;
    margin-bottom: 20px;
}

.bo-col-block.yes .bo-col-title {
    color: var(--bo-gold);
}

.bo-col-block.no .bo-col-title {
    color: var(--bo-gray);
}

.bo-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bo-col-list li {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.bo-col-block.yes .bo-col-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--bo-gold);
    font-weight: 700;
}

.bo-col-block.no .bo-col-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--bo-gray);
    font-weight: 700;
}

/* ============================================
   CONTENTS LIST
   ============================================ */
.bo-contents {
    background: var(--bo-navy);
    padding: 90px 24px;
}

.bo-contents-inner {
    max-width: 840px;
    margin: 0 auto;
}

.bo-contents-header {
    margin-bottom: 48px;
}

.bo-contents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bo-contents-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s;
}

.bo-contents-list li:last-child {
    border-bottom: none;
}

.bo-contents-list li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.bo-contents-num {
    font-family: var(--bo-font-display);
    font-size: 28px;
    color: var(--bo-red);
    min-width: 36px;
}

.bo-contents-text h4 {
    font-family: var(--bo-font-cond);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--bo-white);
    margin-bottom: 4px;
}

.bo-contents-text p {
    font-size: 14px;
    color: var(--bo-gray);
    line-height: 1.5;
}

/* ============================================
   VALUE STACK
   ============================================ */
.bo-value {
    background: var(--bo-navy2);
    padding: 90px 24px;
}

.bo-value-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.bo-value-stack {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
}

.bo-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bo-value-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bo-value-row-name {
    font-size: 16px;
    color: rgba(245, 240, 232, 0.8);
    text-align: left;
}

.bo-value-row-price {
    font-family: var(--bo-font-cond);
    font-size: 18px;
    font-weight: 700;
    color: var(--bo-gold);
}

.bo-value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: rgba(232, 184, 75, 0.08);
    border: 1px solid rgba(232, 184, 75, 0.2);
    margin-bottom: 40px;
}

.bo-value-total-label {
    font-family: var(--bo-font-cond);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bo-gold);
}

.bo-value-total-price {
    font-family: var(--bo-font-display);
    font-size: 42px;
    color: var(--bo-gold);
}

.bo-value-cta-box {
    background: var(--bo-navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.bo-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bo-price-strike {
    font-family: var(--bo-font-cond);
    font-size: 24px;
    color: var(--bo-gray);
    text-decoration: line-through;
}

.bo-price-main {
    font-family: var(--bo-font-display);
    font-size: 80px;
    color: var(--bo-white);
    line-height: 1;
}

.bo-price-currency {
    font-family: var(--bo-font-display);
    font-size: 40px;
    color: var(--bo-white);
    align-self: flex-start;
    margin-top: 12px;
}

.bo-price-once {
    font-size: 14px;
    color: var(--bo-gray);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.bo-guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: var(--bo-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   FAQ
   ============================================ */
.bo-faq {
    background: var(--bo-cream);
    color: var(--bo-navy);
    padding: 90px 24px;
}

.bo-faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.bo-faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
}

.bo-faq-item {
    border-bottom: 1px solid #D8D0C4;
}

.bo-faq-q {
    padding: 22px 0;
    font-family: var(--bo-font-cond);
    font-size: 19px;
    font-weight: 700;
    color: var(--bo-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.bo-faq-q .bo-arrow {
    font-size: 20px;
    color: var(--bo-red);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.bo-faq-item.open .bo-faq-q .bo-arrow {
    transform: rotate(90deg);
}

.bo-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 16px;
    line-height: 1.7;
    color: #3A4A5A;
}

.bo-faq-a-inner {
    padding: 0 0 22px;
}

.bo-faq-item.open .bo-faq-a {
    max-height: 400px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.bo-final-cta {
    background: var(--bo-navy);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bo-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 57, 10, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.bo-final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.bo-final-title {
    font-family: var(--bo-font-display);
    font-size: clamp(52px, 9vw, 96px);
    line-height: 0.95;
    color: var(--bo-white);
    margin-bottom: 24px;
}

.bo-final-title span {
    color: var(--bo-red);
}

.bo-final-sub {
    font-size: 18px;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.bo-footer {
    background: #080F16;
    padding: 32px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--bo-gray);
    letter-spacing: 0.03em;
}

.bo-footer a {
    color: var(--bo-gray);
    text-decoration: underline;
}

/* ============================================
   STICKY BAR
   ============================================ */
.bo-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bo-red);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.bo-sticky-bar.visible {
    transform: translateY(0);
}

.bo-sticky-bar-text {
    font-family: var(--bo-font-cond);
    font-size: 17px;
    font-weight: 700;
    color: var(--bo-white);
    letter-spacing: 0.05em;
}

.bo-sticky-bar .bo-btn-sm {
    display: inline-flex;
    align-items: center;
    background: var(--bo-white);
    color: var(--bo-red);
    font-family: var(--bo-font-cond);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 24px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    white-space: nowrap;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes boFadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bo-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bo-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .bo-two-col {
        grid-template-columns: 1fr;
    }

    .bo-value-cta-box {
        padding: 28px 20px;
    }

    .bo-price-main {
        font-size: 60px;
    }

    .bo-price-currency {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .bo-sticky-bar-text {
        display: none;
    }

    .bo-sticky-bar {
        justify-content: center;
    }
}

/* ============================================
   EDD PAGE STYLES (checkout, account, etc.)
   ============================================ */
.bo-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    min-height: 60vh;
}

.bo-page h1 {
    font-family: var(--bo-font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--bo-white);
    margin-bottom: 32px;
    text-align: center;
}

/* EDD form overrides */
.bo-page input[type="text"],
.bo-page input[type="email"],
.bo-page input[type="password"],
.bo-page textarea,
.bo-page select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bo-navy2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--bo-cream);
    font-size: 0.95rem;
    font-family: var(--bo-font-body);
    transition: border-color 0.2s ease;
}

.bo-page input:focus,
.bo-page textarea:focus,
.bo-page select:focus {
    outline: none;
    border-color: var(--bo-red);
    box-shadow: 0 0 0 3px rgba(200, 57, 10, 0.15);
}

.bo-page input[type="submit"],
.bo-page button[type="submit"],
.bo-page .edd-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--bo-red);
    color: var(--bo-white);
    font-family: var(--bo-font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
}

.bo-page input[type="submit"]:hover,
.bo-page button[type="submit"]:hover,
.bo-page .edd-submit:hover {
    background: var(--bo-red2);
    transform: translateY(-2px);
}

.bo-page label {
    display: block;
    font-family: var(--bo-font-cond);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bo-page a {
    color: var(--bo-gold);
}

.bo-page a:hover {
    color: var(--bo-red2);
}

.bo-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.bo-page th {
    font-family: var(--bo-font-cond);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bo-gold);
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid rgba(232, 184, 75, 0.2);
}

.bo-page td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
    color: rgba(245, 240, 232, 0.8);
}

.bo-page .edd-no-purchases,
.bo-page .edd-logged-in {
    text-align: center;
    padding: 40px 20px;
    color: var(--bo-gray);
    font-size: 1rem;
}

/* Separator */
.bo-page hr,
.bo-page .wp-block-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

.bo-page .wp-block-heading {
    font-family: var(--bo-font-display);
    font-size: 28px;
    color: var(--bo-gold);
    margin-bottom: 8px;
}

.bo-page p {
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* EDD login/register forms */
#edd_login_form,
#edd_register_form,
.edd-profile-editor-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

#edd_login_form p,
#edd_register_form p {
    margin-bottom: 16px;
}

/* EDD checkout */
#edd_checkout_form_wrap {
    color: var(--bo-cream);
}

.edd-cart-meta {
    color: var(--bo-gold);
}