/* /Components/Embedded/LandingPage.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   LANDING PAGE — Scoped CSS
   Uses pure CSS keyframe animations.
   NO opacity:0 defaults — content is always visible.
════════════════════════════════════════════════════ */

/* ─── Keyframes ────────────────────────────────── */
@keyframes lp-fadeUp-b-i4f5lrofv6 {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lp-fadeIn-b-i4f5lrofv6 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lp-pulse-b-i4f5lrofv6 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 193, 88, 0.55); }
    50%       { box-shadow: 0 0 0 7px rgba(229, 193, 88, 0); }
}

@keyframes lp-bounce-b-i4f5lrofv6 {
    0%, 100% { transform: translateY(0);   opacity: 1; }
    50%       { transform: translateY(9px); opacity: 0.35; }
}

/* ─── Section rise-in on scroll ───────────────── */
/* Using CSS animation-timeline for browsers that support it,
   with a safe fallback (just visible) for older ones. */
.lp-anim-rise[b-i4f5lrofv6] {
    animation: lp-fadeUp-b-i4f5lrofv6 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

/* Trigger when element enters viewport via IntersectionObserver fallback */
.lp-anim-rise.lp-visible[b-i4f5lrofv6] {
    animation-play-state: running;
}

/* ─── ROOT ─────────────────────────────────────── */
.lp-root[b-i4f5lrofv6] {
    overflow-x: hidden;
}

.lp-container[b-i4f5lrofv6] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .lp-container[b-i4f5lrofv6] { padding: 0 3rem; }
}

.lp-center[b-i4f5lrofv6] { text-align: center; }

/* ════════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════════ */
.lp-hero[b-i4f5lrofv6] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 5rem;
    text-align: center;
}

.lp-hero-inner[b-i4f5lrofv6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

/* Eyebrow */
.lp-eyebrow[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin: 0;
    animation: lp-fadeIn-b-i4f5lrofv6 1s ease 0.2s both;
}

/* Logo */
.lp-logo-wrap[b-i4f5lrofv6] {
    animation: lp-fadeIn-b-i4f5lrofv6 1.2s ease 0.35s both;
}

.lp-logo[b-i4f5lrofv6] {
    width: clamp(130px, 20vw, 200px);
    filter: drop-shadow(0 0 30px rgba(229, 193, 88, 0.28));
    transition: filter 0.5s ease;
}

.lp-logo:hover[b-i4f5lrofv6] {
    filter: drop-shadow(0 0 48px rgba(229, 193, 88, 0.55));
}

/* Headline */
.hero-headline[b-i4f5lrofv6] {
    max-width: 56rem;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: manual;
}

@media (min-width: 768px) {
    .hero-headline[b-i4f5lrofv6] {
        max-width: 64rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline[b-i4f5lrofv6] {
        font-size: 6rem;
        line-height: 1;
    }
}

.lp-headline[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(3.2rem, 11vw, 7.5rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #E5C158 55%, #B4C4AE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lp-fadeUp-b-i4f5lrofv6 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* Sub */
.lp-sub[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1rem, 2.4vw, 1.18rem) !important;
    font-weight: 300 !important;
    color: var(--brand-muted) !important;
    line-height: 1.65 !important;
    max-width: 520px;
    margin: 0;
    animation: lp-fadeUp-b-i4f5lrofv6 1s ease 0.7s both;
}

/* CTA Row */
.lp-cta-row[b-i4f5lrofv6] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: lp-fadeUp-b-i4f5lrofv6 1s ease 0.9s both;
}

/* Gold button */
.lp-btn-gold[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-bg) !important;
    background: var(--brand-gold);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.4rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(229, 193, 88, 0.3);
}

.lp-btn-gold:hover[b-i4f5lrofv6] {
    background: #f0d06a;
    box-shadow: 0 6px 28px rgba(229, 193, 88, 0.5);
    transform: translateY(-2px);
    color: var(--brand-bg) !important;
    text-decoration: none;
}

.lp-btn-lg[b-i4f5lrofv6] {
    font-size: 1rem;
    padding: 1.1rem 2.8rem;
}

/* Ghost button */
.lp-btn-ghost[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-muted) !important;
    background: transparent;
    border: 1px solid rgba(180, 196, 174, 0.35);
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.35s ease;
}

.lp-btn-ghost:hover[b-i4f5lrofv6] {
    border-color: rgba(229, 193, 88, 0.55);
    color: var(--brand-gold) !important;
    text-decoration: none;
}

.lp-mt[b-i4f5lrofv6] { margin-top: 1.5rem; }

