/* ==========================================================
   MY FIBRO COACH — style.css
   Replaces Desert & River brand tokens with MFC palette.
   Structural CSS (carousel, navbar, footer, etc.) preserved.
   ========================================================== */

/* ── BRAND TOKENS ────────────────────────────────────────── */
:root {
    --bs-primary:        #00afb9;   /* MFC Teal */
    --bs-primary-rgb:    0, 175, 185;
    --bs-secondary:      #967da9;   /* MFC Mauve */
    --bs-secondary-rgb:  150, 125, 169;
    --bs-dark:           #1a1a2e;   /* MFC Dark */
    --bs-white:          #ffffff;
    --bs-light:          #f8f6f4;
    --bs-body:           #4a4a5a;
    --mfc-gold:          #b8a06f;
    --mfc-teal:          #00afb9;
    --mfc-mauve:         #967da9;
    --mfc-dark:          #1a1a2e;
    --mfc-light:         #f8f6f4;
}

/* ── GLOBAL ──────────────────────────────────────────────── */
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--bs-body);
    background: var(--bs-white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    letter-spacing: .2px;
    color: var(--mfc-dark);
}

a { color: var(--mfc-teal); }
a:hover { color: #008a92; }

.bg-light { background-color: var(--mfc-light) !important; }
.text-body { color: rgba(74,74,90,.85) !important; }
.text-primary { color: var(--mfc-teal) !important; }
.text-secondary { color: var(--mfc-mauve) !important; }
.text-gold { color: var(--mfc-gold) !important; }
.border-primary { border-color: rgba(0,175,185,.35) !important; }
.shadow-soft { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.rounded-2xl { border-radius: 1.25rem !important; }

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0,175,185,0),
        rgba(0,175,185,.35) 40%,
        rgba(150,125,169,.35) 60%,
        rgba(184,160,111,0));
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { font-weight: 600; transition: .5s; }

.btn-square  { width: 32px; height: 32px; }
.btn-sm-square  { width: 34px; height: 34px; }
.btn-md-square  { width: 44px; height: 44px; }
.btn-lg-square  { width: 56px; height: 56px; }
.btn-xl-square  { width: 66px; height: 66px; }
.btn-square,.btn-sm-square,.btn-md-square,.btn-lg-square,.btn-xl-square {
    padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal;
}

.btn.btn-primary {
    background: var(--mfc-teal);
    border-color: var(--mfc-teal);
    color: #fff;
}
.btn.btn-primary:hover {
    background: #008a92;
    border-color: #008a92;
    color: #fff;
}

.btn.btn-secondary {
    background: var(--mfc-mauve);
    border-color: var(--mfc-mauve);
    color: #fff;
}
.btn.btn-secondary:hover {
    background: #7f6993;
    border-color: #7f6993;
    color: #fff;
}

.btn-gold {
    background: var(--mfc-gold);
    border-color: var(--mfc-gold);
    color: #fff;
    font-weight: 700;
}
.btn-gold:hover {
    background: #a08860;
    border-color: #a08860;
    color: #fff;
}

.btn-outline-dr {
    border: 1px solid rgba(0,175,185,.5);
    color: var(--mfc-dark);
}
.btn-outline-dr:hover {
    background: rgba(0,175,185,.08);
    border-color: var(--mfc-teal);
    color: var(--mfc-teal);
}

/* ── SPINNER ─────────────────────────────────────────────── */
#spinner { opacity:0; visibility:hidden; transition: opacity .5s ease-out, visibility 0s linear .5s; z-index:99999; }
#spinner.show { transition: opacity .5s ease-out, visibility 0s linear 0s; visibility:visible; opacity:1; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top { position:fixed; right:30px; bottom:30px; transition:0.5s; z-index:99; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.container-fluid.position-relative.p-0 .navbar,
.navbar.navbar-light {
    background: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 18px;
    padding: 28px 0;
    color: var(--mfc-dark) !important;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link { padding: 20px 0; color: var(--mfc-dark); }

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--mfc-teal) !important;
}

