/**
 * WholesaleBulkPeptides — Corporate Design System
 * Inspired by: Amazon Corporate, Eaze, Leafly
 * Version: 2.0.0
 *
 * Table of Contents:
 *  1.  CSS Custom Properties
 *  2.  Global Reset & Base
 *  3.  Typography
 *  4.  Header / Navigation
 *  5.  Mobile Menu
 *  6.  Hero Sections
 *  7.  Trust Badge Strip
 *  8.  Answer Summary
 *  9.  Section Layout
 * 10.  Card Grid System
 * 11.  Compound / Product Cards
 * 12.  Tier Pricing Tables
 * 13.  Key Facts Block
 * 14.  FAQ Accordion
 * 15.  CTA Blocks & Buttons
 * 16.  Footer
 * 17.  Breadcrumbs
 * 18.  Category Badges
 * 19.  MOQ Statement
 * 20.  RUO Disclaimer
 * 21.  References
 * 22.  Internal Links
 * 23.  How It Works Steps
 * 24.  Audience Segments
 * 25.  Specs Table
 * 26.  WooCommerce Overrides
 * 27.  Forms
 * 28.  Utilities
 * 29.  Animations
 * 30.  Responsive — Tablet
 * 31.  Responsive — Mobile
 */

/* =========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================= */

:root {
    /* Core palette */
    --wbp-navy:           #0f1b2d;
    --wbp-dark:           #131921;
    --wbp-dark-alt:       #1a2332;
    --wbp-accent:         #f4a233;
    --wbp-accent-hover:   #e6911f;
    --wbp-accent-light:   rgba(244, 162, 51, 0.1);
    --wbp-teal:           #00a8a8;
    --wbp-teal-hover:     #008f8f;
    --wbp-teal-light:     rgba(0, 168, 168, 0.08);

    /* Backgrounds */
    --wbp-bg:             #ffffff;
    --wbp-bg-light:       #f5f7fa;
    --wbp-bg-alt:         #f8fafc;
    --wbp-bg-blue:        #f0f9ff;
    --wbp-bg-warm:        #fffbeb;

    /* Text */
    --wbp-text:           #1a1a2e;
    --wbp-text-secondary: #4a5568;
    --wbp-text-muted:     #718096;
    --wbp-text-light:     rgba(255, 255, 255, 0.85);

    /* Borders */
    --wbp-border:         #e3e6e8;
    --wbp-border-light:   #edf2f7;

    /* Status */
    --wbp-success:        #38a169;
    --wbp-warning:        #dd6b20;
    --wbp-info:           #3182ce;

    /* Typography */
    --wbp-font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --wbp-mono:           'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;

    /* Spacing */
    --wbp-container:      1200px;
    --wbp-container-sm:   840px;
    --wbp-section-y:      80px;
    --wbp-section-x:      24px;
    --wbp-gap:            24px;
    --wbp-gap-lg:         48px;

    /* Radius */
    --wbp-radius:         8px;
    --wbp-radius-lg:      12px;
    --wbp-radius-xl:      16px;
    --wbp-radius-pill:    100px;

    /* Shadows */
    --wbp-shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.06);
    --wbp-shadow:         0 4px 12px rgba(0, 0, 0, 0.08);
    --wbp-shadow-lg:      0 8px 30px rgba(0, 0, 0, 0.1);
    --wbp-shadow-hover:   0 12px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --wbp-transition:     0.2s ease;
    --wbp-transition-slow: 0.3s ease;

    /* Header */
    --wbp-header-h:       72px;
}

/* =========================================================================
   2. GLOBAL RESET & BASE
   ========================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

html {
    -webkit-text-size-adjust: 100%;
}

body.wbp-corporate {
    font-family: var(--wbp-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--wbp-text);
    background: var(--wbp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--wbp-header-h);
}

body.wbp-corporate img {
    max-width: 100%;
    height: auto;
}

body.wbp-corporate a {
    color: var(--wbp-teal);
    text-decoration: none;
    transition: color var(--wbp-transition);
}

body.wbp-corporate a:hover {
    color: var(--wbp-teal-hover);
}

/* =========================================================================
   3. TYPOGRAPHY
   ========================================================================= */

body.wbp-corporate h1,
body.wbp-corporate h2,
body.wbp-corporate h3,
body.wbp-corporate h4,
body.wbp-corporate h5,
body.wbp-corporate h6 {
    font-family: var(--wbp-font);
    font-weight: 700;
    color: var(--wbp-text);
    line-height: 1.25;
    margin-top: 0;
}

body.wbp-corporate h1 { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.02em; }
body.wbp-corporate h2 { font-size: 2rem; letter-spacing: -0.01em; }
body.wbp-corporate h3 { font-size: 1.5rem; }
body.wbp-corporate h4 { font-size: 1.25rem; }
body.wbp-corporate h5 { font-size: 1.125rem; }
body.wbp-corporate h6 { font-size: 1rem; }

body.wbp-corporate p {
    margin-bottom: 1.25em;
    color: var(--wbp-text-secondary);
}

.wbp-mono,
body.wbp-corporate code,
body.wbp-corporate .wbp-specs-table .wbp-mono {
    font-family: var(--wbp-mono);
    font-size: 0.9em;
    letter-spacing: -0.02em;
}

/* Section title with underline accent */
.wbp-section-title {
    text-align: center;
    margin-bottom: var(--wbp-gap-lg);
    position: relative;
    padding-bottom: 20px;
}

.wbp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--wbp-accent);
    border-radius: 2px;
}

.wbp-section-title.wbp-left-align {
    text-align: left;
}

.wbp-section-title.wbp-left-align::after {
    left: 0;
    transform: none;
}

.wbp-section-subtitle {
    font-size: 1.125rem;
    color: var(--wbp-text-muted);
    max-width: 640px;
    margin: 16px auto 0;
    text-align: center;
}

