/* WaadiFresh base styles — Organic Biophilic direction: warm, rounded, green-forward */

/* ─── Brand fonts (self-hosted, vendored under assets/fonts/) ─────────────── */

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/fspimlico/FSPimlico-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/fspimlico/FSPimlico-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/fspimlico/FSPimlico-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/fspimlico/FSPimlico-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'GosmickSans';
    src: url('../fonts/gosmicksans/GosmickSans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GosmickSans';
    src: url('../fonts/gosmicksans/GosmickSansBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BoldMarker';
    src: url('../fonts/boldmarker/BoldMarker.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand */
    --wf-green: #1f6b3d;
    --wf-green-dark: #144a2a;
    --wf-green-light: #e8f3ec;
    --wf-amber: #144a2a;
    --wf-amber-light: #fef3e2;
    --wf-cream: #fbf7f0;
    --wf-ink: #241f18;
    --wf-muted: #6b6459;
    --wf-border: #e7ded0;
    --wf-yellow: #ffe007;

    /* Typography */
    --wf-font-heading: 'FSPimlico', 'Poppins', sans-serif;
    --wf-font-body: 'Open Sans', sans-serif;
    --wf-font-accent: 'GosmickSans', 'Poppins', sans-serif;
    --wf-font-marker: 'BoldMarker', cursive;

    /* Shape */
    --wf-radius: 18px;
    --wf-radius-sm: 12px;
    --wf-shadow: 0 8px 28px rgba(36, 31, 24, 0.08);
}

body {
    background-color: var(--wf-cream);
    color: var(--wf-ink);
    font-family: var(--wf-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.wf-heading {
    font-family: var(--wf-font-heading);
    font-weight: 600;
    color: var(--wf-ink);
}

main {
    min-height: 60vh;
}

a {
    color: var(--wf-green);
}

.text-muted {
    color: var(--wf-muted) !important;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.btn-wf-primary {
    background-color: var(--wf-green);
    border-color: var(--wf-green);
    color: #fff;
    border-radius: var(--wf-radius-sm);
    font-weight: 600;
    padding: 0.65rem 1.6rem;
}

.btn-wf-primary:hover,
.btn-wf-primary:focus {
    background-color: var(--wf-green-dark);
    border-color: var(--wf-green-dark);
    color: #fff;
}

.btn-wf-accent {
    background-color: var(--wf-amber);
    border-color: var(--wf-amber);
    color: #fff;
    border-radius: var(--wf-radius-sm);
    font-weight: 600;
    padding: 0.65rem 1.6rem;
}

.btn-wf-accent:hover,
.btn-wf-accent:focus {
    background-color: var(--wf-yellow);
    border-color: var(--wf-yellow);
    color: #000;
}

.btn-wf-outline {
    background-color: transparent;
    border: 2px solid var(--wf-green);
    color: var(--wf-green);
    border-radius: var(--wf-radius-sm);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.btn-wf-outline:hover,
.btn-wf-outline:focus {
    background-color: var(--wf-green);
    color: #fff;
}

/* ─── Sections & cards ────────────────────────────────────────────────────── */

.wf-section {
    padding: 4rem 0;
}

.wf-section-alt {
    background-color: var(--wf-green-light);
}

.wf-eyebrow {
    font-family: var(--wf-font-accent);
    color: var(--wf-amber);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ─── Hand-drawn marker badge (sparingly — sticker-style callouts) ────────── */

.wf-marker-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--wf-font-marker);
    font-size: 1.15rem;
    color: #fff;
    background: var(--wf-amber);
    padding: 0.35rem 1rem;
    border-radius: 50% 50% 48% 52% / 55% 48% 52% 45%;
    transform: rotate(-4deg);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
    line-height: 1;
}

.wf-card {
    background: #fff;
    border: 1px solid var(--wf-border);
    border-radius: var(--wf-radius);
    box-shadow: var(--wf-shadow);
    padding: 1.75rem;
}

.wf-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--wf-green-light);
    color: var(--wf-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ─── Navbar / footer ─────────────────────────────────────────────────────── */

.wf-navbar {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(36, 31, 24, 0.06);
}

.wf-navbar .nav-link {
    font-weight: 600;
    color: var(--wf-ink);
}

.wf-navbar .nav-link.active,
.wf-navbar .nav-link:hover {
    color: var(--wf-green);
}

.wf-navbar .dropdown-menu {
    border: 1px solid var(--wf-border);
    border-radius: var(--wf-radius-sm);
    box-shadow: var(--wf-shadow);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.wf-navbar .dropdown-item {
    border-radius: 8px;
    font-weight: 600;
    color: var(--wf-ink);
    padding: 0.5rem 0.85rem;
}

.wf-float-deco {
    max-width: 200px;
    z-index: 999;

}

@media screen and (max-width: 768px) {
    .wf-float-deco {
        max-width: 130px;
    }
}

.wf-navbar .dropdown-item:hover,
.wf-navbar .dropdown-item:focus,
.wf-navbar .dropdown-item.active {
    background-color: var(--wf-green-light);
    color: var(--wf-green);
}

.wf-logo-img {
    height: 60px;
    width: auto;
}

.wf-footer {
    background-color: var(--wf-green-dark);
    color: #eef5f0;
}

.wf-footer a {
    color: #d7e9dd;
    font-size: 16px;
    text-decoration: none;
}

.wf-footer a:hover {
    color: #fff;
}

.socialicons {
    background: white !important;
    padding: 7px 12px !important;
    border-radius: 15px !important;
    color: #144a2a !important;
}

/* ─── Footer wave wordmark — per-letter idle bounce ────────────────────────── */

.wf-wave-wordmark {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--wf-font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.14);
    font-size: clamp(2.75rem, 9vw, 6rem);
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 1rem 0 0.5rem;
    user-select: none;
}

.wf-wave-letter {
    display: inline-block;
    transform-origin: bottom center;
    animation: wf-letter-wave 2.6s ease-in-out infinite;
}

@keyframes wf-letter-wave {

    0%,
    100% {
        transform: translateY(0) scaleY(1);
    }

    50% {
        transform: translateY(-10px) scaleY(1.14);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Admin — auth + dashboard shell (Phase 3)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --admin-sidebar-width: 250px;
    --admin-header-height: 60px;
}

/* ─── Auth (login) ────────────────────────────────────────────────────────── */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wf-green-light);
    padding: 1rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--wf-border);
    border-radius: var(--wf-radius);
    box-shadow: var(--wf-shadow);
    background: #fff;
    padding: 2rem;
}

.auth-logo {
    display: block;
    margin: 0 auto 1.5rem;
    height: 48px;
}

/* ─── Admin shell ─────────────────────────────────────────────────────────── */

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    width: var(--admin-sidebar-width);
    background: var(--wf-green-dark);
    color: #eef5f0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.2s ease;
}

.app-main {
    margin-left: var(--admin-sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    height: var(--admin-header-height);
    background: #fff;
    border-bottom: 1px solid var(--wf-border);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
}

.app-content {
    flex: 1;
    padding: 1.5rem;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.sidebar-brand img {
    height: 32px;
}

.sidebar-nav {
    padding: 0.5rem 0;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6rem 1rem;
    color: #cfe3d6;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar-nav-item.active {
    background: var(--wf-amber);
    color: #fff;
}

.sidebar-nav-item i {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .app-sidebar {
        transform: translateX(-100%);
    }

    .app-sidebar.show {
        transform: translateX(0);
    }

    .app-main {
        margin-left: 0;
    }
}

/* ─── WhatsApp float (INT-01) ─────────────────────────────────────────────── */

.wf-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: transform 150ms ease;
}

.wf-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

/* ─── Blog content + recipe steps ─────────────────────────────────────────── */

.wf-blog-content {
    font-size: 1.05rem;
    line-height: 1.75;
}

.wf-blog-content img {
    max-width: 100%;
    border-radius: var(--wf-radius-sm);
}

.wf-blog-content h2,
.wf-blog-content h3,
.wf-blog-content h4 {
    margin-top: 1.75rem;
}

.wf-recipe-steps li {
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Scroll motion (motion.js) — fade+rise reveal, respects reduced-motion
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .wf-orbit-ring,
    .wf-hero-float,
    .wf-float-badge,
    .wf-marquee-track,
    .wf-wave-letter,
    .wf-float-deco {
        animation: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Decorative graphics — hand-crafted, no external images (Organic Biophilic)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Gradient-mesh hero backdrop with soft floating blobs */
.wf-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wf-green-light) 0%, var(--wf-cream) 60%, var(--wf-amber-light) 100%);
    border-radius: 0 0 40px 40px;
}

.wf-hero::before,
.wf-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.wf-hero::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(31, 107, 61, 0.16) 0%, transparent 70%);
    top: -120px;
    right: -80px;
}