/* Navbar underline marker */
.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 50%; bottom: 10px;
    width: 52px; height: 1px;
    background: var(--mfc-teal);
    transform: translateX(-50%);
    opacity: 0; transition: 0.3s;
}
.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 11px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 10px solid var(--mfc-teal);
    opacity: 0; transition: 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after { opacity:1; }

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link::before,
    .navbar-light .navbar-nav .nav-link::after { display:none; }
}

/* Logo */
.navbar-light .navbar-brand .brand-mark { display:flex; align-items:center; gap:.75rem; }
.navbar-light .navbar-brand .brand-mark img { height:60px; width:auto; border-radius:12px; }
.navbar-light .navbar-brand .brand-name { font-family:'Cormorant Garamond',serif; font-weight:800; color:var(--mfc-dark); margin:0; line-height:1; font-size:1.4rem; }
.navbar-light .navbar-brand .brand-tagline { font-size:.78rem; color:var(--mfc-teal); letter-spacing:.08em; text-transform:uppercase; margin:0; }

.navbar.navbar-expand-lg { padding-top:10px !important; padding-bottom:10px !important; }

@media (max-width:991.98px) {
    .sticky-top.navbar-light { position:relative; background:#fff; }
    .navbar.navbar-expand-lg .navbar-toggler { padding:10px 20px; border:1px solid var(--mfc-teal); color:var(--mfc-teal); }
    .navbar-light .navbar-collapse { margin-top:15px; border-top:1px solid rgba(0,0,0,.08); }
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link { padding:10px 0; margin-left:0; color:var(--mfc-dark); }
    .navbar-light .navbar-brand .brand-mark img { height:48px !important; }
}

@media (min-width:992px) {
    .navbar .nav-item .dropdown-menu { display:block; visibility:hidden; top:100%; transform:rotateX(-75deg); transform-origin:0% 0%; border:0; border-radius:10px; transition:.5s; opacity:0; }
    .navbar-light { position:relative; width:100%; top:auto; left:auto; border-top:0; border-right:0; border-bottom:1px solid; border-left:0; border-style:dotted; z-index:999; }
    .sticky-top.navbar-light { position:sticky; top:0; background:var(--mfc-light); border:none; }
    .navbar .nav-item:hover .dropdown-menu { transform:rotateX(0deg); visibility:visible; background:var(--mfc-light); transition:.5s; opacity:1; }
    .navbar-light,.sticky-top.navbar-light { position:relative !important; top:auto !important; left:auto !important; }
}

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel-indicators { display:none; }
.carousel .carousel-control-prev, .carousel .carousel-control-next { width:0; }
.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position:absolute; top:50%; transform:translateY(-50%);
    padding:25px; display:flex; align-items:center; justify-content:center;
    background:var(--mfc-teal); transition:0.5s;
}
.carousel .carousel-control-prev .carousel-control-prev-icon { left:0; border-top-right-radius:50px; border-bottom-right-radius:50px; }
.carousel .carousel-control-next .carousel-control-next-icon { right:0; border-top-left-radius:50px; border-bottom-left-radius:50px; }
.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover { background:var(--mfc-mauve); }
.carousel .carousel-inner .carousel-item { position:relative; }
.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position:absolute; width:100%; height:100%; top:0; left:0; padding-top:100px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)); background-size:cover;
}
.carousel-caption-1-content { text-align:center; padding-left:0; padding-right:0; }
.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position:absolute; width:100%; height:100%; top:0; left:0; padding-top:100px;
    display:flex; align-items:center; justify-content:center; text-align:center;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)); background-size:cover;
}
.carousel-caption-2-content { text-align:center; padding-left:0; padding-right:0; }

/* Hero Slide 1 — portrait left, text balanced in remaining space */
.carousel .carousel-inner .carousel-item .carousel-caption-1.carousel-caption-photo {
    justify-content: flex-start;
    background: none;
}
.carousel-caption-photo .carousel-caption-1-content {
    text-align: right;
    padding-left: 36%;
    padding-right: 5%;
    box-sizing: content-box;
}
.carousel-caption-photo .carousel-caption-1-content h1 {
    font-size: clamp(2.6rem, 3.3vw, 4.2rem);
    line-height: 1.15;
}
.carousel-caption-photo .carousel-caption-1-content .d-flex {
    justify-content: flex-end;
}