/* =========================================================================
   4. HEADER / NAVIGATION
   ========================================================================= */

.wbp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--wbp-header-h);
    background: var(--wbp-navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.wbp-header-inner {
    width: 100%;
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding: 0 var(--wbp-section-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.wbp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.wbp-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.wbp-logo-full {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    display: none;
}

@media (min-width: 1100px) {
    .wbp-logo-full {
        display: inline;
    }
}

/* Primary Nav */
.wbp-nav-primary {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wbp-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.wbp-nav-list li {
    position: relative;
}

.wbp-nav-list li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--wbp-transition);
    white-space: nowrap;
}

.wbp-nav-list li a:hover,
.wbp-nav-list li.current-menu-item > a,
.wbp-nav-list li.current_page_item > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.wbp-nav-list li.current-menu-item > a::after,
.wbp-nav-list li.current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--wbp-accent);
    border-radius: 2px;
}

/* Dropdown */
.wbp-nav-list li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--wbp-dark);
    border-radius: var(--wbp-radius);
    box-shadow: var(--wbp-shadow-lg);
    padding: 8px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wbp-nav-list li:hover > ul.sub-menu {
    display: block;
}

.wbp-nav-list li ul.sub-menu li a {
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0;
    padding: 10px 14px;
}

/* Header Actions */
.wbp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.wbp-header-actions .wbp-cta-primary {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

/* Hamburger */
.wbp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.wbp-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.wbp-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--wbp-transition);
}

/* =========================================================================
   5. MOBILE MENU
   ========================================================================= */

.wbp-mobile-menu {
    position: fixed;
    top: var(--wbp-header-h);
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: calc(100vh - var(--wbp-header-h));
    background: var(--wbp-navy);
    z-index: 9998;
    overflow-y: auto;
    transition: right var(--wbp-transition-slow);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.wbp-mobile-menu.wbp-mobile-open {
    right: 0;
}

.wbp-mobile-menu-inner {
    padding: 24px;
}

.wbp-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wbp-mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--wbp-transition);
}

.wbp-mobile-nav-list li a:hover {
    color: var(--wbp-accent);
}

.wbp-cta-mobile {
    display: block;
    text-align: center;
    margin-top: 24px;
    width: 100%;
}

/* Body overlay when mobile menu open */
body.wbp-mobile-active::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
}

/* =========================================================================
   6. HERO SECTIONS
   ========================================================================= */

.wbp-hero {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, #1a365d 50%, var(--wbp-navy) 100%);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.wbp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 162, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.wbp-hero-inner {
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding: 0 var(--wbp-section-x);
    position: relative;
    z-index: 1;
}

/* Override body.wbp-corporate h1 specificity (0,1,2) with (0,2,2) */
body.wbp-corporate .wbp-hero h1,
body.wbp-corporate .wbp-hero__title,
body.wbp-corporate .wbp-compound-hero h1,
body.wbp-corporate .wbp-shop-hero h1,
body.wbp-corporate .wbp-final-cta h2,
body.wbp-corporate .wbp-final-cta__title {
    color: #fff;
}

.wbp-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    letter-spacing: -0.03em;
}

/* Override body.wbp-corporate p specificity for hero subtitles */
body.wbp-corporate .wbp-hero p,
body.wbp-corporate .wbp-hero-subtitle,
body.wbp-corporate .wbp-hero__subtitle,
body.wbp-corporate .wbp-final-cta p,
body.wbp-corporate .wbp-final-cta__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.wbp-hero-subtitle {
    color: var(--wbp-text-light);
    font-size: 1.2rem;
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 36px;
}

.wbp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Lighter hero variant for sub-pages */
.wbp-hero-light {
    background: linear-gradient(135deg, #1d2327 0%, #3c4349 100%);
    padding: 56px 0 48px;
}

.wbp-hero-light h1 {
    font-size: 2.25rem;
}

/* Compound hero */
.wbp-compound-hero {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, #1a2744 60%, #1e3a5f 100%);
    padding: 48px 0 40px;
}

.wbp-compound-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.wbp-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.wbp-hero-byline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Generic page hero — injected by functions.php on standard pages */
.wbp-page-hero {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, #1a2744 60%, #1e3a5f 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.wbp-page-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

body.wbp-corporate .wbp-page-hero h1,
body.wbp-corporate .wbp-page-hero__title {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

body.wbp-corporate .wbp-page-hero p,
body.wbp-corporate .wbp-page-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0;
}

/* Generic page content area — proper padding for standard pages */
body.wbp-corporate.page:not(.page-template-template-homepage-php) .entry-content,
body.wbp-corporate.page:not(.page-template-template-homepage-php) .inside-article {
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding: 48px var(--wbp-section-x) 64px;
}

/* When page hero is present, hide the intro hero card from page content.
   The card is a classless <div> with inline navy background containing an H1.
   Our generic page hero already provides the title + subtitle. */
body.page:not(.page-template-template-homepage-php) .entry-content > div:has(> h1:first-child) {
    display: none;
}
/* Fallback for older browsers: at minimum hide the duplicate H1 */
body.page:not(.page-template-template-homepage-php) .entry-content > div > h1:first-child {
    display: none;
}

/* Show entry-header on pages that have no custom hero
   (generic pages still need breadcrumbs etc. from entry header) */
body.wbp-corporate.page:not(.page-template-template-homepage-php) article.page .entry-header {
    display: none; /* still hidden — hero handles the title */
}

/* Catalog archive hero (compound CPT archive) */
.wbp-catalog-hero {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, #1a2744 60%, #1e3a5f 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

body.wbp-corporate .wbp-catalog-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

body.wbp-corporate .wbp-catalog-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0;
    line-height: 1.6;
}

/* Compound catalog grid */
.wbp-catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.wbp-catalog-filters a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--wbp-border);
    color: var(--wbp-text);
    background: #fff;
    transition: all var(--wbp-transition);
}

