/* ============================================================
   Five Elements Flow - Page Styles v4.1.21
   High-End Eastern Aesthetic
   Fonts: Cormorant Garamond (serif) + Jost (sans)
   Colors: Gold #b8860b / Deep Navy #1e293b / Warm Parchment #F7F3ED
   ============================================================ */

/* === GLOBAL TYPOGRAPHY === */
body,
.entry-content,
.ast-single-post-order,
.site-content {
    font-family: 'Jost', 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    color: #334155;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.home-hero-title,
.fe-hero-title,
.fe-section-title,
.tier-name,
.home-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* === GLOBAL LINK STYLE === */
a {
    color: #b8860b;
    transition: color 0.2s;
}
a:hover { color: #8B6914; }

/* === SITE HEADER — High-end nav === */
.site-header,
#masthead {
    background: #FFFEF9 !important;
    border-bottom: 1px solid #EDE8E1 !important;
    box-shadow: 0 1px 12px rgba(180,160,100,0.07) !important;
}
.ast-primary-header-bar {
    padding: 0 !important;
}
.main-header-bar {
    background: transparent !important;
}
/* Nav links */
.main-header-menu .menu-item > a,
.ast-primary-menu > li > a {
    font-family: 'Jost', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #334155 !important;
    padding: 8px 16px !important;
    transition: color 0.2s !important;
}
.main-header-menu .menu-item > a:hover,
.ast-primary-menu > li > a:hover {
    color: #b8860b !important;
    text-decoration: none !important;
}
.main-header-menu .current-menu-item > a {
    color: #b8860b !important;
}
/* Site title in header */
.site-title a {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    letter-spacing: 2px !important;
}
.site-title a:hover { color: #b8860b !important; text-decoration: none; }
.site-description { display: none !important; }

/* === GOLDEN DIVIDER === */
.fe-gold-divider {
    width: 60px;
    height: 2px;
    background: #b8860b;
    margin: 16px auto 24px;
    opacity: 0.7;
}


/* === HOMEPAGE HERO — Upgraded === */
.home-hero {
    background-image: url('https://fiveelementsflow.com/wp-content/uploads/hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: 160px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Dark overlay for text readability */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 20, 30, 0.18) 0%,
        rgba(15, 20, 30, 0.08) 50%,
        rgba(15, 20, 30, 0.25) 100%
    );
    z-index: 0;
}
/* Subtle vignette effect */
.home-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.06) 100%);
    z-index: 0;
    pointer-events: none;
}
.home-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 6px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F5ECD7;
    margin-bottom: 28px;
}
.home-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 62px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.12;
    letter-spacing: 1px;
    margin: 0 0 22px;
}
.home-hero-title em {
    font-style: italic;
    color: #b8860b;
    font-weight: 400;
}

.home-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.15;
    letter-spacing: 1px;
    margin: 0 0 20px;
}
.home-hero h1 .gold {
    color: #F5ECD7;
}
.home-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(245, 236, 215, 0.92);
    line-height: 1.75;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    margin: 0 auto 40px;
    letter-spacing: 0.3px;
}
.home-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.home-hero-btns .btn-primary {
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}
.home-hero-btns .btn-primary:hover {
    background: #a07308;
    box-shadow: 0 6px 28px rgba(184,134,11,0.35);
    transform: translateY(-1px);
    color: #fff;
}
.home-hero-btns .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 16px 36px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}
.home-hero-btns .btn-secondary:hover {
    border-color: rgba(255,255,255,0.7);
    color: #FFFFFF;
    background: rgba(184,134,11,0.04);
    text-decoration: none;
}

/* Trust bar under hero */
.home-hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
.home-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}
.home-trust-icon {
    font-size: 16px;
    opacity: 0.8;
}


/* === HOME PRODUCT CARDS — Upgraded === */
.home-products {
    padding: 90px 20px;
    background: #FFFDF7;
    text-align: center;
}
.home-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
    letter-spacing: 1px;
}
.home-section-sub {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #7a6e5e;
    margin: 0 0 48px;
    line-height: 1.6;
}
.home-products-grid {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}
.home-prod-card {
    flex: 1;
    background: #fff;
    border: 1px solid #EDE8E1;
    border-radius: 4px;
    padding: 36px 26px 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.home-prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #EDE8E1;
    transition: background 0.3s;
}
.home-prod-card:hover::before { background: #b8860b; }
.home-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: #d4c4a0;
}
.home-prod-card.featured {
    border-color: #b8860b;
    box-shadow: 0 4px 24px rgba(184,134,11,0.12);
}
.home-prod-card.featured::before { background: #b8860b; }
.hp-ribbon {
    position: absolute;
    top: 16px; right: -2px;
    background: #b8860b;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 3px 0 0 3px;
}
.home-prod-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px;
    letter-spacing: 1px;
}
.hp-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: #b8860b;
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: -1px;
}
.hp-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9a8c7e;
    margin: 0 0 20px;
}
.hp-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #5a4e3c;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}
.hp-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: auto;
}
.hp-cta-gold {
    background: #b8860b;
    color: #fff;
    box-shadow: 0 4px 16px rgba(184,134,11,0.25);
}
.hp-cta-gold:hover {
    background: #a07308;
    color: #fff;
    box-shadow: 0 6px 20px rgba(184,134,11,0.35);
    transform: translateY(-1px);
}
.hp-cta-outline {
    border: 1px solid #b8860b;
    color: #b8860b;
}
.hp-cta-outline:hover {
    background: #b8860b;
    color: #fff;
    text-decoration: none;
}
/* Duplicate override for .home-prod-card .hp-cta */
.home-prod-card .hp-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: auto;
}