/* Hero Slide 2 — book cover right, text balanced in remaining space (mirror of slide 1) */
.carousel .carousel-inner .carousel-item .carousel-caption-2.carousel-caption-book {
    justify-content: flex-start;
    background: none;
}
.carousel-caption-book .carousel-caption-2-content {
    text-align: left;
    padding-left: 5%;
    padding-right: 36%;
    box-sizing: content-box;
}
.carousel-caption-book .carousel-caption-2-content h1 {
    font-size: clamp(2.6rem, 3.3vw, 4.2rem);
    line-height: 1.15;
}
.carousel-caption-book .carousel-caption-2-content .d-flex {
    justify-content: flex-start;
}

@media (max-width:992px) {
    .carousel .carousel-inner .carousel-item { height:700px; margin-top:0; }
    .carousel .carousel-inner .carousel-item img { height:700px; object-fit:cover; }
    .carousel .carousel-inner .carousel-item .carousel-caption-1,
    .carousel .carousel-inner .carousel-item .carousel-caption-2 { max-width:100% !important; justify-content:center; }
    .carousel-caption-1-content,.carousel-caption-2-content { padding:0 20px !important; text-align:center !important; }
    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon { display:none; }
    /* Restore full dark overlay + center text on mobile so it stays readable over the portrait */
    .carousel .carousel-inner .carousel-item .carousel-caption-1.carousel-caption-photo {
        background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)) !important;
        justify-content: center;
    }
    .carousel-caption-photo .carousel-caption-1-content { text-align:center !important; padding-left:0 !important; padding-right:0 !important; }
}

/* ── CARD ────────────────────────────────────────────────── */
.card-dr {
    background: rgba(248,246,244,.9);
    border: 1px solid rgba(0,175,185,.15);
    transition: all 0.3s ease;
}
.card-dr:hover { transform: translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,.1); }

/* ── TRUST BAR ───────────────────────────────────────────── */
.mfc-trust-bar {
    background: var(--mfc-dark);
}
.mfc-trust-bar span {
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
}
.mfc-trust-dot {
    color: var(--mfc-gold);
    margin: 0 10px;
    font-size: .6rem;
    vertical-align: middle;
}

/* ── STEP NUMBERS ────────────────────────────────────────── */
.mfc-step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.mfc-bg-gold { background: var(--mfc-gold); }

/* ── OFFER CARDS ─────────────────────────────────────────── */
.mfc-offer-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,175,185,.15);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s;
}
.mfc-offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.mfc-offer-card.mfc-offer-featured { border: 2px solid var(--mfc-gold); }
.mfc-offer-header { padding: 20px 24px 16px; }
.mfc-offer-teal { background: var(--mfc-teal); }
.mfc-offer-mauve { background: var(--mfc-mauve); }
.mfc-offer-gold { background: var(--mfc-gold); }
.mfc-offer-body { padding: 20px 24px; }
.mfc-offer-price { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:700; color:var(--mfc-dark); }

/* ── TESTIMONIAL CARDS ───────────────────────────────────── */
.mfc-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border-left: 4px solid var(--mfc-teal);
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.mfc-testimonial-mauve { border-left-color: var(--mfc-mauve); }
.mfc-testimonial-gold  { border-left-color: var(--mfc-gold); }

/* ── RIPPLE BAR ──────────────────────────────────────────── */
.mfc-ripple-bar {
    background: linear-gradient(135deg, var(--mfc-mauve) 0%, var(--mfc-teal) 100%);
}

/* ── BOOK CTA ────────────────────────────────────────────── */
.mfc-book-cta { background: var(--mfc-dark); }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-img { height:100%; }
.about-img img { height:100%; object-fit:cover; }
@media (max-width:768px) { .about-img { height:300px; } }