.wbp-catalog-filters a:hover,
.wbp-catalog-filters a.active {
    background: var(--wbp-navy);
    color: #fff;
    border-color: var(--wbp-navy);
}

.wbp-compound-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.wbp-compound-card {
    background: #fff;
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius);
    padding: 28px;
    transition: all var(--wbp-transition);
    display: flex;
    flex-direction: column;
}

.wbp-compound-card:hover {
    border-color: var(--wbp-teal);
    box-shadow: var(--wbp-shadow-md);
    transform: translateY(-2px);
}

.wbp-compound-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wbp-heading);
    margin: 0 0 6px;
}

.wbp-compound-card__name a {
    color: inherit;
    text-decoration: none;
}

.wbp-compound-card__name a:hover {
    color: var(--wbp-teal);
}

.wbp-compound-card__cas {
    font-size: 0.8125rem;
    color: var(--wbp-text-muted);
    font-family: var(--wbp-mono);
    margin-bottom: 12px;
}

.wbp-compound-card__excerpt {
    font-size: 0.9375rem;
    color: var(--wbp-text);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
    /* Clamp to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wbp-compound-card__apps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.wbp-compound-card__apps span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--wbp-bg-blue);
    color: var(--wbp-teal);
}

.wbp-compound-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wbp-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--wbp-transition);
}

.wbp-compound-card__link:hover {
    gap: 10px;
}

/* =========================================================================
   7. TRUST BADGE STRIP
   ========================================================================= */

.wbp-trust-strip {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wbp-radius-lg);
}

.wbp-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.wbp-trust-badge svg,
.wbp-trust-badge .wbp-trust-icon {
    width: 22px;
    height: 22px;
    color: var(--wbp-teal);
    flex-shrink: 0;
}

.wbp-trust-badge .wbp-check-icon {
    color: var(--wbp-success);
}

/* On-page (non-hero) trust strip */
.wbp-trust-strip-light {
    background: var(--wbp-bg-light);
    border: 1px solid var(--wbp-border);
    padding: 24px 32px;
    border-radius: var(--wbp-radius-lg);
    gap: 32px;
    justify-content: center;
}

.wbp-trust-strip-light .wbp-trust-badge {
    color: var(--wbp-text-secondary);
}

/* =========================================================================
   8. ANSWER SUMMARY
   ========================================================================= */

.wbp-answer-summary {
    background: var(--wbp-bg-blue);
    border-left: 4px solid var(--wbp-teal);
    border-radius: 0 var(--wbp-radius) var(--wbp-radius) 0;
    padding: 24px 32px;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--wbp-text);
}

/* When the answer-summary is inside a full-width section wrapper */
section.wbp-answer-summary {
    padding: 56px 0;
    border-left: none;
    border-radius: 0;
}

section.wbp-answer-summary .wbp-container {
    border-left: 4px solid var(--wbp-teal);
    border-radius: 0 var(--wbp-radius) var(--wbp-radius) 0;
    padding: 24px 32px;
}

.wbp-answer-summary p {
    color: var(--wbp-text);
    margin-bottom: 0;
}

.wbp-answer-summary p:last-child {
    margin-bottom: 0;
}

/* =========================================================================
   9. SECTION LAYOUT
   ========================================================================= */

.wbp-section {
    padding: var(--wbp-section-y) 0;
}

.wbp-section-alt {
    background: var(--wbp-bg-light);
}

.wbp-section-dark {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, var(--wbp-dark-alt) 100%);
    color: #fff;
}

.wbp-section-dark h2,
.wbp-section-dark h3,
.wbp-section-dark p {
    color: #fff;
}

.wbp-section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.wbp-container {
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding: 0 var(--wbp-section-x);
}

.wbp-container-sm {
    max-width: var(--wbp-container-sm);
    margin: 0 auto;
    padding: 0 var(--wbp-section-x);
}

.wbp-content-area {
    max-width: var(--wbp-container-sm);
    margin: 0 auto;
}

/* =========================================================================
   10. CARD GRID SYSTEM
   ========================================================================= */

.wbp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--wbp-gap);
}

.wbp-card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wbp-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wbp-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wbp-card {
    background: var(--wbp-bg);
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius-lg);
    padding: 32px;
    transition: all var(--wbp-transition-slow);
    position: relative;
}

.wbp-card:hover {
    box-shadow: var(--wbp-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--wbp-accent);
}

.wbp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.wbp-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wbp-radius);
    background: var(--wbp-teal-light);
    color: var(--wbp-teal);
    margin-bottom: 20px;
}

.wbp-card-icon svg {
    width: 24px;
    height: 24px;
}

.wbp-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--wbp-text);
}

.wbp-card p {
    font-size: 0.9375rem;
    color: var(--wbp-text-secondary);
    line-height: 1.65;
}

.wbp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wbp-teal);
}

.wbp-card-link:hover {
    gap: 10px;
}

/* =========================================================================
   11. COMPOUND / PRODUCT CARDS
   ========================================================================= */

.wbp-product-card {
    background: var(--wbp-bg);
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    transition: all var(--wbp-transition-slow);
}

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

.wbp-product-card-image {
    background: var(--wbp-bg-light);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.wbp-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wbp-product-card-placeholder {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
}

.wbp-product-card-body {
    padding: 24px;
}

.wbp-product-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.wbp-product-card h3 a {
    color: var(--wbp-text);
    text-decoration: none;
}

.wbp-product-card h3 a:hover {
    color: var(--wbp-teal);
}

.wbp-product-card-excerpt {
    font-size: 0.875rem;
    color: var(--wbp-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wbp-product-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wbp-product-card-meta span {
    font-size: 0.75rem;
    color: var(--wbp-text-muted);
    background: var(--wbp-bg-light);
    padding: 4px 10px;
    border-radius: var(--wbp-radius-pill);
}

.wbp-product-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wbp-accent);
    margin-bottom: 4px;
}

.wbp-product-card-price-subtitle {
    font-size: 0.8125rem;
    color: var(--wbp-text-muted);
    margin-bottom: 16px;
}

.wbp-product-card-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background: var(--wbp-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--wbp-radius);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--wbp-transition);
}