/* === TESTIMONIALS — Upgraded === */
.home-testimonials {
    background: linear-gradient(180deg, #F7F3ED 0%, #FFFDF7 100%);
    padding: 90px 20px;
    text-align: center;
    border-top: 1px solid #EDE8E1;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: #fff;
    border: 1px solid #EDE8E1;
    border-radius: 4px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 80px;
    color: rgba(184,134,11,0.12);
    line-height: 1;
    position: absolute;
    top: 8px;
    left: 22px;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: #d4c4a0;
}
.tq-stars {
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    padding-top: 20px;
}
.tq-text {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #4a4035;
    line-height: 1.8;
    margin: 0 0 20px;
}
.tq-author {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.5px;
}
.tq-location {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #9a8c7e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}


/* === HIGH-END FOOTER === */
.site-footer,
#colophon {
    background: #1e293b !important;
    color: #C8C0B4 !important;
    border-top: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fe-footer-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 40px 40px;
}
.fe-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
    .fe-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .fe-footer-top { grid-template-columns: 1fr; }
    .fe-footer-wrap { padding: 48px 24px 32px; }
}
.fe-footer-brand .fe-footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #F5F0E8;
    letter-spacing: 2px;
    margin: 0 0 12px;
    display: block;
    text-decoration: none;
}
.fe-footer-brand .fe-footer-logo:hover { color: #b8860b; text-decoration: none; }
.fe-footer-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #8a7d6e;
    line-height: 1.7;
    letter-spacing: 0.5px;
    max-width: 240px;
    margin: 0 0 24px;
}
.fe-footer-gold-line {
    width: 40px;
    height: 1px;
    background: #b8860b;
    opacity: 0.6;
    margin: 0 0 16px;
}
.fe-footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F5F0E8;
    margin: 0 0 20px;
}
.fe-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fe-footer-col ul li {
    margin: 0 0 10px;
}
.fe-footer-col ul li a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #8a7d6e;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}
.fe-footer-col ul li a:hover { color: #b8860b; }
.fe-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.fe-footer-copyright {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #5a5049;
    letter-spacing: 0.5px;
}
.fe-footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.fe-footer-legal a {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #5a5049;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.fe-footer-legal a:hover { color: #b8860b; }
/* Hide Astra's default footer copyright */
.ast-footer-copyright { display: none !important; }


/* === PREMIUM REPORTS TIERS — Upgraded === */
.premium-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 54px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    letter-spacing: 1px !important;
}
.premium-hero-sub {
    font-family: 'Jost', sans-serif !important;
    font-size: 17px !important;
    font-weight: 300 !important;
    color: #5a4e3c !important;
}
.tier-name {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #1e293b !important;
}
.tier-btn {
    font-family: 'Jost', sans-serif !important;
    letter-spacing: 2px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 14px 28px !important;
    border-radius: 3px !important;
}
.tier-btn-primary {
    background: #b8860b !important;
    border-color: #b8860b !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(184,134,11,0.25) !important;
}
.tier-btn-primary:hover {
    background: #a07308 !important;
    border-color: #a07308 !important;
    box-shadow: 0 6px 20px rgba(184,134,11,0.35) !important;
}
.tier-btn-outline {
    border: 1px solid #b8860b !important;
    color: #b8860b !important;
    background: transparent !important;
}
.tier-btn-outline:hover {
    background: #b8860b !important;
    color: #fff !important;
}
.tier-ribbon {
    font-family: 'Jost', sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
}
.tier-featured {
    border-color: #b8860b !important;
}


/* === WOOCOMMERCE BUTTONS — Gold theme === */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: #b8860b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    transition: all 0.25s !important;
    box-shadow: 0 4px 16px rgba(184,134,11,0.2) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #a07308 !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(184,134,11,0.3) !important;
    transform: translateY(-1px) !important;
}
/* Product page */
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #b8860b !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    background: #b8860b !important;
}
/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 40px !important;
    font-weight: 600 !important;
    color: #b8860b !important;
}
/* Product title */
.woocommerce div.product h1.product_title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 46px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    letter-spacing: 1px !important;
}
/* Product form */
.woocommerce .quantity .qty {
    border: 1px solid #EDE8E1 !important;
    border-radius: 3px !important;
    font-family: 'Jost', sans-serif !important;
}

/* === CHECKOUT / CART UPGRADE === */
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    letter-spacing: 1px !important;
}
.woocommerce-cart table.cart th,
.woocommerce-checkout #order_review h3,
.woocommerce-checkout #customer_details h3 {
    font-family: 'Jost', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #5a4e3c !important;
}
.woocommerce form .form-row label {
    font-family: 'Jost', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #5a4e3c !important;
}
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    border: 1px solid #EDE8E1 !important;
    border-radius: 3px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    padding: 12px 16px !important;
    transition: border-color 0.2s !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus {
    border-color: #b8860b !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.08) !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .home-hero-title { font-size: 42px; }
    .home-products-grid { flex-direction: column; }
    .home-hero-trust { gap: 16px; }
}
@media (max-width: 480px) {
    .home-hero-title { font-size: 34px; }
    .home-hero-btns { flex-direction: column; align-items: center; }
}


/* === EXISTING PAGE STYLES (maintained) === */
/* ============================================================
   Five Elements Flow - Page Styles v4.1.6 (UPGRADED - see top of file for global overrides)
   Light & Airy Eastern Aesthetic
   Aligned with Astra Homepage: white bg, blue accent (#046bd2),
   gold detail (#b8860b), slate text (#334155)
   ============================================================ */