.wf-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.14) 0%, transparent 70%);
    bottom: -100px;
    left: -60px;
    animation: wf-float 8s ease-in-out infinite;
}

.wf-hero>* {
    position: relative;
    z-index: 1;
}

@keyframes wf-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-18px) translateX(12px);
    }
}

/* ─── Orbit hero (floating product + before/after badges) ─────────────────── */

.wf-hero-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-orbit-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 2px dashed rgba(31, 107, 61, 0.28);
    border-radius: 50%;
    animation: wf-spin-slow 40s linear infinite;
}

@keyframes wf-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wf-hero-float {
    max-width: 70%;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    filter: drop-shadow(0 25px 30px rgba(36, 31, 24, 0.25));
    animation: wf-bob 5s ease-in-out infinite;
}

@keyframes wf-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.wf-float-badge {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: var(--wf-cream);
    box-shadow: 0 14px 28px rgba(36, 31, 24, 0.22);
    border: 3px solid #fff;
    animation: wf-bob-2 5s ease-in-out infinite;
}

.wf-float-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes wf-bob-2 {

    0%,
    100% {
        transform: translateY(0) rotate(var(--wf-badge-rotate, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--wf-badge-rotate, 0deg));
    }
}

.wf-float-tag {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(36, 31, 24, 0.14);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    z-index: 2;
}