.wbp-product-card-btn:hover,
.wbp-product-card-btn:focus-visible {
    background: var(--wbp-accent);
    color: var(--wbp-dark);
}

/* =========================================================================
   12. TIER PRICING TABLES
   ========================================================================= */

.wbp-tier-summary {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wbp-border);
    margin: 24px 0;
}

.wbp-tier-summary thead th {
    background: var(--wbp-navy);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 24px;
    text-align: left;
}

.wbp-tier-summary tbody td {
    padding: 14px 24px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--wbp-border-light);
    color: var(--wbp-text-secondary);
}

.wbp-tier-summary tbody tr:nth-child(even) {
    background: var(--wbp-bg-alt);
}

.wbp-tier-summary tbody tr:last-child td {
    border-bottom: none;
}

.wbp-tier-summary tbody tr:hover {
    background: var(--wbp-accent-light);
}

.wbp-tier-summary tbody tr.wbp-tier-best td {
    border-left: 3px solid var(--wbp-accent);
    font-weight: 600;
    color: var(--wbp-text);
}

.wbp-tier-note {
    font-size: 0.875rem;
    color: var(--wbp-text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* =========================================================================
   13. KEY FACTS BLOCK
   ========================================================================= */

.wbp-key-facts {
    background: var(--wbp-bg-light);
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    margin: 32px 0;
}

.wbp-key-facts dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wbp-key-facts .wbp-fact-row {
    display: flex;
    padding: 14px 24px;
    border-bottom: 1px solid var(--wbp-border-light);
}

.wbp-key-facts .wbp-fact-row:nth-child(even) {
    background: var(--wbp-bg);
}

.wbp-key-facts .wbp-fact-row:last-child {
    border-bottom: none;
}

.wbp-key-facts dt,
.wbp-fact-label {
    font-weight: 600;
    color: var(--wbp-text);
    font-size: 0.875rem;
    min-width: 160px;
    flex-shrink: 0;
}

.wbp-key-facts dd,
.wbp-fact-value {
    color: var(--wbp-text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* Specs table variant */
.wbp-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.wbp-specs-table tr {
    border-bottom: 1px solid var(--wbp-border-light);
}

.wbp-specs-table tr:last-child {
    border-bottom: none;
}

.wbp-specs-table th {
    text-align: left;
    padding: 12px 20px 12px 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--wbp-text);
    width: 35%;
    vertical-align: top;
}

.wbp-specs-table td {
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--wbp-text-secondary);
    word-break: break-word;
}

/* =========================================================================
   14. FAQ ACCORDION
   ========================================================================= */

.wbp-faq-section {
    margin: 40px 0;
}

.wbp-faq-item {
    border-bottom: 1px solid var(--wbp-border);
}

.wbp-faq-item:first-child {
    border-top: 1px solid var(--wbp-border);
}

.wbp-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--wbp-text);
    cursor: pointer;
    list-style: none;
    transition: background var(--wbp-transition);
}

.wbp-faq-item summary::-webkit-details-marker {
    display: none;
}

.wbp-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--wbp-accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--wbp-transition);
}

.wbp-faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(0deg);
}

.wbp-faq-item summary:hover {
    background: var(--wbp-bg-light);
    border-radius: var(--wbp-radius);
}

.wbp-faq-answer {
    padding: 0 4px 24px;
    color: var(--wbp-text-secondary);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.wbp-faq-answer p {
    margin-bottom: 0.75em;
}

/* =========================================================================
   15. CTA BLOCKS & BUTTONS
   ========================================================================= */

.wbp-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--wbp-accent);
    color: #fff !important;
    font-size: 0.9375rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--wbp-radius);
    text-decoration: none;
    transition: all var(--wbp-transition);
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

.wbp-cta-primary:hover {
    background: var(--wbp-accent-hover);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 162, 51, 0.3);
}

.wbp-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--wbp-radius);
    text-decoration: none;
    transition: all var(--wbp-transition);
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

.wbp-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Dark variant (for light backgrounds) */
.wbp-cta-secondary-dark {
    color: var(--wbp-text);
    border-color: var(--wbp-border);
}

.wbp-cta-secondary-dark:hover {
    background: var(--wbp-dark);
    color: #fff;
    border-color: var(--wbp-dark);
}

/* CTA block section */
.wbp-cta-block {
    background: linear-gradient(135deg, var(--wbp-navy) 0%, #1a365d 100%);
    padding: 72px 0;
    text-align: center;
}

.wbp-cta-block h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.wbp-cta-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 36px;
}

.wbp-cta-block .wbp-hero-actions {
    justify-content: center;
}

/* Small button */
.wbp-btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* =========================================================================
   16. FOOTER
   ========================================================================= */

.wbp-footer {
    background: var(--wbp-navy);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
}