/* --- Hero Section (About, Contact, FAQ) --- */
.fe-page-hero {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,243,237,0.9) 100%), url('https://fiveelementsflow.com/wp-content/uploads/2026/01/wuxing-bg.png'); background-size: auto, cover; background-position: center; background-repeat: no-repeat;
    padding: 100px 20px 70px;
    text-align: center;
    border-bottom: 1px solid #E8E0D5;
    margin: 0 !important;
}
.fe-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.2;
}
.fe-hero-subtitle {
    color: #5a4e3c;
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.fe-hero-subtitle strong { color: #b8860b; }

/* --- Section Layout --- */
.fe-page-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 20px;
    border-bottom: 1px solid #EDE8E1;
}
.fe-section-icon {
    font-size: 28px;
    color: #b8860b;
    margin-bottom: 12px;
    opacity: 0.7;
}
.fe-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 16px;
}
.fe-section-text {
    color: #4a4035;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
}
.fe-section-text strong { color: #b8860b; }

/* --- Offer Cards (About page) --- */
.fe-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.fe-offer-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D5;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.fe-offer-card:hover {
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184,134,11,0.08);
}
.fe-offer-card h4 {
    color: #1e293b;
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 600;
}
.fe-offer-card p {
    color: #5a4e3c;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* --- Contact Cards --- */
.fe-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 60px 20px;
}
.fe-contact-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D5;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.fe-contact-card:hover {
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184,134,11,0.08);
}
.fe-contact-icon { font-size: 36px; color: #b8860b; margin-bottom: 14px; opacity: 0.7; }
.fe-contact-card h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}
.fe-contact-card p {
    color: #5a4e3c;
    font-size: 13px;
    margin: 0 0 10px;
}
.fe-contact-link {
    color: #046bd2;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(4,107,210,0.3);
    padding-bottom: 2px;
}
.fe-contact-link:hover { border-color: #046bd2; color: #045cb4; }
.fe-contact-highlight {
    color: #b8860b;
    font-size: 20px;
    font-weight: 700;
}
.fe-contact-list {
    text-align: left;
    color: #5a4e3c;
    font-size: 13px;
    line-height: 2;
    padding-left: 16px;
    margin: 0;
}
.fe-contact-list strong { color: #1e293b; }
.fe-contact-list a { color: #046bd2; text-decoration: none; border-bottom: 1px solid rgba(4,107,210,0.2); }
.fe-contact-list a:hover { border-color: #046bd2; }

/* --- FAQ Items --- */
.fe-faq-list { padding: 40px 20px; }
.fe-faq-item { margin-bottom: 20px; }
.fe-faq-q {
    background: #F7F4EF;
    border: 1px solid #E8E0D5;
    border-radius: 12px;
    padding: 18px 24px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.fe-faq-q:hover { border-color: #b8860b; background: #FDFAF5; }
.fe-faq-a {
    padding: 20px 24px;
    color: #4a4035;
    font-size: 14px;
    line-height: 1.8;
}
.fe-faq-a p { margin: 0 0 12px; }
.fe-faq-a p:last-child { margin: 0; }
.fe-faq-a strong { color: #b8860b; }
.fe-faq-a a { color: #046bd2; text-decoration: none; border-bottom: 1px solid rgba(4,107,210,0.2); }
.fe-faq-a a:hover { border-color: #046bd2; }

/* --- FAQ Compare Table --- */
.fe-faq-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 10px 0;
}
.fe-faq-tier {
    background: #F7F4EF;
    border: 1px solid #E8E0D5;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.2s;
}
.fe-faq-tier:hover {
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184,134,11,0.06);
}
.fe-faq-tier h4 {
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}
.fe-faq-tier p {
    color: #5a4e3c;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* --- CTA Banner --- */
.fe-cta-banner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px 80px;
}
.fe-cta-banner h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 12px;
}
.fe-cta-banner p {
    color: #5a4e3c;
    font-size: 15px;
    margin-bottom: 24px;
}
.fe-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #046bd2;
    color: #FFFFFF;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: none;
}
.fe-cta-btn:hover {
    background: #045cb4;
    transform: translateY(-1px);
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(4,107,210,0.25);
}

/* --- Free Reading Hero (specific page) --- */
.free-reading-hero {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,243,237,0.9) 100%), url('https://fiveelementsflow.com/wp-content/uploads/2026/01/wuxing-bg.png'); background-size: auto, cover; background-position: center; background-repeat: no-repeat;
    padding: 80px 20px 60px;
    text-align: center;
    border-bottom: 1px solid #E8E0D5;
    position: relative;
    overflow: hidden;
}
.free-reading-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(184,134,11,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.fr-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.fr-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.2;
}
.fr-hero-subtitle {
    color: #5a4e3c;
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.fr-hero-subtitle strong { color: #b8860b; white-space: nowrap; }

.fr-form-container {
    background: #F9F7F4;
    padding: 50px 20px 60px;
    position: relative;
}
.fr-form-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    border-radius: 2px;
}
.fr-form-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 30px 0 10px;
    text-align: center;
}
.fr-form-desc {
    color: #5a4e3c;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 35px;
    text-align: center;
}
.fr-wpform-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.fr-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #FFFFFF;
    border-top: 1px solid #EDE8E1;
}
.fr-trust-item {
    text-align: center;
    min-width: 120px;
}
.fr-trust-icon {
    font-size: 28px;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
    color: #b8860b;
    opacity: 0.6;
}
.fr-trust-text {
    font-size: 12px;
    color: #8a7d6e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --- Form Styling --- */
.wpforms-container {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 30px !important;
    border: 1px solid #E8E0D5 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}
.wpforms-field-label {
    color: #1e293b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-align: left !important;
}
.wpforms-field {
    text-align: left !important;
}

.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
    background: #F9F7F4 !important;
    border: 1px solid #D1D5DB !important;
    color: #334155 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: left !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
    border-color: #046bd2 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(4,107,210,0.1) !important;
    background: #FFFFFF !important;
}
.wpforms-submit {
    background: #046bd2 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 14px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    width: auto !important;
    margin: 10px auto 0 !important;
    display: block !important;
}
.wpforms-submit:hover {
    background: #045cb4 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4,107,210,0.25) !important;
}
.wpforms-confirmation-container {
    background: #F0FDF4 !important;
    border: 1px solid #86EFAC !important;
    color: #166534 !important;
    border-radius: 12px !important;
    padding: 20px !important;
}

/* --- Report Content Styling (shared by free + premium reports) --- */
.fe-report-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}
.fe-report-section {
    margin-bottom: 36px;
}
.fe-report-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F0EBE3;
}
.fe-report-section h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    color: #b8860b;
    font-weight: 600;
    margin: 0 0 10px;
}
.fe-report-section p {
    color: #4a4035;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
}
.fe-report-section ul {
    color: #4a4035;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
    padding-left: 20px;
}
.fe-report-section li { margin-bottom: 6px; }
.fe-report-section strong { color: #1e293b; }

/* Pillar Cards in Reports */
.fe-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.fe-pillar-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D5;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}
.fe-pillar-card .pillar-title {
    font-size: 11px;
    color: #8a7d6e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}
.fe-pillar-card .pillar-stem {
    font-size: 20px;
    color: #1e293b;
    font-weight: 700;
}
.fe-pillar-card .pillar-branch {
    font-size: 14px;
    color: #5a4e3c;
    margin-top: 2px;
}
.fe-pillar-card .pillar-wx {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Five Element color tags */
.wx-metal { background: #FFF8E1; color: #B8860B; border: 1px solid #FFE082; }
.wx-wood { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.wx-water { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }
.wx-fire { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }
.wx-earth { background: #EFEBE9; color: #5D4037; border: 1px solid #BCAAA4; }

/* Element Bar */
.fe-element-bar-wrap {
    margin: 10px 0;
}
.fe-element-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #5a4e3c;
    margin-bottom: 3px;
}
.fe-element-bar-track {
    height: 8px;
    background: #F0EBE3;
    border-radius: 4px;
    overflow: hidden;
}
.fe-element-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Strength Meter */
.fe-strength-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #E8E0D5;
    border-radius: 10px;
}
.fe-strength-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    min-width: 70px;
}
.fe-strength-bar {
    flex: 1;
    height: 10px;
    background: #F0EBE3;
    border-radius: 5px;
    overflow: hidden;
}
.fe-strength-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #b8860b, #d4a84b);
    transition: width 0.6s ease;
}
.fe-strength-value {
    font-size: 13px;
    font-weight: 700;
    color: #b8860b;
    min-width: 40px;
}


/* ============================================================
   Navigation Fix - prevent menu items from wrapping
   ============================================================ */
.ast-primary-header-bar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.main-header-menu {
    flex-wrap: nowrap !important;
}
.main-header-menu > .menu-item > a {
    font-size: 13px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    letter-spacing: 0.5px !important;
}
.main-header-bar-wrap .site-branding {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.site-branding .custom-logo-link img {
    max-height: 44px !important;
}
/* Ensure header content doesn't overflow */
.ast-primary-header-bar .ast-container {
    flex-wrap: nowrap !important;
}
/* Reduce header padding */
.ast-primary-header-bar .site-primary-header-wrap {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
@media (max-width: 1024px) {
    .main-header-menu > .menu-item > a {
        font-size: 12px !important;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
}
@media (max-width: 921px) {
    /* Astra's default mobile breakpoint - let it switch to hamburger */
    .main-header-menu {
        flex-wrap: wrap !important;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .fe-hero-title, .fr-hero-title { font-size: 32px; }
    .fe-hero-subtitle, .fr-hero-subtitle { font-size: 15px; }
    .fe-section-title { font-size: 22px; }
    .fr-form-heading { font-size: 22px; }
    .fe-offer-grid { grid-template-columns: 1fr; }
    .fe-contact-grid { grid-template-columns: 1fr; }
    .fe-faq-compare { grid-template-columns: 1fr; }
    .fr-trust-bar { gap: 20px; }
    .fr-trust-item { min-width: 80px; }
    .fe-page-section { padding: 30px 16px; }
    .fe-page-hero { padding: 70px 16px 50px; }
    .fe-pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Premium Reports Page - v4.0.2
   High-end pricing page with cards, comparison table, trust strip
   ============================================================ */

/* --- Page Wrapper --- */
.premium-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Hero Section --- */
.premium-hero {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,243,237,0.9) 100%), url('https://fiveelementsflow.com/wp-content/uploads/2026/01/wuxing-bg.png'); background-size: auto, cover; background-position: center; background-repeat: no-repeat;
    padding: 80px 20px 60px;
    text-align: center;
    border-bottom: 1px solid #E8E0D5;
    position: relative;
    overflow: hidden;
}
.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(184,134,11,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.premium-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.premium-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 20px;
    color: #b8860b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.premium-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.15;
}
.premium-hero-sub {
    color: #5a4e3c;
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 28px;
}
.premium-hero-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.premium-hero-trust span {
    font-size: 12px;
    color: #8a7d6e;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Three Tier Cards --- */
.premium-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: -30px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}
.tier-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D5;
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #D1C7B7;
}

/* Button wrapper in tier cards */
.tier-card > p:last-of-type {
    margin-top: 0;
    margin-bottom: 0;
}
.tier-featured {
    border-color: #b8860b;
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(184,134,11,0.1);
    transform: scale(1.02);
}
.tier-featured:hover {
    box-shadow: 0 16px 48px rgba(184,134,11,0.15);
    border-color: #b8860b;
}

/* Ribbon */
.tier-ribbon {
    position: absolute;
    top: 14px;
    right: -2px;
    background: #b8860b;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 12px 0 0 12px;
}

/* Icon */
.tier-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F7F4EF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 2px solid #E8E0D5;
}
.featured-glow {
    background: linear-gradient(135deg, #FDFAF5, #F7F0E0);
    border-color: #b8860b;
    box-shadow: 0 0 20px rgba(184,134,11,0.15);
}
.tier-icon {
    font-size: 28px;
    line-height: 1;
}

/* Name & Price */
.tier-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: 1px;
}
.tier-price {
    margin: 12px 0 4px;
}
.tier-currency {
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 4px;
}
.tier-amount {
    font-size: 42px;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}
.tier-label {
    font-size: 13px;
    color: #8a7d6e;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.tier-save {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 12px;
    background: rgba(4,107,210,0.08);
    color: #046bd2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
}

/* Divider */
.tier-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    margin: 18px auto;
    border-radius: 2px;
}

/* Features List */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex: 1;
}
.tier-features li {
    padding: 7px 0;
    font-size: 13px;
    color: #4a4035;
    line-height: 1.5;
    border-bottom: 1px solid #F0EBE3;
}
.tier-features li:last-child {
    border-bottom: none;
}
.tier-features .check {
    color: #b8860b;
    font-weight: 700;
    margin-right: 8px;
    font-size: 14px;
}
.feat-highlight {
    background: #FDFAF5;
    margin: 0 -10px;
    padding: 7px 10px !important;
    border-radius: 6px;
}