/* Scroll hint */
.lp-scroll-hint[b-i4f5lrofv6] {
    display: flex;
    justify-content: center;
    animation: lp-fadeIn-b-i4f5lrofv6 1s ease 1.2s both;
}

.lp-scroll-dot[b-i4f5lrofv6] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-gold);
    animation: lp-bounce-b-i4f5lrofv6 2s ease-in-out infinite;
}


/* ════════════════════════════════════════════════
   2. TRUST STRIP
════════════════════════════════════════════════ */
.lp-trust-strip[b-i4f5lrofv6] {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(20, 28, 17, 0.4);
    padding: 1.6rem 0;
    animation: lp-fadeIn-b-i4f5lrofv6 1s ease 1.1s both;
}

.lp-trust-grid[b-i4f5lrofv6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.lp-trust-item[b-i4f5lrofv6] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.6rem;
}

.lp-trust-icon[b-i4f5lrofv6] {
    font-size: 1.3rem;
    line-height: 1;
}

.lp-trust-item strong[b-i4f5lrofv6] {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-white);
    line-height: 1.3;
}

.lp-trust-item span[b-i4f5lrofv6] {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--brand-muted);
    letter-spacing: 0.04em;
}

.lp-trust-sep[b-i4f5lrofv6] {
    width: 1px;
    height: 32px;
    background: var(--glass-border);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .lp-trust-sep[b-i4f5lrofv6] { display: none; }
    .lp-trust-item[b-i4f5lrofv6] { width: 50%; justify-content: center; }
}


/* ════════════════════════════════════════════════
   3. SHOWCASE IMAGE
════════════════════════════════════════════════ */
.lp-showcase[b-i4f5lrofv6] {
    padding: 4rem 0;
}

.lp-showcase-frame[b-i4f5lrofv6] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lp-showcase-img[b-i4f5lrofv6] {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-showcase-frame:hover .lp-showcase-img[b-i4f5lrofv6] {
    transform: scale(1.04);
}

.lp-showcase-badge[b-i4f5lrofv6] {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 14, 8, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    color: var(--brand-muted);
    letter-spacing: 0.08em;
}

.lp-badge-dot[b-i4f5lrofv6] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-gold);
    animation: lp-pulse-b-i4f5lrofv6 2.2s ease-in-out infinite;
}


/* ════════════════════════════════════════════════
   4. INTRO
════════════════════════════════════════════════ */
.lp-intro[b-i4f5lrofv6] {
    padding: 4rem 0;
}

.lp-intro-inner[b-i4f5lrofv6] {
    max-width: 760px;
    text-align: center;
}

.lp-intro-body[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: var(--brand-muted) !important;
    font-weight: 300 !important;
    margin: 0 auto;
}

/* Shared section labels & titles */
.lp-section-label[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin: 0 0 0.6rem;
}

.lp-section-title[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    color: var(--brand-white) !important;
    -webkit-text-fill-color: var(--brand-white) !important;
    letter-spacing: -0.025em !important;
    line-height: 1.15 !important;
    margin: 0 0 1.5rem !important;
}

.lp-body-text[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.97rem !important;
    line-height: 1.75 !important;
    color: var(--brand-muted) !important;
    font-weight: 300 !important;
    margin: 0 0 0.9rem !important;
}


/* ════════════════════════════════════════════════
   5. STORY
════════════════════════════════════════════════ */
.lp-story[b-i4f5lrofv6] {
    padding: 5rem 0;
}

.lp-story-grid[b-i4f5lrofv6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .lp-story-grid[b-i4f5lrofv6] {
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
    }
}