.wbp-footer-main {
    padding: 64px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wbp-footer-inner {
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding: 0 var(--wbp-section-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

body.wbp-corporate .wbp-footer h4,
body.wbp-corporate .wbp-footer-heading,
.wbp-footer h4,
.wbp-footer-heading {
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.wbp-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wbp-footer-links li {
    margin-bottom: 10px;
}

.wbp-footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--wbp-transition);
}

.wbp-footer-links li a:hover {
    color: #fff;
}

.wbp-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wbp-footer-contact li {
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.wbp-footer-contact li strong {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 2px;
}

.wbp-footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.wbp-footer-contact a:hover {
    color: var(--wbp-accent);
}

.wbp-footer-col-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wbp-footer-col-cta .wbp-cta-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

.wbp-footer-tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
}

/* Bottom bar */
.wbp-footer-bottom {
    padding: 24px 0;
}

.wbp-footer-bottom .wbp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.wbp-footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.wbp-ruo-footer {
    max-width: 600px;
    font-size: 0.75rem !important;
    line-height: 1.6;
}

.wbp-footer-legal {
    display: flex;
    gap: 20px;
}

.wbp-footer-legal a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    text-decoration: none;
}

.wbp-footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================================================
   17. BREADCRUMBS
   ========================================================================= */

.wbp-breadcrumbs {
    padding: 16px 0;
    font-size: 0.8125rem;
    max-width: var(--wbp-container);
    margin: 0 auto;
    padding-left: var(--wbp-section-x);
    padding-right: var(--wbp-section-x);
}

.wbp-bc-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.wbp-bc-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wbp-bc-item a {
    color: var(--wbp-teal);
    text-decoration: none;
}

.wbp-bc-item a:hover {
    text-decoration: underline;
}

.wbp-bc-sep {
    color: var(--wbp-text-muted);
    margin: 0 4px;
}

.wbp-bc-current {
    color: var(--wbp-text-muted);
}

/* =========================================================================
   18. CATEGORY BADGES
   ========================================================================= */

.wbp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: var(--wbp-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.wbp-badge-healing        { background: #e6fffa; color: #047857; }
.wbp-badge-weight         { background: #fef3c7; color: #92400e; }
.wbp-badge-longevity      { background: #ede9fe; color: #5b21b6; }
.wbp-badge-cognitive      { background: #dbeafe; color: #1e40af; }
.wbp-badge-cosmetic       { background: #fce7f3; color: #9d174d; }
.wbp-badge-growth         { background: #dcfce7; color: #166534; }
.wbp-badge-melanocortin   { background: #fed7aa; color: #9a3412; }
.wbp-badge-immune         { background: #e0e7ff; color: #3730a3; }
.wbp-badge-default        { background: var(--wbp-bg-light); color: var(--wbp-text-secondary); }
.wbp-badge-teal           { background: var(--wbp-teal-light); color: var(--wbp-teal); }

/* Category filter bar */
.wbp-filter-bar {
    display: flex;
    gap: 8px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
}

.wbp-filter-bar::-webkit-scrollbar {
    height: 4px;
}

.wbp-filter-bar::-webkit-scrollbar-track {
    background: transparent;
}

.wbp-filter-bar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.wbp-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--wbp-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--wbp-transition);
}

.wbp-filter-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.wbp-filter-pill.active {
    background: var(--wbp-accent);
    color: #fff;
    border-color: var(--wbp-accent);
}

.wbp-filter-count {
    opacity: 0.65;
    font-size: 0.75rem;
}

/* =========================================================================
   19. MOQ STATEMENT
   ========================================================================= */

.wbp-moq-statement {
    background: var(--wbp-bg-warm);
    border: 1px solid #fbbf24;
    border-radius: var(--wbp-radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.wbp-moq-statement strong {
    color: var(--wbp-text);
}

.wbp-moq-statement ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.wbp-moq-statement li {
    padding: 6px 0;
    font-size: 0.9375rem;
    color: var(--wbp-text-secondary);
    display: flex;
    gap: 10px;
}

.wbp-moq-statement li::before {
    content: '>';
    color: var(--wbp-accent);
    font-weight: 700;
}

/* =========================================================================
   20. RUO DISCLAIMER
   ========================================================================= */

.wbp-ruo-disclaimer {
    background: #f8f8f8;
    border-top: 1px solid var(--wbp-border);
    padding: 24px;
    text-align: center;
}

.wbp-ruo-disclaimer p {
    max-width: 960px;
    margin: 0 auto;
    font-size: 0.8125rem;
    color: var(--wbp-text-muted);
    line-height: 1.7;
}

.wbp-ruo-disclaimer strong {
    color: var(--wbp-text-secondary);
}

/* =========================================================================
   21. REFERENCES
   ========================================================================= */

.wbp-references {
    margin: 40px 0;
}

.wbp-references h2 {
    margin-bottom: 20px;
}

.wbp-references ol {
    margin: 0;
    padding: 0 0 0 24px;
}

.wbp-references li {
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--wbp-text-secondary);
    line-height: 1.6;
}

.wbp-references li a {
    color: var(--wbp-teal);
    text-decoration: none;
    word-break: break-word;
}

.wbp-references li a:hover {
    text-decoration: underline;
}

.wbp-ref-year {
    color: var(--wbp-text-muted);
    font-size: 0.8125rem;
}

/* =========================================================================
   22. INTERNAL LINKS
   ========================================================================= */

.wbp-internal-links {
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid var(--wbp-border);
}

.wbp-internal-links h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.wbp-link-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.wbp-link-card {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-left: 3px solid var(--wbp-teal);
    background: var(--wbp-bg-light);
    border-radius: 0 var(--wbp-radius) var(--wbp-radius) 0;
    text-decoration: none;
    transition: all var(--wbp-transition);
    min-width: 0;
}

.wbp-link-card:hover {
    background: var(--wbp-teal-light);
    border-left-color: var(--wbp-accent);
}

.wbp-link-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wbp-text);
}

.wbp-link-card-arrow {
    color: var(--wbp-teal);
    font-size: 1.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* =========================================================================
   23. HOW IT WORKS STEPS
   ========================================================================= */

.wbp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin: 48px 0;
}

/* Connecting line */
.wbp-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: var(--wbp-border);
    z-index: 0;
}

.wbp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.wbp-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wbp-accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(244, 162, 51, 0.3);
}

.wbp-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wbp-step p {
    font-size: 0.875rem;
    color: var(--wbp-text-muted);
    line-height: 1.55;
}

/* Dark background steps */
.wbp-section-dark .wbp-steps::before {
    background: rgba(255, 255, 255, 0.15);
}

.wbp-section-dark .wbp-step h4 {
    color: #fff;
}

/* =========================================================================
   24. AUDIENCE SEGMENTS
   ========================================================================= */

.wbp-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wbp-audience-card {
    background: var(--wbp-bg);
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius-lg);
    padding: 32px;
    transition: all var(--wbp-transition-slow);
}

.wbp-audience-card:hover {
    box-shadow: var(--wbp-shadow);
    transform: translateY(-2px);
}

.wbp-audience-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--wbp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.wbp-audience-card:nth-child(1) .wbp-audience-icon { background: #dbeafe; }
.wbp-audience-card:nth-child(2) .wbp-audience-icon { background: #fef3c7; }
.wbp-audience-card:nth-child(3) .wbp-audience-icon { background: #dcfce7; }
.wbp-audience-card:nth-child(4) .wbp-audience-icon { background: #ede9fe; }

.wbp-audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.wbp-audience-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* =========================================================================
   25. SPECS TABLE (COMPOUND)
   ========================================================================= */

.wbp-compound-specs {
    background: var(--wbp-bg-light);
    border-radius: var(--wbp-radius-lg);
    border: 1px solid var(--wbp-border);
    overflow: hidden;
    margin: 32px 0;
}

.wbp-compound-specs table {
    width: 100%;
    border-collapse: collapse;
}

.wbp-compound-specs tr:not(:last-child) {
    border-bottom: 1px solid var(--wbp-border-light);
}

.wbp-compound-specs th {
    text-align: left;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--wbp-text);
    background: var(--wbp-bg-alt);
    width: 200px;
}

.wbp-compound-specs td {
    padding: 14px 24px;
    font-size: 0.9375rem;
    color: var(--wbp-text-secondary);
    background: var(--wbp-bg);
    word-break: break-word;
}

.wbp-compound-specs td .wbp-mono {
    font-family: var(--wbp-mono);
    font-size: 0.875rem;
    color: var(--wbp-text);
}

/* =========================================================================
   26. WOOCOMMERCE OVERRIDES
   ========================================================================= */

body.wbp-corporate .woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

body.wbp-corporate .woocommerce .products li.product {
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    transition: all var(--wbp-transition-slow);
    margin: 0;
    float: none;
    width: auto;
    padding: 0;
}

body.wbp-corporate .woocommerce .products li.product:hover {
    box-shadow: var(--wbp-shadow-hover);
    transform: translateY(-2px);
}

body.wbp-corporate .woocommerce .products li.product img {
    border-radius: 0;
    margin-bottom: 0;
}

body.wbp-corporate .woocommerce .products li.product .woocommerce-loop-product__title {
    padding: 16px 20px 0;
    font-size: 1rem;
    color: var(--wbp-text);
}

body.wbp-corporate .woocommerce .products li.product .price {
    padding: 8px 20px;
    font-size: 1.125rem;
    color: var(--wbp-accent);
    font-weight: 700;
}

body.wbp-corporate .woocommerce .products li.product .button {
    display: block;
    margin: 12px 20px 20px;
    text-align: center;
    background: var(--wbp-dark);
    color: #fff;
    border: none;
    border-radius: var(--wbp-radius);
    padding: 12px 0;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background var(--wbp-transition);
}

body.wbp-corporate .woocommerce .products li.product .button:hover {
    background: var(--wbp-navy);
}

/* Single product */
body.wbp-corporate .woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none;
    padding: 0;
    margin: 32px 0 0;
}

body.wbp-corporate .woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 0;
    margin-right: 24px;
}

body.wbp-corporate .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 600;
    color: var(--wbp-text-muted);
    padding: 12px 0;
}

body.wbp-corporate .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--wbp-accent);
}

body.wbp-corporate .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--wbp-text);
}