.wf-badge-before {
    width: 100px;
    height: 100px;
    top: 6%;
    left: 0;
    --wf-badge-rotate: -6deg;
}

.wf-badge-after {
    width: 100px;
    height: 100px;
    bottom: 8%;
    right: 2%;
    --wf-badge-rotate: 5deg;
    animation-delay: 1.2s;
}

.wf-tag-before {
    top: 0;
    left: 24%;
}

.wf-tag-after {
    bottom: 4%;
    right: 20%;
}

@media (max-width: 767px) {
    .wf-hero-visual {
        height: 300px;
    }

    .wf-orbit-ring {
        width: 250px;
        height: 250px;
    }

    .wf-hero-float {
        width: 90%;
    }

    .wf-badge-before {
        width: 64px;
        height: 64px;
    }

    .wf-badge-after {
        width: 58px;
        height: 58px;
    }

    .wf-tag-before,
    .wf-tag-after {
        font-size: 0.62rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ─── Scrolling ingredient marquee — plain single strip, no transforms ─────── */

.wf-marquee-strip {
    background: var(--wf-green);
    overflow: hidden;
    padding: 0.9rem 0;
    max-width: 100vw;
}

.wf-marquee-track {
    display: flex;
    width: max-content;
    animation: wf-marquee 22s linear infinite;
}

.wf-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes wf-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.wf-marquee-item {
    color: #fff;
    font-family: var(--wf-font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    padding: 0 1.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wf-marquee-item .wf-marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .wf-marquee-item {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* ─── Floating ingredient decorations — continuously shaking corner accents ── */

.wf-deco-host {
    /* z-index: 0 forces this to establish its OWN stacking context (position:
       relative alone doesn't). Without it, the deco images' z-index: -1
       escapes to whatever ancestor context IS established and can end up
       painted behind an unrelated section's background instead of just
       behind this section's own text. */
    position: relative;
    z-index: 0;
}

.wf-float-deco {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: drop-shadow(0 14px 22px rgba(36, 31, 24, 0.18));
    animation: wf-shake 3.6s ease-in-out infinite;
}

@keyframes wf-shake {

    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }

    25% {
        transform: rotate(3deg) translateY(-7px);
    }

    50% {
        transform: rotate(-2deg) translateY(2px);
    }

    75% {
        transform: rotate(4deg) translateY(-5px);
    }
}

@media (max-width: 575px) {
    .wf-float-deco {
        display: none;
    }
}

/* Dot-grid texture overlay — subtle, used on alt sections */
.wf-dots {
    position: relative;
}

.wf-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(31, 107, 61, 0.14) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
    opacity: 0.5;
    pointer-events: none;
}

.wf-dots>* {
    position: relative;
    z-index: 1;
}

/* Wave section divider (SVG data-uri, no file dependency) */
.wf-wave-top {
    position: relative;
}

.wf-wave-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,70 900,-10 1200,30 L1200,0 L0,0 Z' fill='%23fbf7f0'/%3E%3C/svg%3E");
    */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Spice-splatter decorative accent (small SVG dots, chatpata motif) */
.wf-splatter {
    position: absolute;
    width: 90px;
    height: 90px;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        radial-gradient(circle, var(--wf-amber) 6px, transparent 7px),
        radial-gradient(circle, var(--wf-green) 4px, transparent 5px),
        radial-gradient(circle, var(--wf-amber) 3px, transparent 4px);
    background-position: 10% 20%, 60% 60%, 80% 15%;
    background-repeat: no-repeat;
}

/* ─── Stats / counter band ────────────────────────────────────────────────── */

.wf-stats-band {
    background: var(--wf-green-dark);
    color: #fff;
    border-radius: var(--wf-radius);
    padding: 2.5rem 1.5rem;
}

.wf-stat-number {
    font-family: var(--wf-font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    line-height: 1;
}

.wf-stat-label {
    color: #cfe3d6;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

/* ─── Testimonial / quote cards ───────────────────────────────────────────── */

.wf-quote-card {
    background: #fff;
    border-radius: var(--wf-radius);
    box-shadow: var(--wf-shadow);
    padding: 2rem;
    position: relative;
    height: 100%;
}

.wf-quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--wf-amber-light);
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    z-index: 0;
}

.wf-quote-card>* {
    position: relative;
    z-index: 1;
}

/* ─── Card hover-lift (products, blog, recipes) ───────────────────────────── */

.wf-card-hover {
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.wf-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(36, 31, 24, 0.14);
}

.wf-card-img-wrap {
    overflow: hidden;
    border-radius: var(--wf-radius-sm);
}

.wf-card-img-wrap img {
    transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wf-card-hover:hover .wf-card-img-wrap img {
    transform: scale(1.07);
}

/* ─── CTA banner ───────────────────────────────────────────────────────────── */

.wf-cta-banner {
    background: linear-gradient(120deg, var(--wf-green) 0%, var(--wf-green-dark) 100%);
    color: #fff;
    border-radius: var(--wf-radius);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.wf-cta-banner::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -60px;
    pointer-events: none;
}

.wf-cta-banner>* {
    position: relative;
    z-index: 1;
}

/* ─── Full-bleed lifestyle photo band ─────────────────────────────────────── */

.wf-photo-band {
    position: relative;

    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 767px) {

    /* background-attachment: fixed is unreliable/janky on mobile Safari & Chrome — scroll normally there */
    .wf-photo-band {
        height: 360px;
        background-attachment: scroll;
    }
}

.wf-photo-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 74, 42, 0.72) 0%, rgba(20, 74, 42, 0.42) 55%, rgba(20, 74, 42, 0.28) 100%);
}

.wf-photo-band-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2.75rem;
    max-width: 620px;
    margin: 0 auto;
}

.wf-photo-band-content .wf-eyebrow {
    color: var(--wf-amber-light);
}

/* ─── Before/after comparison photo ───────────────────────────────────────── */

.wf-compare-photo {
    border-radius: var(--wf-radius-sm);
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 4/3;
}

.wf-compare-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Blog/recipe meta pill ───────────────────────────────────────────────── */

.wf-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--wf-green-light);
    color: var(--wf-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}