/* Buttons */
.tier-btn {
    display: block;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}
.tier-btn-outline {
    background: transparent;
    color: #046bd2;
    border: 2px solid #046bd2;
}
.tier-btn-outline:hover {
    background: #046bd2;
    color: #FFFFFF;
    text-decoration: none;
}
.tier-btn-primary {
    background: #046bd2;
    color: #FFFFFF;
    border: 2px solid #046bd2;
    box-shadow: 0 4px 16px rgba(4,107,210,0.25);
}
.tier-btn-primary:hover {
    background: #045cb4;
    border-color: #045cb4;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4,107,210,0.35);
    color: #FFFFFF;
    text-decoration: none;
}

/* --- Comparison Table Section --- */
.premium-compare-section {
    background: #F9F7F4;
    padding: 60px 20px;
    border-top: 1px solid #EDE8E1;
    border-bottom: 1px solid #EDE8E1;
}
.compare-heading-wrap {
    text-align: center;
    margin-bottom: 36px;
}
.compare-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 1px;
}
.compare-sub {
    color: #8a7d6e;
    font-size: 14px;
    margin: 0;
}
.compare-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.compare-table thead th {
    padding: 18px 14px;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #E8E0D5;
    background: #FDFAF5;
}
.compare-table thead th:first-child {
    text-align: left;
    background: transparent;
}
.compare-table tbody td {
    padding: 12px 14px;
    text-align: center;
    color: #4a4035;
    border-bottom: 1px solid #F0EBE3;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}
.compare-table tbody tr:hover td {
    background: #FDFAF5;
}
.compare-table tbody tr:hover td:first-child {
    background: transparent;
}
.ct-feature {
    width: 40%;
}
.ct-tier {
    width: 20%;
}
.ct-price {
    display: block;
    font-size: 11px;
    color: #b8860b;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.highlighted-col {
    background: #FDFAF5;
    border-left: 2px solid #b8860b;
    border-right: 2px solid #b8860b;
}
.ct-no {
    color: #C5BFB5;
    font-size: 16px;
}
.compare-divider td {
    padding: 4px !important;
    border-bottom: 2px solid #E8E0D5 !important;
}

/* --- Guarantee Strip --- */
.premium-guarantee {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}
.guarantee-icon {
    font-size: 36px;
    margin-bottom: 14px;
    opacity: 0.5;
}
.premium-guarantee h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.premium-guarantee p {
    color: #5a4e3c;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* --- Bottom CTA --- */
.premium-cta {
    background: linear-gradient(180deg, #F7F3ED 0%, #FFFFFF 100%);
    text-align: center;
    padding: 60px 20px 80px;
    border-top: 1px solid #EDE8E1;
}
.premium-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.premium-cta-text {
    color: #5a4e3c;
    font-size: 15px;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 28px;
}
.premium-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.premium-cta-btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #046bd2;
    border: 2px solid #046bd2;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}
.premium-cta-btn-outline:hover {
    background: #046bd2;
    color: #FFFFFF;
    text-decoration: none;
}
.premium-cta-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #046bd2;
    color: #FFFFFF;
    border: 2px solid #046bd2;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(4,107,210,0.25);
}
.premium-cta-btn-primary:hover {
    background: #045cb4;
    border-color: #045cb4;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4,107,210,0.35);
    color: #FFFFFF;
    text-decoration: none;
}
.premium-cta-note {
    color: #A8A098;
    font-size: 11px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .premium-tiers {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .tier-featured {
        transform: scale(1);
        order: -1;
    }
    .premium-hero-title { font-size: 36px; }
    .compare-table { font-size: 12px; }
    .compare-table thead th,
    .compare-table tbody td { padding: 10px 8px; }
}
@media (max-width: 600px) {
    .premium-hero { padding: 60px 16px 40px; }
    .premium-hero-title { font-size: 28px; }
    .premium-hero-trust { gap: 16px; }
    .tier-card { padding: 30px 20px 26px; }
    .compare-heading { font-size: 24px; }
    .premium-cta-btns { flex-direction: column; align-items: center; }
    .premium-cta-btn-outline,
    .premium-cta-btn-primary { width: 100%; max-width: 280px; }
}


/* ============================================================
   WooCommerce Product Page - Premium Styling
   ============================================================ */
.single-product .ast-container {
    max-width: 1140px !important;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

/* --- Product Gallery Area --- */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.single-product div.product .woocommerce-product-gallery {
    flex: 0 0 45%;
    max-width: 45%;
}
.single-product div.product .summary.entry-summary {
    flex: 0 0 calc(55% - 50px);
    max-width: calc(55% - 50px);
}

/* --- Product Image --- */
.single-product .woocommerce-product-gallery__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.single-product .woocommerce-product-gallery__image img {
    border: 1px solid #e8e4dc;
    border-radius: 12px;
}
/* Hide WooCommerce sale badge (not applicable) */
.single-product span.onsale { display: none; }

/* --- Product Title --- */
.single-product .product_title.entry-title {
    font-family: 'Georgia', 'Songti SC', 'SimSun', serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #2d2418 !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.3px !important;
}

/* --- Product Category Badge --- */
.single-product .product_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px !important;
    padding: 0 !important;
    border: none !important;
    font-size: 13px !important;
}
.single-product .product_meta .posted_in {
    display: inline-block;
    background: #f5f0e8;
    color: #8b7355;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.single-product .product_meta .posted_in a {
    color: #8b7355 !important;
    text-decoration: none !important;
}
.single-product .product_meta .sku_wrapper,
.single-product .product_meta .tagged_as {
    display: none;
}

/* --- Price --- */
.single-product .summary .price {
    font-family: 'Georgia', 'Songti SC', serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #c8a84e !important;
    margin-bottom: 12px !important;
    display: block !important;
}
.single-product .summary .price del {
    font-size: 18px !important;
    color: #aaa !important;
    opacity: 0.6;
}
.single-product .summary .price ins {
    text-decoration: none !important;
}

/* --- Short Description --- */
.single-product .woocommerce-product-details__short-description {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #555 !important;
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f0ebe0;
}

/* --- Add to Cart Button --- */
.single-product form.cart {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px !important;
}
.single-product form.cart .quantity {
    margin-right: 0 !important;
}
.single-product form.cart .quantity input.qty {
    height: 50px !important;
    width: 70px !important;
    border: 2px solid #e0d8c8 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    text-align: center !important;
    background: #faf7f2;
}
.single-product button.single_add_to_cart_button {
    flex: 1;
    height: 50px !important;
    background: linear-gradient(135deg, #c8a84e, #b8942d) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 32px !important;
}
.single-product button.single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #b8942d, #a07d1f) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,168,78,0.35);
}

/* --- Product Meta Trust Strip --- */
.product-trust-strip {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0ebe0;
}
.product-trust-strip span {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- WooCommerce Tabs --- */
.single-product .woocommerce-tabs {
    margin-top: 50px !important;
    border-top: 1px solid #f0ebe0;
    padding-top: 30px !important;
}
.single-product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 24px !important;
    border-bottom: 2px solid #f0ebe0 !important;
    display: flex !important;
    gap: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs::before {
    display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #999 !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #c8a84e !important;
    border-bottom-color: #c8a84e !important;
}
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #555 !important;
}
.single-product .woocommerce-tabs .panel {
    padding: 20px 0 !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #444 !important;
}
.single-product .woocommerce-tabs .panel h2 {
    font-family: 'Georgia', serif !important;
    font-size: 22px !important;
    color: #2d2418 !important;
    margin: 28px 0 14px !important;
}
.single-product .woocommerce-tabs .panel h3 {
    font-family: 'Georgia', serif !important;
    font-size: 18px !important;
    color: #5a4a3a !important;
    margin: 22px 0 10px !important;
}
.single-product .woocommerce-tabs .panel ul {
    padding-left: 20px !important;
    margin: 10px 0 !important;
}
.single-product .woocommerce-tabs .panel ul li {
    margin-bottom: 8px !important;
    position: relative;
    padding-left: 4px;
}
.single-product .woocommerce-tabs .panel ul li::marker {
    color: #c8a84e;
}
.single-product .woocommerce-tabs .panel p {
    margin-bottom: 14px !important;
}

/* --- Related Products --- */
.single-product section.related.products {
    margin-top: 50px !important;
    padding-top: 40px !important;
    border-top: 1px solid #f0ebe0;
}
.single-product section.related.products > h2 {
    font-family: 'Georgia', 'Songti SC', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2d2418 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}
.single-product .related.products ul.products li.product {
    background: #fff !important;
    border: 1px solid #f0ebe0 !important;
    border-radius: 12px !important;
    padding: 24px !important;
    transition: all 0.3s !important;
}
.single-product .related.products ul.products li.product:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
    transform: translateY(-2px);
    border-color: #e0d0a0 !important;
}
.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Georgia', serif !important;
    font-size: 16px !important;
    color: #2d2418 !important;
}
.single-product .related.products ul.products li.product .price {
    color: #c8a84e !important;
    font-family: 'Georgia', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}
.single-product .related.products ul.products li.product .button {
    background: #c8a84e !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.single-product .related.products ul.products li.product .button:hover {
    background: #b8942d !important;
}
/* Hide default WooCommerce sale flashes on related */
.single-product .related.products .onsale { display: none; }

/* --- Breadcrumbs --- */
.single-product .woocommerce-breadcrumb {
    font-size: 13px !important;
    color: #999 !important;
    margin-bottom: 20px !important;
}
.single-product .woocommerce-breadcrumb a {
    color: #c8a84e !important;
    text-decoration: none !important;
}

/* --- Product Page Mobile --- */
@media (max-width: 768px) {
    .single-product div.product {
        flex-direction: column;
        gap: 30px;
    }
    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary.entry-summary {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .single-product .product_title.entry-title {
        font-size: 26px !important;
    }
    .single-product .summary .price {
        font-size: 28px !important;
    }
    .single-product form.cart {
        flex-wrap: wrap;
    }
    .single-product button.single_add_to_cart_button {
        flex: 1 0 100%;
    }
}



/* --- Homepage CTA Buttons --- */
.btn-primary-lg {
    display: inline-block;
    background: linear-gradient(135deg, #c8a84e, #b8942d) !important;
    color: #fff !important;
    padding: 14px 36px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 14px rgba(200,168,78,0.3);
}
.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,168,78,0.45);
    color: #fff !important;
}
.btn-outline-lg {
    display: inline-block;
    background: transparent !important;
    color: rgba(255,255,255,0.9) !important;
    padding: 14px 36px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    transition: all 0.3s !important;
}
.btn-outline-lg:hover {
    border-color: rgba(255,255,255,0.9) !important;
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Homepage Section Titles --- */
.home-section-title {
    font-family: 'Georgia', 'Songti SC', serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #2d2418 !important;
    text-align: center;
    margin-bottom: 12px !important;
}
.home-section-sub {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-bottom: 40px;
}

/* --- What Is BaZi Section --- */
.home-what-is {
    padding: 80px 0;
    background: #fff;
}
.home-what-is-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-what-is-text {
    flex: 1;
}
.home-what-is-text h2 {
    font-family: 'Georgia', 'Songti SC', serif !important;
    font-size: 28px !important;
    color: #2d2418 !important;
    margin-bottom: 16px !important;
}
.home-what-is-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.home-what-is-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.home-what-is-highlight {
    text-align: center;
    flex: 1;
}
.home-what-is-highlight .wh-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.home-what-is-highlight h4 {
    font-family: 'Georgia', serif !important;
    font-size: 15px;
    color: #2d2418;
    margin: 0 0 4px;
}
.home-what-is-highlight p {
    font-size: 13px;
    color: #999;
    margin: 0;
}
.home-what-is-visual {
    flex: 0 0 280px;
    text-align: center;
}
.home-what-is-visual .element-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5ede0, #ede0cd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #8b7355;
    border: 2px solid #d4c4a0;
    position: relative;
}
.home-what-is-visual .element-circle::before {
    content: '木 火 土 金 水';
    font-family: 'Songti SC', 'SimSun', serif;
    font-size: 12px;
    letter-spacing: 4px;
}
.home-what-is-visual .element-caption {
    margin-top: 12px;
    font-size: 13px;
    color: #999;
}

/* --- How It Works --- */
.home-how-it-works {
    padding: 80px 0;
    background: #fdf8f0;
}
.home-steps {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-step {
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 36px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border: 1px solid #f0ebe0;
}
.home-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #e0d0a0;
}
.home-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c8a84e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.home-step h3 {
    font-family: 'Georgia', serif !important;
    font-size: 17px;
    color: #2d2418;
    margin: 0 0 8px;
}
.home-step p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* --- Homepage Product Quick-View Cards --- */
.home-products {
    padding: 80px 0;
    background: #fff;
}
.home-products-grid {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}
.home-prod-card {
    flex: 1;
    background: #fff;
    border: 1px solid #f0ebe0;
    border-radius: 12px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.home-prod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #e0d0a0;
}
.home-prod-card.featured {
    border-color: #c8a84e;
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(200,168,78,0.12);
}
.home-prod-card .hp-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #c8a84e;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.home-prod-card h3 {
    font-family: 'Georgia', serif !important;
    font-size: 20px;
    color: #2d2418;
    margin: 0 0 8px;
}
.home-prod-card .hp-price {
    font-family: 'Georgia', serif !important;
    font-size: 32px;
    color: #c8a84e;
    font-weight: 700;
    margin-bottom: 8px;
}
.home-prod-card .hp-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}
.home-prod-card .hp-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.home-prod-card .hp-cta {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}
.hp-cta-gold {
    background: #c8a84e;
    color: #fff;
}
.hp-cta-gold:hover { background: #b8942d; color: #fff; }
.hp-cta-outline {
    border: 2px solid #d4c4a0;
    color: #8b7355;
}
.hp-cta-outline:hover { border-color: #c8a84e; color: #6b4d20; }

/* Push CTA button wrapper to bottom for equal button alignment */


/* --- Testimonials Section --- */
.home-testimonials {
    padding: 80px 0;
    background: #fdf8f0;
}
.testimonials-grid {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonial-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px 28px;
    border: 1px solid #f0ebe0;
    position: relative;
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #f0ebe0;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card .tq-stars {
    color: #c8a84e;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testimonial-card .tq-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-card .tq-author {
    font-size: 13px;
    font-weight: 600;
    color: #2d2418;
}
.testimonial-card .tq-location {
    font-size: 12px;
    color: #999;
}

/* --- Homepage Final CTA --- */
.home-final-cta {
    padding: 70px 0;
    background: linear-gradient(160deg, #fdf8f0, #f0e5d5);
    text-align: center;
}
.home-final-cta h2 {
    font-family: 'Georgia', 'Songti SC', serif !important;
    font-size: 30px !important;
    color: #2d2418 !important;
    margin-bottom: 14px !important;
}
.home-final-cta p {
    font-size: 16px;
    color: #777;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.home-final-cta .btn-primary-lg {
    margin-bottom: 16px;
}
.home-final-cta .cta-note {
    font-size: 12px;
    color: #bbb;
}

/* --- Homepage Responsive --- */
@media (max-width: 900px) {
    .home-hero h1 { font-size: 34px !important; }
    
    .home-what-is-grid { flex-direction: column; gap: 30px; }
    .home-what-is-visual { order: -1; }
    .home-steps, .home-products-grid, .testimonials-grid { flex-direction: column; }
    .home-step, .home-prod-card, .testimonial-card { max-width: 480px; margin-left: auto; margin-right: auto; }
    .home-products-grid, .home-steps, .testimonials-grid { align-items: center; }
    .home-section-title { font-size: 26px !important; }
}
@media (max-width: 600px) {
    .home-hero { padding: 50px 16px 60px; min-height: auto; }
    .home-hero h1 { font-size: 28px !important; }
    .home-hero-sub { font-size: 15px; max-width: 100%; }
    .home-hero-btns { flex-direction: column; align-items: center; }
    .home-hero-btns .btn-primary-lg,
    .home-hero-btns .btn-outline-lg { width: 100%; max-width: 300px; text-align: center; }
    .home-hero-trust { gap: 12px; margin-top: 32px; }
    .home-trust-item { font-size: 10px; }
    .home-what-is { padding: 50px 0; }
    .home-how-it-works { padding: 50px 0; }
    .home-products { padding: 50px 0; }
    .home-testimonials { padding: 50px 0; }
}

/* ============================================================
   FAQ PAGE (ID 211)
   ============================================================ */
.faq-page { max-width: 900px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.faq-hero { text-align: center; padding: 60px 20px 40px; }
.faq-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; color: #2d2a24; margin: 0 0 12px; }
.faq-hero p { font-size: 17px; color: #6b6355; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.faq-grid { display: flex; flex-direction: column; gap: 20px; padding: 20px 0 40px; }
.faq-item { background: #fff; border: 1px solid #e5dfd3; border-radius: 14px; padding: 28px 32px; transition: box-shadow 0.3s, transform 0.2s; }
.faq-item:hover { box-shadow: 0 8px 30px rgba(139, 119, 80, 0.12); transform: translateY(-2px); border-color: #d4caaf; }
.faq-item h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; color: #3d3628; margin: 0 0 12px; position: relative; padding-left: 24px; }
.faq-item h3::before { content: 'Q'; position: absolute; left: 0; top: -2px; font-size: 14px; font-weight: 700; color: #c8a84e; font-family: Georgia, serif; }
.faq-item p { font-size: 15px; color: #5c5547; line-height: 1.75; margin: 0 0 10px; }
.faq-item p:last-child { margin-bottom: 0; }
.faq-item a { color: #c8a84e; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(200,168,78,0.3); }
.faq-item a:hover { color: #b8922e; border-bottom-color: #c8a84e; }
.faq-cta { text-align: center; padding: 50px 20px 60px; background: linear-gradient(135deg, #faf8f3 0%, #f0ece1 100%); border-radius: 18px; margin-bottom: 40px; }
.faq-cta h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; color: #3d3628; margin: 0 0 24px; }
.faq-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-btn-outline, .faq-btn-primary { display: inline-block; padding: 14px 36px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.faq-btn-outline { background: transparent; color: #5c5547; border: 2px solid #c8a84e; }
.faq-btn-outline:hover { background: #c8a84e; color: #fff; }
.faq-btn-primary { background: linear-gradient(135deg, #c8a84e, #b8922e); color: #fff; border: none; box-shadow: 0 4px 16px rgba(200,168,78,0.3); }
.faq-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,78,0.45); }
@media (max-width: 768px) {
    .faq-hero h1 { font-size: 28px; }
    .faq-item { padding: 20px 18px; }
    .faq-item h3 { font-size: 17px; }
    .faq-cta h2 { font-size: 22px; }
}

/* ============================================================
   CONTACT PAGE (ID 210)
   ============================================================ */
.contact-page { max-width: 1000px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.contact-hero { text-align: center; padding: 60px 20px 40px; }
.contact-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; color: #2d2a24; margin: 0 0 12px; }
.contact-hero p { font-size: 17px; color: #6b6355; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 20px 0 50px; align-items: stretch; min-height: 620px; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid #e5dfd3; border-radius: 14px; padding: 48px 42px; transition: box-shadow 0.3s; display: flex; flex-direction: column; flex: 1 1 0; min-height: 0; }
.contact-card:hover { box-shadow: 0 6px 24px rgba(139,119,80,0.1); }
.contact-form-card:hover { box-shadow: 0 6px 24px rgba(139,119,80,0.1); }
.contact-card-icon { font-size: 28px; margin-bottom: 10px; }
.contact-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; color: #3d3628; margin: 0 0 6px; }
.contact-card p { font-size: 14px; color: #6b6355; margin: 0 0 6px; line-height: 1.6; }
.contact-highlight { display: inline-block; font-size: 16px; font-weight: 600; color: #c8a84e; }
.contact-link { color: #c8a84e; text-decoration: none; font-weight: 500; font-size: 15px; word-break: break-all; }
.contact-link:hover { text-decoration: underline; }
.contact-card ul { list-style: none; padding: 0; margin: 8px 0 0; }
.contact-card ul li { font-size: 14px; color: #5c5547; padding: 4px 0 4px 18px; position: relative; line-height: 1.6; }
.contact-card ul li::before { content: '•'; position: absolute; left: 0; color: #c8a84e; }
.contact-card ul li a { color: #c8a84e; text-decoration: none; }
.contact-card ul li a:hover { text-decoration: underline; }
.contact-form-col { display: flex; flex-direction: column; gap: 16px; }
.contact-form-card { background: #fff; border: 1px solid #e5dfd3; border-radius: 14px; padding: 48px 42px; display: flex; flex-direction: column; flex: 1 1 0; min-height: 0; transition: box-shadow 0.3s; }
.contact-form-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; color: #3d3628; margin: 0 0 6px; }
.contact-form-card p { font-size: 14px; color: #6b6355; margin: 0 0 6px; line-height: 1.6; }
.contact-footer { text-align: center; padding: 40px 20px; border-top: 1px solid #e5dfd3; }
.contact-footer p { font-size: 15px; color: #6b6355; margin: 0 0 16px; }
.contact-cta-btn { display: inline-block; padding: 14px 36px; background: linear-gradient(135deg, #c8a84e, #b8922e); color: #fff; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 16px rgba(200,168,78,0.3); }
.contact-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,78,0.45); }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero h1 { font-size: 28px; }
}

/* ============================================================
   ABOUT PAGE (ID 209)
   ============================================================ */
.about-page { max-width: 900px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.about-hero { text-align: center; padding: 60px 20px 40px; }
.about-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; color: #2d2a24; margin: 0 0 14px; }
.about-hero-sub { font-size: 17px; color: #6b6355; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.about-section { padding: 20px 0 40px; }
.about-philosophy { }
.about-badge { display: inline-block; background: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.18)); color: #8c7a40; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 18px; border: 1px solid rgba(200,168,78,0.25); }
.about-philosophy h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 26px; color: #3d3628; margin: 0 0 18px; line-height: 1.35; }
.about-philosophy p { font-size: 16px; color: #5c5547; line-height: 1.8; margin: 0 0 14px; }
.about-offerings { padding: 40px 0; }
.about-offerings h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; color: #3d3628; text-align: center; margin: 0 0 30px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-card { background: #fff; border: 1px solid #e5dfd3; border-radius: 14px; padding: 28px 22px; text-align: center; transition: box-shadow 0.3s, transform 0.2s; }
.about-card:hover { box-shadow: 0 8px 30px rgba(139,119,80,0.12); transform: translateY(-3px); }
.about-card-icon { font-size: 36px; margin-bottom: 14px; }
.about-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; color: #3d3628; margin: 0 0 10px; }
.about-card p { font-size: 14px; color: #6b6355; line-height: 1.7; margin: 0; }
.about-trust { padding: 40px 0; background: linear-gradient(135deg, #faf8f3 0%, #f0ece1 100%); border-radius: 18px; margin: 20px 0; }
.about-trust h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; color: #3d3628; text-align: center; margin: 0 0 30px; padding-top: 40px; }
.about-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 30px 40px; }
.about-trust-item { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e5dfd3; }
.about-trust-num { display: inline-block; font-size: 32px; font-weight: 700; color: #c8a84e; opacity: 0.35; margin-bottom: 8px; font-family: Georgia, serif; }
.about-trust-item h4 { font-family: Georgia, 'Times New Roman', serif; font-size: 17px; color: #3d3628; margin: 0 0 8px; }
.about-trust-item p { font-size: 14px; color: #6b6355; line-height: 1.65; margin: 0; }
.about-cta { text-align: center; padding: 60px 20px; }
.about-cta h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; color: #3d3628; margin: 0 0 20px; }
.about-cta-btn { display: inline-block; padding: 14px 40px; background: linear-gradient(135deg, #c8a84e, #b8922e); color: #fff; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 16px rgba(200,168,78,0.3); transition: all 0.3s; }
.about-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,78,0.45); }
@media (max-width: 768px) {
    .about-cards { grid-template-columns: 1fr; }
    .about-trust-grid { grid-template-columns: 1fr; padding: 0 20px 30px; }
    .about-hero h1 { font-size: 28px; }
    .about-philosophy h2 { font-size: 22px; }
}

/* ============================================================
   CART & CHECKOUT PAGES
   ============================================================ */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content { max-width: 960px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title { font-family: Georgia, 'Times New Roman', serif; font-size: 30px; color: #3d3628; text-align: center; margin-bottom: 30px; }
/* Cart table */
.woocommerce-cart table.shop_table { border: 1px solid #e5dfd3; border-radius: 12px; overflow: hidden; border-collapse: separate; }
.woocommerce-cart table.shop_table thead th { background: #faf8f3; font-family: Georgia, 'Times New Roman', serif; font-size: 14px; color: #5c5547; padding: 14px 16px; border-bottom: 2px solid #e5dfd3; text-transform: uppercase; letter-spacing: 0.5px; }
.woocommerce-cart table.shop_table tbody td { padding: 16px; border-bottom: 1px solid #f0ece1; font-size: 14px; color: #5c5547; vertical-align: middle; }
/* Cart buttons */
.woocommerce-cart .button, 
.woocommerce-cart .checkout-button,
.woocommerce-checkout .button { border-radius: 10px !important; font-weight: 600 !important; padding: 12px 28px !important; transition: all 0.3s !important; }
.woocommerce-cart .checkout-button { background: linear-gradient(135deg, #c8a84e, #b8922e) !important; border: none !important; font-size: 16px !important; box-shadow: 0 4px 16px rgba(200,168,78,0.3) !important; }
.woocommerce-cart .checkout-button:hover { background: linear-gradient(135deg, #b8922e, #a07c20) !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,78,0.45) !important; }
/* Cart coupon */
.woocommerce-cart .coupon .input-text { border: 1px solid #e5dfd3; border-radius: 8px; padding: 10px 14px; font-size: 14px; }
.woocommerce-cart .coupon .button { border-radius: 8px !important; }
/* Cart totals */
.woocommerce-cart .cart_totals { background: #faf8f3; border-radius: 14px; padding: 24px; border: 1px solid #e5dfd3; }
.woocommerce-cart .cart_totals h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; color: #3d3628; }
.woocommerce-cart .cart_totals table { border: none; }
.woocommerce-cart .cart_totals .order-total td { color: #c8a84e; font-size: 18px; font-weight: 700; }
/* Checkout */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; color: #3d3628; }
.woocommerce-checkout .woocommerce-checkout-review-order-table { border: 1px solid #e5dfd3; border-radius: 12px; overflow: hidden; }
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th { background: #faf8f3; font-family: Georgia, 'Times New Roman', serif; font-size: 14px; color: #5c5547; padding: 14px 16px; text-transform: uppercase; }
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td { color: #c8a84e; font-size: 18px; font-weight: 700; }
.woocommerce-checkout #place_order { background: linear-gradient(135deg, #c8a84e, #b8922e) !important; border: none !important; border-radius: 10px !important; font-size: 16px !important; font-weight: 600 !important; padding: 16px 32px !important; box-shadow: 0 4px 16px rgba(200,168,78,0.3) !important; }
.woocommerce-checkout #place_order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,78,0.45) !important; }
/* WooCommerce notices */
.woocommerce-message { background: #f0f8f0; border-top: 3px solid #8ab661; border-radius: 10px; padding: 16px 20px; }
.woocommerce-error { background: #fff5f5; border-top: 3px solid #c44; border-radius: 10px; padding: 16px 20px; }
/* Checkout birth info section */
.fef-birth-section { background: #faf8f3; border: 2px solid #d4caaf; border-radius: 14px; padding: 28px; margin: 20px 0; }
.fef-birth-section h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; color: #3d3628; margin: 0 0 6px; }
.fef-birth-section .fef-birth-hint { font-size: 13px; color: #8c8c8c; margin-bottom: 16px; }
.fef-birth-section .form-row { margin-bottom: 14px; }
.fef-birth-section .form-row label { font-size: 14px; font-weight: 500; color: #5c5547; display: block; margin-bottom: 4px; }
.fef-birth-section .form-row input,
.fef-birth-section .form-row select { border: 1px solid #d4caaf; border-radius: 8px; padding: 10px 14px; font-size: 14px; width: 100%; background: #fff; }
.fef-birth-section .form-row input:focus,
.fef-birth-section .form-row select:focus { border-color: #c8a84e; outline: none; box-shadow: 0 0 0 3px rgba(200,168,78,0.15); }
@media (max-width: 768px) {
    .woocommerce-cart .entry-title, .woocommerce-checkout .entry-title { font-size: 24px; }
    .woocommerce-cart table.shop_table thead { display: none; }
    .woocommerce-cart table.shop_table tbody td { display: block; text-align: right; padding: 10px 14px; }
    .woocommerce-cart table.shop_table tbody td::before { content: attr(data-title); float: left; font-weight: 600; color: #3d3628; }
}

/* === PRODUCT PAGE ENHANCEMENTS === */
.woocommerce div.product {
    padding: 0 !important;
}
.woocommerce div.product .entry-summary {
    padding: 20px 0 !important;
}
.woocommerce div.product .product_meta {
    display: none;
}
/* Product page breadcrumb */
.woocommerce .woocommerce-breadcrumb {
    font-family: 'Jost', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    color: #9a8c7e !important;
    text-transform: uppercase !important;
    margin-bottom: 30px !important;
    padding: 20px 0 0 !important;
}
.woocommerce .woocommerce-breadcrumb a {
    color: #9a8c7e !important;
    text-decoration: none !important;
}
.woocommerce .woocommerce-breadcrumb a:hover { color: #b8860b !important; }
/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
    font-family: 'Jost', sans-serif !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #5a4e3c !important;
    line-height: 1.8 !important;
    margin: 16px 0 28px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #EDE8E1 !important;
}
/* Rating stars */
.woocommerce .star-rating span::before,
.woocommerce p.stars a::after {
    color: #b8860b !important;
}

/* === FAQ PAGE === */
.fe-faq-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}
.fe-faq-item {
    border-bottom: 1px solid #EDE8E1;
    padding: 0;
}
.fe-faq-question {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}
.fe-faq-question:hover { color: #b8860b; }
.fe-faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #b8860b;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}
.fe-faq-answer {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #5a4e3c;
    line-height: 1.8;
    padding: 0 0 24px;
    max-height: 500px;
}

/* === ABOUT PAGE === */
.fe-about-wrap .about-highlight {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #b8860b;
}

/* === CONTACT PAGE === */
.fe-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}
@media (max-width: 768px) { .fe-contact-grid { grid-template-columns: 1fr; } }
.fe-contact-card {
    text-align: center;
    padding: 32px 24px;
    background: #FFFDF7;
    border: 1px solid #EDE8E1;
    border-radius: 4px;
}
.fe-contact-card .card-icon { font-size: 28px; margin-bottom: 12px; }
.fe-contact-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 8px;
}
.fe-contact-card p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #5a4e3c;
    line-height: 1.7;
    margin: 0;
}
.fe-contact-card a { color: #b8860b; text-decoration: none; }
.fe-contact-card a:hover { text-decoration: underline; }

/* === LEGAL PAGES (Privacy, Terms, etc.) === */
.fe-legal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 26px !important;
    color: #1e293b !important;
    letter-spacing: 0.5px !important;
    margin: 36px 0 12px !important;
}
.fe-legal-content p,
.fe-legal-content li {
    font-family: 'Jost', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.85 !important;
    color: #5a4e3c !important;
}

/* === WP FORMS - Luxury Styling === */
.wpforms-field label {
    font-family: 'Jost', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #5a4e3c !important;
    margin-bottom: 6px !important;
}
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
    font-family: 'Jost', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    border: 1px solid #EDE8E1 !important;
    border-radius: 3px !important;
    padding: 12px 16px !important;
    color: #334155 !important;
    background: #FFFDF7 !important;
    transition: border-color 0.2s !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
    border-color: #b8860b !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.08) !important;
}
.wpforms-submit {
    background: #b8860b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 14px 40px !important;
    cursor: pointer !important;
    transition: all 0.25s !important;
}
.wpforms-submit:hover {
    background: #a07308 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(184,134,11,0.3) !important;
}

/* === COOKIE CONSENT (Cookie Law Info) === */
#cookie-law-info-bar {
    background: #1a2336 !important;
    border-top: 1px solid rgba(184,134,11,0.3) !important;
}
#cookie-law-info-bar .cli-bar-message {
    font-family: 'Jost', sans-serif !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    color: #C8C0B4 !important;
    letter-spacing: 0.3px !important;
}
#cookie-law-info-bar .cli-plugin-button {
    background: #b8860b !important;
    border: none !important;
    border-radius: 3px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 8px 20px !important;
    color: #fff !important;
}

/* === PAGE CONTENT BODY === */
.entry-content p,
.entry-content li {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #5a4e3c;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* === FINAL CTA SECTION === */
.final-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    color: #2d2418;
    letter-spacing: 1px;
    margin: 0 0 16px;
    line-height: 1.2;
}
.final-cta-sub {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #5a4e3c;
    margin: 0 0 40px;
    line-height: 1.7;
}
.home-final-cta .btn-gold {
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 18px 44px;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(184,134,11,0.3);
}
.home-final-cta .btn-gold:hover {
    background: #a07308;
    box-shadow: 0 8px 32px rgba(184,134,11,0.4);
    transform: translateY(-2px);
    color: #fff;
}


/* Hero section overrides for dark background */
.home-hero .home-hero-btns .btn-outline-lg,
.home-hero-btns a[class*="outline"] {
    color: #FFFFFF !important;
    border-color: rgba(255,255,255,0.75) !important;
    background: transparent !important;
}
.home-hero .home-hero-btns .btn-outline-lg:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
}
/* Trust bar items on dark bg */
.home-hero .home-hero-trust .home-trust-item {
    color: rgba(255,255,255,0.85) !important;
}
.home-hero .home-hero-trust .home-trust-icon {
    opacity: 1 !important;
}

/* ============================================================
   FAQ ACCORDION — Enhanced <details>/<summary> elements
   ============================================================ */
.faq-category { margin-bottom: 32px; }
.faq-cat-header {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 14px; margin-bottom: 8px;
    border-bottom: 2px solid #b8860b;
}
.faq-cat-icon { display: flex; align-items: center; color: #b8860b; }
.faq-cat-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px; color: #1e293b; margin: 0; letter-spacing: 1px;
}

.faq-details {
    border-bottom: 1px solid #ede8e1;
    transition: box-shadow 0.25s;
}
.faq-details[open] { background: #fdfcfa; border-radius: 8px; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.faq-details + .faq-details { margin-top: 0; }

.faq-summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 16px; cursor: pointer; list-style: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px; font-weight: 600; color: #1e293b;
    letter-spacing: 0.5px; transition: color 0.2s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #b8860b; }
.faq-summary:focus { outline: none; color: #b8860b; }

.faq-chevron {
    flex-shrink: 0; margin-left: 16px;
    transition: transform 0.3s ease;
}
.faq-details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    padding: 0 16px 22px;
    font-family: 'Jost', sans-serif; font-size: 14px;
    color: #5a4e3c; line-height: 1.8;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Contact minor additions */
.contact-card-sub { font-size: 13px; color: #7a6e5c; margin: 0 0 8px; font-weight: 300; }
.contact-form-sub { font-size: 14px; color: #6b6355; margin: 0 0 24px; }
.contact-hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px; color: #2d2a24; margin: 0 0 12px;
}

@media (max-width: 768px) {
    .faq-cat-header h2 { font-size: 20px; }
    .faq-summary { font-size: 16px; padding: 16px 12px; }
}

/* Hide duplicate Astra page title on Contact Us page */
.page-id-210 .entry-header,
.page-id-210 .entry-title { display: none !important; }

/* Contact form card equal height — merged into main .contact-form-card block */

/* Hide duplicate Astra entry-title H1 on pages that have their own H1 */
.page-id-97 .entry-header,
.page-id-97 .entry-title { display: none !important; }

.page-id-211 .entry-header,
.page-id-211 .entry-title { display: none !important; }