/* Add to cart button */
body.wbp-corporate .woocommerce .single_add_to_cart_button {
    background: var(--wbp-accent) !important;
    color: #fff !important;
    border: none;
    border-radius: var(--wbp-radius);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--wbp-transition);
}

body.wbp-corporate .woocommerce .single_add_to_cart_button:hover {
    background: var(--wbp-accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 162, 51, 0.3);
}

/* Cart & Checkout */
body.wbp-corporate .woocommerce table.shop_table {
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wbp-border);
}

body.wbp-corporate .woocommerce table.shop_table th {
    background: var(--wbp-bg-light);
    font-weight: 600;
}

body.wbp-corporate .woocommerce #payment #place_order {
    background: var(--wbp-accent);
    font-weight: 700;
    border-radius: var(--wbp-radius);
    transition: all var(--wbp-transition);
}

body.wbp-corporate .woocommerce #payment #place_order:hover {
    background: var(--wbp-accent-hover);
}

/* =========================================================================
   27. FORMS
   ========================================================================= */

body.wbp-corporate input[type="text"],
body.wbp-corporate input[type="email"],
body.wbp-corporate input[type="tel"],
body.wbp-corporate input[type="url"],
body.wbp-corporate input[type="number"],
body.wbp-corporate input[type="password"],
body.wbp-corporate select,
body.wbp-corporate textarea {
    font-family: var(--wbp-font);
    font-size: 1rem;
    padding: 12px 16px;
    border: 1px solid var(--wbp-border);
    border-radius: var(--wbp-radius);
    background: var(--wbp-bg);
    color: var(--wbp-text);
    width: 100%;
    transition: border-color var(--wbp-transition), box-shadow var(--wbp-transition);
    line-height: 1.5;
}

body.wbp-corporate input:focus,
body.wbp-corporate select:focus,
body.wbp-corporate textarea:focus {
    outline: none;
    border-color: var(--wbp-teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.12);
}

body.wbp-corporate label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--wbp-text);
    margin-bottom: 8px;
}

body.wbp-corporate input[type="submit"],
body.wbp-corporate button[type="submit"] {
    background: var(--wbp-accent);
    color: #fff;
    font-family: var(--wbp-font);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 40px;
    border: none;
    border-radius: var(--wbp-radius);
    cursor: pointer;
    transition: all var(--wbp-transition);
}