.lp-story-img-wrap[b-i4f5lrofv6] {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.lp-story-img[b-i4f5lrofv6] {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 420px;
    transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-story-img-wrap:hover .lp-story-img[b-i4f5lrofv6] {
    transform: scale(1.04);
}

/* Stats row */
.lp-stats-row[b-i4f5lrofv6] {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.lp-stat[b-i4f5lrofv6] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-stat-num[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-gold);
    line-height: 1;
}

.lp-stat-label[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--brand-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ════════════════════════════════════════════════
   6. WHY US CARDS
════════════════════════════════════════════════ */
.lp-why[b-i4f5lrofv6] {
    padding: 5rem 0;
}

.lp-why-grid[b-i4f5lrofv6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .lp-why-grid[b-i4f5lrofv6] { grid-template-columns: repeat(3, 1fr); }
}

.lp-why-card[b-i4f5lrofv6] {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-why-card:hover[b-i4f5lrofv6] {
    border-color: rgba(229, 193, 88, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(229, 193, 88, 0.07);
}

.lp-why-icon[b-i4f5lrofv6] {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.lp-why-card h3[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--brand-white) !important;
    -webkit-text-fill-color: var(--brand-white) !important;
    margin: 0 0 0.6rem !important;
}

.lp-why-card p[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    color: var(--brand-muted) !important;
    margin: 0 !important;
    font-weight: 300 !important;
}


/* ════════════════════════════════════════════════
   7. TESTIMONIALS
════════════════════════════════════════════════ */
.lp-testimonials[b-i4f5lrofv6] {
    padding: 5rem 0;
}


/* ════════════════════════════════════════════════
   8. CTA BANNER
════════════════════════════════════════════════ */
.lp-cta-banner[b-i4f5lrofv6] {
    padding: 3rem 0 7rem;
}

.lp-cta-card[b-i4f5lrofv6] {
    background: linear-gradient(
        135deg,
        rgba(27, 38, 22, 0.75) 0%,
        rgba(20, 28, 17, 0.5) 100%
    );
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
    .lp-cta-card[b-i4f5lrofv6] {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 3rem 4rem;
    }
}

.lp-cta-title[b-i4f5lrofv6] {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 700 !important;
    color: var(--brand-white) !important;
    -webkit-text-fill-color: var(--brand-white) !important;
    margin: 0 0 0.5rem !important;
}

.lp-cta-sub[b-i4f5lrofv6] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: var(--brand-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 300 !important;
}
/* /Components/Embedded/ProductCard.razor.rz.scp.css */
.product-card-shell[b-dljs4oirk7] {
    overflow: hidden;
}

.product-image-container[b-dljs4oirk7] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 34vw, 390px);
    padding: 1.25rem;
    cursor: zoom-in;
    background:
        radial-gradient(circle at 50% 20%, rgba(229, 193, 88, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 239, 228, 0.92));
    border-bottom: 1px solid rgba(229, 193, 88, 0.15);
}

.product-image-full[b-dljs4oirk7] {
    width: 100%;
    height: clamp(220px, 30vw, 340px);
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.product-image-container:hover .product-image-full[b-dljs4oirk7] {
    transform: scale(1.035);
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.4));
}

@media (max-width: 640px) {
    .product-image-container[b-dljs4oirk7] {
        min-height: 300px;
        padding: 1rem;
    }

    .product-image-full[b-dljs4oirk7] {
        height: 260px;
    }
}
/* /Components/Embedded/SinglePostClick.razor.rz.scp.css */

.blog-image[b-qdw08423u5] {
    max-height: 150px;
    max-width: 150px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-j33o8z3r2x] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-j33o8z3r2x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
body[b-0jdrsklnfz] {
    color: white;
    margin: 0; /* Make sure default body margins are removed */
}

/* Navigation */
.nav-pos[b-0jdrsklnfz] {
    z-index: 10;
    /*    position: fixed;*/
    /*position: absolute;*/
    width: 100%;
    transition: all 0.3s ease;
}

    .nav-pos.sticky[b-0jdrsklnfz] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

/* Navigation container styles */
.nav-container[b-0jdrsklnfz] {
    border-bottom: 0.01em solid #ffffff50;
    font-weight: 100;
    padding-bottom: 1em;
    margin-top: auto;
    margin-bottom: auto;
    color: #ffffff99 !important;
}

    .nav-container > span[b-0jdrsklnfz] {
        font-size: 1.2em;
        margin-top: auto;
    }

        .nav-container > span:hover[b-0jdrsklnfz] {
            cursor: pointer;
        }

/* Selected nav item */
.selected[b-0jdrsklnfz] {
    font-weight: 800 !important;
    color: #ffffff !important;
    font-size: 1.4em !important;
}


.burger[b-0jdrsklnfz] {
    font-size: 3em;
}

    .burger:hover[b-0jdrsklnfz] {
        cursor: pointer;
    }

.logo[b-0jdrsklnfz] {
    max-height: 120px;
}

main[b-0jdrsklnfz], .content-section[b-0jdrsklnfz] {
    padding-top: 80px;
}


.margin-bottom-floater[b-0jdrsklnfz] {
    padding-bottom: 100em !important;
}


.dv-nav-mobile[b-0jdrsklnfz] {
    padding: 2em;
    z-index: 9;
    background-color: rgba(0,0,0,1);
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw !important;
}

    .dv-nav-mobile > span[b-0jdrsklnfz] {
        color: #fff;
    }

.close-button[b-0jdrsklnfz] {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.5em;
}
/* /Components/Pages/BlogPage.razor.rz.scp.css */


.blog-image[b-slr5wn8d3k] {
    max-height: 150px;
    max-width: 150px;
}