/* ── BLOG ────────────────────────────────────────────────── */
.blog .blog-item { border-radius:10px; background:#fff; transition:0.5s; }
.blog .blog-item:hover { box-shadow:0 0 45px rgba(0,0,0,.2); }
.blog .blog-item .blog-img { position:relative; overflow:hidden; border-top-left-radius:10px; border-top-right-radius:10px; }
.blog .blog-item .blog-img img { transition:0.5s; }
.blog .blog-item:hover .blog-img img { transform:scale(1.2); }
.blog .blog-item .blog-date { position:absolute; top:25px; left:25px; border-radius:10px; background:var(--mfc-teal); color:#fff; z-index:2; }
.blog .blog-item .blog-content a { transition:0.5s; }
.blog .blog-item:hover .blog-content a:hover { color:var(--mfc-teal) !important; }
.blog-item { border-radius:10px; background:#fff; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.07); }
.blog-item .blog-img { position:relative; overflow:hidden; }
.blog-item .blog-img img { transition:.5s; width:100%; }
.blog-item:hover .blog-img img { transform:scale(1.05); }
.blog-item .blog-date { position:absolute; bottom:0; left:0; background:var(--mfc-teal); color:#fff; padding:4px 14px; font-size:.82rem; border-top-right-radius:8px; }
.blog-item .blog-content { padding:20px 22px; }
.product-item { border-radius:12px; overflow:hidden; background:#fff; box-shadow:0 4px 20px rgba(0,0,0,.07); }
.product-item .product-content { padding:20px 22px; }

/* ── SERVICE ─────────────────────────────────────────────── */
.service-item { position:relative; box-shadow:0 0 45px rgba(0,0,0,.08); }
.service-item::after { content:""; position:absolute; width:0; height:0; left:0; bottom:0; border-radius:10px; background:var(--mfc-teal); transition:0.5s; z-index:1; }
.service-item:hover::after { width:100%; height:100%; }
.service-item .service-btn { width:80px; height:80px; border-radius:50px; display:flex; align-items:center; justify-content:center; background:var(--mfc-teal); transition:0.5s; }
.service-item:hover .service-btn { background:#fff; }
.service-item:hover .service-btn i { transform:rotate(360deg); color:var(--mfc-teal) !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--mfc-dark) !important; }
.copyright { border-top:1px solid rgba(255,255,255,.08); background: var(--mfc-dark) !important; }

.footer h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:#fff; }
.footer p  { color:rgba(255,255,255,.65) !important; line-height:1.7; }

.footer-links .footer-link {
    color: rgba(255,255,255,.7) !important;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color .2s, transform .2s;
    line-height: 1.6;
}
.footer-links .footer-link:hover {
    color: var(--mfc-teal) !important;
    transform: translateX(3px);
}

/* Footer social — icon-based (Font Awesome) */
.footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.footer-social-grid a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex; align-items:center; justify-content:center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s;
}
.footer-social-grid a:hover { background: var(--mfc-teal); }

/* Breadcrumb */
.bg-breadcrumb {
    position:relative; overflow:hidden;
    background: linear-gradient(rgba(26,26,46,.75),rgba(26,26,46,.75)), url(../img/breadcrumb.jpg);
    background-position:center top; background-repeat:no-repeat; background-size:cover;
    min-height:320px; padding:120px 0 90px;
    display:flex; align-items:center;
}
.bg-breadcrumb .breadcrumb-item a { color:#fff; }
@media (max-width:992px) { .bg-breadcrumb { min-height:260px !important; padding:90px 0 70px !important; } }


/* ── HERO PLACEHOLDER (no photography yet) ──────────────── */
.hero-placeholder {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, var(--mfc-teal) 0%, var(--mfc-mauve) 100%);
}
@media (max-width: 992px) {
    .hero-placeholder { height: 700px; }
}

/* Hero Slide 1 — composited portrait/gold-bar/gradient background */
.hero-placeholder-photo {
    background-image: url('../img/hero-slide1-bg-v2.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

/* Hero Slide 2 — book cover composited on right, gradient field on left */
.hero-placeholder-book {
    background-image: url('../img/hero-slide2-bg.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* ── PAGE HEADER (no breadcrumb photography yet) ──────────────── */
.bg-breadcrumb-mfc {
    position:relative; overflow:hidden;
    background: linear-gradient(135deg, var(--mfc-dark) 0%, var(--mfc-teal) 120%);
    min-height:280px; padding:110px 0 70px;
    display:flex; align-items:center;
}
.bg-breadcrumb-mfc .breadcrumb-item a { color:#fff; }
.bg-breadcrumb-mfc .breadcrumb-item.active { color: var(--mfc-gold); }
@media (max-width:992px) { .bg-breadcrumb-mfc { min-height:220px !important; padding:90px 0 60px !important; } }

/* ── Coming soon / concept page note ──────────────── */
.mfc-notice {
    background: rgba(0,175,185,.08);
    border-left: 4px solid var(--mfc-teal);
    border-radius: 10px;
    padding: 18px 22px;
}

/* ── Pricing tier card (Work With Me) ──────────────── */
.mfc-offer-mauve-deep { background: var(--mfc-dark); }

/* ══════════════════════════════════════════════════════════
   BOOK PAGE REDESIGN (book.html)
   ══════════════════════════════════════════════════════════ */

/* Hero */
.book-hero { background: var(--mfc-dark); padding: 130px 0 70px; }
@media (max-width:991.98px) { .book-hero { padding: 110px 0 50px; } }
.book-hero .eyebrow { color: var(--mfc-gold); letter-spacing:.12em; font-size:.85rem; font-weight:700; }
.book-hero img.hero-mockup { max-width: 380px; width:100%; border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,.45); }
.book-hero .secondary-link { color: rgba(255,255,255,.75); font-size:.95rem; text-decoration:underline; display:inline-block; margin-top:14px; }
.book-hero .secondary-link:hover { color:#fff; }

/* Small uppercase section labels */
.mfc-label { font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }

/* Teal band */
.mfc-band-teal { background: var(--mfc-teal); }

/* Light mauve value band */
.mfc-band-mauve-light { background: #f1ecf4; }
.mfc-band-mauve-light .mfc-label { color: #7f6993; }

/* Pull quote */
.pull-quote {
    font-family:'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--mfc-gold);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

/* Sneak peek email form */
.sneak-peek-box { max-width: 560px; margin: 0 auto; }
.sneak-peek-box input[type="email"] {
    border-radius: 50px; border: none; padding: .85rem 1.4rem;
}
#sneakPeekContent {
    background: #fff; color: var(--bs-body); border-radius: 1.25rem;
    padding: 2.5rem; text-align:left; max-width: 760px; margin: 2.5rem auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
#sneakPeekContent h3, #sneakPeekContent h4 { color: var(--mfc-dark); }
#sneakPeekContent p { line-height: 1.8; }

/* Testimonial cards */
.testimonial-card {
    background: var(--mfc-light);
    border-left: 4px solid var(--mfc-mauve);
    border-radius: 0 1.25rem 1.25rem 0;
    padding: 2rem;
    height: 100%;
}
.testimonial-card .stars { color: var(--mfc-gold); letter-spacing:.15em; margin-bottom: .75rem; }
.testimonial-card .quote { font-style: italic; }
.testimonial-card .name { font-weight: 700; color: var(--mfc-dark); margin-top: 1rem; margin-bottom: 0; }
.testimonial-card .descriptor { font-size:.85rem; color: rgba(74,74,90,.7); }

/* Buy now */
.mfc-band-teal-light { background: #e8f8f9; }
.qty-stepper { display:inline-flex; align-items:center; border:1px solid rgba(0,0,0,.15); border-radius: 50px; overflow:hidden; background:#fff; }
.qty-stepper button { width:42px; height:42px; border:none; background:transparent; font-size:1.2rem; color: var(--mfc-teal); font-weight:700; }
.qty-stepper button:hover { background: rgba(0,175,185,.08); }
.qty-stepper input { width: 50px; text-align:center; border:none; font-weight:700; font-size:1rem; }
.qty-stepper input:focus { outline:none; }

#giftFields { display:none; }
#giftFields.show { display:block; }

.trust-signal { font-size:.85rem; color: rgba(74,74,90,.8); display:flex; align-items:center; gap:.5rem; margin-bottom:.5rem; }

/* Gift of healing */
.gift-section { background: var(--mfc-dark); position: relative; }
.gift-section.with-bg {
    background-image: linear-gradient(rgba(26,26,46,.68), rgba(26,26,46,.68)), url('../img/book-mockup-3.png');
    background-size: cover; background-position: center;
}

/* Format badges */
.format-badge {
    display:inline-flex; align-items:center; gap:.5rem;
    background: var(--mfc-light); border-radius: 50px; padding:.6rem 1.4rem;
    font-weight:600; color: var(--mfc-dark); font-size:.9rem;
}