body.wbp-corporate input[type="submit"]:hover,
body.wbp-corporate button[type="submit"]:hover {
    background: var(--wbp-accent-hover);
    transform: translateY(-1px);
}

/* Contact Form 7 */
body.wbp-corporate .wpcf7 {
    max-width: 640px;
    margin: 0 auto;
}

body.wbp-corporate .wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

/* =========================================================================
   28. UTILITIES
   ========================================================================= */

.wbp-text-center { text-align: center; }
.wbp-text-left   { text-align: left; }
.wbp-text-right  { text-align: right; }

.wbp-mt-0  { margin-top: 0; }
.wbp-mt-1  { margin-top: 12px; }
.wbp-mt-2  { margin-top: 24px; }
.wbp-mt-3  { margin-top: 48px; }
.wbp-mb-0  { margin-bottom: 0; }
.wbp-mb-1  { margin-bottom: 12px; }
.wbp-mb-2  { margin-bottom: 24px; }
.wbp-mb-3  { margin-bottom: 48px; }

.wbp-flex        { display: flex; }
.wbp-flex-center { display: flex; align-items: center; justify-content: center; }
.wbp-flex-gap    { gap: 16px; }
.wbp-flex-wrap   { flex-wrap: wrap; }

.wbp-hidden { display: none; }

.wbp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Wholesale pricing highlight box */
.wbp-wholesale-cta-box {
    background: linear-gradient(135deg, var(--wbp-accent-light) 0%, rgba(244, 162, 51, 0.05) 100%);
    border: 2px solid var(--wbp-accent);
    border-radius: var(--wbp-radius-lg);
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}

.wbp-wholesale-cta-box h3 {
    color: var(--wbp-text);
    margin-bottom: 8px;
}

.wbp-wholesale-cta-box .wbp-price-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wbp-accent);
    margin: 12px 0;
}

/* Margin economics table */
.wbp-margin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--wbp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wbp-border);
    margin: 24px 0;
}

.wbp-margin-table thead th {
    background: var(--wbp-success);
    color: #fff;
    padding: 14px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wbp-margin-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--wbp-border-light);
    font-size: 0.9375rem;
}

.wbp-margin-table tbody tr:nth-child(even) {
    background: var(--wbp-bg-alt);
}

/* =========================================================================
   29. ANIMATIONS
   ========================================================================= */

@keyframes wbpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wbp-animate-in {
    animation: wbpFadeInUp 0.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .wbp-animate-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* =========================================================================
   30. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================= */

@media (max-width: 1024px) {
    :root {
        --wbp-section-y: 56px;
    }

    body.wbp-corporate h1 { font-size: 2.25rem; }
    body.wbp-corporate h2 { font-size: 1.75rem; }

    .wbp-hero h1 { font-size: 2.5rem; }

    .wbp-nav-primary { display: none; }
    .wbp-mobile-toggle { display: flex; }

    .wbp-card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .wbp-card-grid-4 { grid-template-columns: repeat(2, 1fr); }

    .wbp-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .wbp-steps::before { display: none; }

    .wbp-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wbp-footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .wbp-compound-specs th {
        width: 160px;
    }

    .wbp-page-hero h1,
    body.wbp-corporate .wbp-page-hero__title {
        font-size: 1.875rem;
    }

    .wbp-catalog-hero h1,
    body.wbp-corporate .wbp-catalog-hero h1 {
        font-size: 2rem;
    }

    .wbp-compound-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================================
   31. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================= */

@media (max-width: 768px) {
    :root {
        --wbp-section-y: 48px;
        --wbp-section-x: 16px;
        --wbp-gap: 16px;
    }

    body.wbp-corporate {
        font-size: 15px;
        padding-top: 64px;
    }

    .wbp-header {
        height: 64px;
    }

    body.wbp-corporate h1 { font-size: 1.75rem; }
    body.wbp-corporate h2 { font-size: 1.5rem; }
    body.wbp-corporate h3 { font-size: 1.25rem; }

    .wbp-hero {
        padding: 48px 0 40px;
    }

    .wbp-hero h1 {
        font-size: 1.875rem;
    }

    .wbp-hero-subtitle {
        font-size: 1rem;
    }

    .wbp-hero-actions {
        flex-direction: column;
    }

    .wbp-hero-actions .wbp-cta-primary,
    .wbp-hero-actions .wbp-cta-secondary {
        width: 100%;
        text-align: center;
    }

    .wbp-trust-strip {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .wbp-card-grid,
    .wbp-card-grid-2,
    .wbp-card-grid-3,
    .wbp-card-grid-4 {
        grid-template-columns: 1fr;
    }

    .wbp-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wbp-audience-grid {
        grid-template-columns: 1fr;
    }

    .wbp-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wbp-footer-bottom .wbp-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .wbp-footer-legal {
        justify-content: center;
    }

    .wbp-answer-summary {
        padding: 20px 20px;
    }

    .wbp-page-hero {
        padding: 40px 0 32px;
    }

    .wbp-page-hero h1,
    body.wbp-corporate .wbp-page-hero__title {
        font-size: 1.5rem;
    }

    .wbp-page-hero p,
    body.wbp-corporate .wbp-page-hero__subtitle {
        font-size: 1rem;
    }

    .wbp-catalog-hero {
        padding: 40px 0 32px;
    }

    body.wbp-corporate .wbp-catalog-hero h1 {
        font-size: 1.75rem;
    }

    .wbp-compound-grid {
        grid-template-columns: 1fr;
    }

    .wbp-catalog-filters {
        gap: 6px;
    }

    .wbp-catalog-filters a {
        padding: 6px 14px;
        font-size: 0.8125rem;
    }

    body.wbp-corporate.page:not(.page-template-template-homepage-php) .entry-content,
    body.wbp-corporate.page:not(.page-template-template-homepage-php) .inside-article {
        padding: 32px var(--wbp-section-x) 48px;
    }

    .wbp-compound-specs th,
    .wbp-compound-specs td {
        padding: 12px 16px;
        display: block;
    }

    .wbp-compound-specs th {
        width: 100%;
        background: var(--wbp-bg-light);
    }

    .wbp-tier-summary thead th,
    .wbp-tier-summary tbody td {
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .wbp-key-facts dl {
        grid-template-columns: 1fr;
    }

    .wbp-cta-block h2 {
        font-size: 1.75rem;
    }

    .wbp-wholesale-cta-box {
        padding: 24px 20px;
    }

    .wbp-link-cards {
        gap: 12px;
    }

    .wbp-link-card {
        flex: 0 0 240px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    body.wbp-corporate h1 { font-size: 1.5rem; }
    body.wbp-corporate h2 { font-size: 1.3rem; }

    .wbp-hero h1 { font-size: 1.625rem; }

    .wbp-cta-primary,
    .wbp-cta-secondary {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .wbp-card {
        padding: 24px;
    }

    .wbp-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
}

/* =========================================================================
   GENERATEPRESS OVERRIDE — Remove default theme styling conflicts
   ========================================================================= */

body.wbp-corporate #page {
    max-width: none;
}

/* CRITICAL: Override GP flex layout — force vertical stacking */
body.wbp-corporate .site-content,
body.wbp-corporate #content {
    display: block !important;
    padding: 0;
}

body.wbp-corporate .inside-article,
body.wbp-corporate #primary,
body.wbp-corporate .content-area,
body.wbp-corporate .site-main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Hide GP sidebar — our templates are full-width */
body.wbp-corporate #secondary,
body.wbp-corporate #right-sidebar,
body.wbp-corporate .sidebar,
body.wbp-corporate .widget-area:not(.wbp-footer-widgets) {
    display: none !important;
}

/* Override GP right-sidebar flex grid (in case body class persists) */
body.right-sidebar.wbp-corporate .site-content .content-area {
    width: 100% !important;
    float: none !important;
}

body.wbp-corporate .site-content {
    display: block !important;
}

body.wbp-corporate .entry-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.wbp-corporate article.page .entry-header,
body.wbp-corporate article.post .entry-header {
    display: none; /* We render our own headers in templates */
}

body.wbp-corporate .site-footer {
    display: none; /* We render our own footer */
}

body.wbp-corporate .generate-columns-container {
    padding: 0;
}

/* Remove GP page title since we use our own */
body.wbp-corporate .page .entry-title {
    display: none;
}

/* Remove GP default page hero/content container constraints */
body.wbp-corporate .grid-container {
    max-width: none;
}

/* Ensure WooCommerce archives also get full-width treatment */
body.woocommerce.wbp-corporate .site-content,
body.woocommerce.wbp-corporate #content {
    display: block !important;
}

/* Pagination */
.wbp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0 0;
}

.wbp-pagination a,
.wbp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--wbp-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--wbp-transition);
}

.wbp-pagination a {
    background: var(--wbp-bg);
    color: var(--wbp-text-secondary);
    border: 1px solid var(--wbp-border);
}

.wbp-pagination a:hover {
    background: var(--wbp-dark);
    color: #fff;
    border-color: var(--wbp-dark);
}

.wbp-pagination span.current {
    background: var(--wbp-accent);
    color: #fff;
    border: 1px solid var(--wbp-accent);
}

/* Search form in hero */
.wbp-search-form {
    display: flex;
    max-width: 560px;
    margin: 24px 0;
}

.wbp-search-form input[type="search"] {
    flex: 1;
    border-radius: var(--wbp-radius) 0 0 var(--wbp-radius);
    border-right: none;
    padding: 14px 20px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.wbp-search-form button {
    background: var(--wbp-accent);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 0 var(--wbp-radius) var(--wbp-radius) 0;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--wbp-transition);
    white-space: nowrap;
}

.wbp-search-form button:hover {
    background: var(--wbp-accent-hover);
}

/* =========================================================================
   32. ACCESSIBILITY ENHANCEMENTS
   ========================================================================= */

/* Skip navigation link */
.wbp-skip-nav {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10002;
    background: var(--wbp-accent);
    color: var(--wbp-dark);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0 0 var(--wbp-radius) var(--wbp-radius);
}

.wbp-skip-nav:focus {
    left: 50%;
    transform: translateX(-50%);
}

/* Global focus-visible ring */
body.wbp-corporate a:focus-visible,
body.wbp-corporate button:focus-visible,
body.wbp-corporate input:focus-visible,
body.wbp-corporate select:focus-visible,
body.wbp-corporate textarea:focus-visible,
body.wbp-corporate [tabindex]:focus-visible {
    outline: 2px solid var(--wbp-accent);
    outline-offset: 2px;
}

/* Nav link hover: add underline for non-color differentiation */
.wbp-nav-list > li > a:hover,
.wbp-nav-list > li > a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Filter pill active/pressed state */
.wbp-filter-pill:active {
    transform: scale(0.95);
}

/* Pagination focus */
.wbp-pagination a:focus-visible {
    outline: 2px solid var(--wbp-accent);
    outline-offset: 2px;
}

/* Search button focus */
.wbp-search-form button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Form inputs — HCM-safe focus (transparent outline visible in Windows High Contrast) */
body.wbp-corporate input:focus,
body.wbp-corporate select:focus,
body.wbp-corporate textarea:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px rgba(244, 162, 51, 0.35);
    border-color: var(--wbp-accent);
}

/* Mobile overlay transition */
body.wbp-mobile-active::after {
    transition: opacity 0.3s ease;
}

/* Print styles */
@media print {
    .wbp-header,
    .wbp-footer,
    .wbp-mobile-menu,
    .wbp-cta-block {
        display: none !important;
    }

    body.wbp-corporate {
        padding-top: 0;
    }
}
