/* ================================
Root Variables (Pivika Blooms – FINAL)
================================ */
:root {
    --pb-bg: #FAF8F5;              /* warm off-white */
    --pb-card: #FFFFFF;
    --pb-text: #2F2F2F;            /* primary text */
    --pb-muted: #6B6B6B;           /* secondary text */

    --pb-accent: #E6A23C;          /* Bloom Amber */
    --pb-accent-soft: rgba(230, 162, 60, 0.18);

    --pb-sage: #7FB77E;            /* learning / growth */
    --pb-sage-soft: rgba(127, 183, 126, 0.18);

    --pb-coral: #E98F78;           /* relationships */
    --pb-teal: #5DA4A5;            /* thinking */

    --pb-soft: #FFF6D8;            /* warm cream */
    --pb-shadow: rgba(0, 0, 0, 0.08);
}
.hide{display: none;}
.sidenav-nav li.active a, .sidenav-nav li.active a i {
    color: var(--pb-accent);
    font-weight: 500;
}
.category{margin-top: 0.3rem; margin-bottom: 0.6rem;}
/* .category a {
    padding: 0.25rem 0.75rem;
    font-size: 12px;
    display: inline-block;
    font-weight: 500;
    border-radius: 30px;
} */
.post-meta a, .post-meta span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pb-muted);
    margin-right: 0.7rem;
}
.editorial-choice-news-slide .post-meta a, .editorial-choice-news-slide .post-meta span {color: #ffffff;}
.owl-carousel {
    width: 100%;
}
.owl-stage-outer {
    overflow: hidden;
}
.post-title {line-height: 1.4rem;}

/* Post Detail */
.single-blog-info .post-single span {
    color: var(--pb-muted);
    font-size: 0.8rem;
    text-transform: capitalize;
    font-weight: 500;
    margin-right: 1rem;
}
.blog-description blockquote {
    position: relative;
    margin: 0;
    padding: 1rem 1.25rem;
    background: #fff6f1;
    border-left: 4px solid var(--pb-accent);
    border-radius: 8px;
    font-style: italic;
    color: var(--pb-sage);
}
.blog-description blockquote p {
    margin: 0;
}
.blog-description blockquote::before {
    content: "“";
    font-size: 3rem;
    color: var(--pb-accent);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}
.blog-description blockquote em{
    color: var(--pb-muted);
}
.single-blog-info .pb-tagline h1 {
    font-size: 22px;
}
.pb-title .blog-description h2{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.pb-title .blog-description h3{
    color: var(--pb-text);
    font-size: var(--bs-body-font-size);
    font-weight: 500;
    margin-bottom: 10px;
}
.pb-title .blog-description h4{
    color: var(--pb-text);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
}

/* Wrapper (same as real card) */
.post-skeleton {
    background-color: #fff4ee; /* same light peach tone */
    border-radius: 12px;
    padding: 14px;
}

/* Shimmer animation */
@keyframes shimmer {
    0% { background-position: -450px 0; }
    100% { background-position: 450px 0; }
}

.skeleton-thumb,
.skeleton-title,
.skeleton-meta {
    background: linear-gradient(
        90deg,
        #f1f1f1 25%,
        #e6e6e6 37%,
        #f1f1f1 63%
    );
    background-size: 900px 100%;
    animation: shimmer 1.3s infinite linear;
}

/* Thumbnail placeholder (matches image) */
.skeleton-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Title line */
.skeleton-title {
    height: 16px;
    width: 85%;
    border-radius: 6px;
}

/* Meta info line */
.skeleton-meta {
    height: 12px;
    width: 55%;
    border-radius: 6px;
}

/* Overlay */
.pb-popup-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(3px);
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 9999;
}
/* Active state */
.pb-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Popup box */
.pb-popup-box {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 28px 26px 32px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);

    /* Soft bloom animation */
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
/* Bloom in */
.pb-popup-overlay.active .pb-popup-box {
    transform: scale(1);
    opacity: 1;
}
.pb-popup-box h2 { 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
}
.pb-popup-box h5 { 
    font-size: 1rem; 
    margin-bottom: 1rem; 
    font-style: italic;
}
/* Close button */
.pb-close-btn {
    position: absolute;
    top: 0;
    right: 14px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #2F2F2F;
    opacity: 0.6;
}
.pb-close-btn:hover {
    opacity: 1;
}
/* Link button */
a.pb-primary-link {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: var(--pb-accent);
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 22px;
}
a.pb-primary-link:hover { 
    color: #fff;
    background: var(--pb-sage);
}
/* Link text */
a.pb-soft-link {
    display: inline-block;
    text-decoration: none;
    color: var(--pb-sage);
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1.5rem;
}
a.pb-soft-link:hover { 
    color: var(--pb-accent);
}
.pb-card a.pb-soft-link, .initiative-by a.pb-soft-link{
    margin-top: 0;
}

/* ================================
Page Wrapper
================================ */
.pb-page {
    margin: 0 auto;
    padding: 30px 20px;
    background: var(--pb-bg);
    color: var(--pb-text);
    line-height: 1.55;
}

/* ================================
Header & Intro
================================ */
.pb-header {
    text-align: center;
    margin-bottom: 40px;
}

.pb-tagline h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pb-tagline p {
    font-size: 15px;
    color: var(--pb-muted);
    margin-top: 4px;
}

.pb-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pb-intro p {
    margin-bottom: 18px;
}

/* ================================
Card Base (Reusable Everywhere)
================================ */
.pb-card {
    background: var(--pb-card);
    padding: 32px 30px;
    border-radius: 20px;
    margin-bottom: 36px;
    box-shadow: 0 12px 28px var(--pb-shadow);
}

.pb-card:last-child {
    margin-bottom: 0;
}

/* ================================
Section Titles
================================ */
.pb-title h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--pb-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb-title h2 span {
    font-size: 16px;
    font-weight: 500;
    color: var(--pb-muted);
}

/* ================================
Highlight / Emphasis
================================ */
.pb-highlight p:first-of-type {
    font-weight: 500;
    color: var(--pb-sage);
}

/* ================================
Lists (Parent Driven)
================================ */
.pb-list ul {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 16px;
}

.pb-list ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.pb-list ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: rgba(127, 183, 126, 0.6);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5em;
}

/* ================================
Bloom Circle (Core Philosophy)
================================ */
.pb-focus {
    background: linear-gradient(135deg, #FFF6D8, #FFFFFF);
    border: 1px solid rgba(230, 162, 60, 0.25);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.pb-flow {
    font-weight: 500;
    color: var(--pb-sage);
    margin: 14px 0;
    text-align: center;
}

/* ================================
Heart / Soft Note
================================ */
.pb-soft {
    background: var(--pb-soft);
}

.pb-soft p:first-of-type {
    font-style: italic;
}

/* ================================
Promise Section
================================ */
.pb-promise {
    text-align: center;
}

.pb-promise ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.pb-promise ul li {
    margin-bottom: 6px;
    font-weight: 500;
}

.pb-promise p {
    margin-top: 18px;
    color: var(--pb-muted);
}

.pb-center {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.pb-muted {
    color: var(--pb-muted);
    font-size: 1rem;
}

/* ================================
Form Wrapper
================================ */
.pb-form {
    margin-top: 20px;
}

/* ================================
Form Group
================================ */
.pb-form-group {
    margin-bottom: 20px;
}

.pb-form-group label {
    display: block;
    font-size: 1rem;
    color: var(--pb-muted);
    margin-bottom: 6px;
}

/* ================================
Inputs & Selects
================================ */
.pb-form input[type="text"],
.pb-form input[type="email"],
.pb-form select,
.pb-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid #e6e2dd;
    background: #fff;
    color: var(--pb-text);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pb-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Gentle focus (no blue glow) */
.pb-form input:focus,
.pb-form select:focus,
.pb-form textarea:focus {
    outline: none;
    border-color: rgba(230, 162, 60, 0.6);
    box-shadow: 0 0 0 2px rgba(230, 162, 60, 0.12);
}

.pb-form label.error {
    color: var(--pb-coral);
    font-size: 0.9rem;
}

/* ================================
Checkbox
================================ */
.pb-form input[type="checkbox"] {
    margin-right: 6px;
    transform: translateY(1px);
}

/* ================================
Actions
================================ */
.pb-form-actions {
    text-align: center;
    margin-top: 26px;
}

/* ================================
Button (Gentle)
================================ */
.pb-btn {
    background: var(--pb-accent);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.pb-btn:hover {
    background: var(--pb-sage);
    color: #ffffff;
}

.pb-btn:active {
    transform: scale(0.98);
}

.pb-form-agree p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--pb-muted);
    font-style: normal !important;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
    background-color: var(--pb-muted);
    border-color: var(--pb-muted);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.8rem;
    /* border-radius: 14px;
    font-weight: 500; */
    line-height: 1.4;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0;
}
.badge-amber {
    background: rgba(230, 162, 60, 0.18);
    color: #8A5A12;
    border: 1px solid #8A5A12;
}
.badge-sage {
    background: rgba(127, 183, 126, 0.18);
    color: #3F6B45;
    border: 1px solid #3F6B45;
}
.badge-coral {
    background: rgba(233, 143, 120, 0.18);
    color: #8A3D32;
    border: 1px solid #8A3D32;
}
.badge-teal {
    background: rgba(93, 164, 165, 0.18);
    color: #245C5D;
    border: 1px solid #245C5D;
}
.badge-neutral {
    background: #FBF4EE;
    color: #6B6B6B;
    border: 1px solid #6B6B6B;
}
.badge:hover {
    filter: brightness(0.95); 
}
.category .badge, .category.badge {
    /* font-size: 13px;
    font-weight: 600;
    padding: 6px 14px; */
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.85);
}
.category.badge:hover {
    filter: brightness(0.95);
}
.single-hero-slide .badge, .catagory-card .badge, .single-editorial-slide .badge {
    background-color: rgba(255, 255, 255, 0.9);
}
.hero-slides .badge{
    margin-bottom: 0.5rem;
}

/* ================================
Homepage Parent CTA
================================ */
.pb-parent-cta {
    background: var(--pb-bg);
    padding-top: 28px;
    padding-bottom: 26px;
}
.pb-parent-cta-card {
    margin: 0 auto;
    background: var(--pb-card);
    border-radius: 0.25rem;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 12px 28px var(--pb-shadow);
}
.pb-parent-cta-inner {
    margin: 0 auto;
    text-align: center;
}
/* Grid */
.pb-parent-cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
}
.pb-cta-lead {
    font-size: 16px;
    color: var(--pb-text);
    margin-bottom: 14px;
}
.pb-cta-flow {
    font-size: 15px;
    color: var(--pb-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}
.pb-cta-invite {
    font-size: 15px;
    color: var(--pb-muted);
    margin-bottom: 0;
}
.pb-cta-invite strong {
    /* color: var(--pb-accent); */
    font-weight: 600;
}
/* RIGHT ACTIONS */
.pb-parent-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.sidenav-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #8a8a8a;
    line-height: 1.5;
}
.sidenav-footer span {
    font-size: 0.7rem;
    color: #a0a0a0;
}

.pb-visual-banner {
    padding: 20px 0;
}
.pb-visual-banner-inner {
    display: flex;
    height: 220px;

    border-radius: 22px;
    overflow: hidden;

    background: #fbf6ef;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

/* LEFT SIDE */
.pb-visual-banner-left {
    position: relative;
    width: 30%;
    padding: 36px 32px;

    display: flex;
    align-items: center;

    background: linear-gradient(
        160deg,
        #f7efe6 0%,
        #f1e3d2 100%
    );
}

.pb-banner-text {
    position: relative;
    z-index: 2;

    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;

    color: #3b3b3b;
}

/* Decorative soft circles */
.pb-banner-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pb-banner-decor::before,
.pb-banner-decor::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
}

.pb-banner-decor::before {
    width: 140px;
    height: 140px;
    background: #e6a23c;
    top: 20%;
    left: -40px;
}

.pb-banner-decor::after {
    width: 90px;
    height: 90px;
    background: #f3c98b;
    bottom: 15%;
    right: 20px;
}

/* RIGHT SIDE IMAGE */
.pb-visual-banner-right {
    position: relative;
    width: 70%;
}

/* White curved divider */
.pb-visual-banner-right::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #ffffff;

    border-top-left-radius: 140px;
    border-bottom-left-radius: 140px;

    transform: translateX(-10px);
    z-index: 1;
}

.pb-visual-banner-right img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;
    object-fit: cover;

    border-top-left-radius: 140px;
    border-bottom-left-radius: 140px;
}
.pb-little-bloom {
    margin: 30px 0 0;
    padding-left: 12px;
    border-left: 3px solid var(--pb-accent);
    opacity: 0.85;
}

.pb-bloom-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.pb-bloom-name {
    font-size: 0.9rem;
    color: var(--pb-teal);
    font-style: italic;
}

.initiative-by{margin-top: 0.8rem;}
.initiative-by span{
    color: var(--pb-muted);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.sidenav-nav.nav2 {
    margin: 0 1rem 1rem !important;
}

/* Search */
.pb-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 100;
}
.pb-search-suggestions {
    /* position: absolute; */
    top: calc(100% + 6px);
    left: 0;
    width: 100%;

    z-index: 9999;   /* force above everything */

    /* Dark glass effect */
    background: rgba(40, 40, 40, 0.75);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);

    padding: 10px 0;
    display: none;
}
.suggest-group {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 6px 14px;
    text-transform: uppercase;
}
.suggest-item {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}
.suggest-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.pb-search-wrapper,
.pb-search-wrapper * {
    overflow: visible !important;
}

.sticky-desktop {
  position: fixed;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background-color: var(--pb-soft);
  padding: 5px;
  border-radius: 10px 0 0 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-shadow: 0px 0px 13.67px 0px rgba(0, 0, 0, 0.1607843137);
}
.sticky-desktop hr {
    margin: 0.5rem 0;
}
.sticky-desktop a {
    width: 30px;
    height: 30px;
    background-color: #E6A23C;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    z-index: 10;
    display: block;
    margin: 0 auto;
}
.sticky-desktop a i {
    line-height: 30px;
}



/* ================================
Mobile / Responsive Adjustments
================================ */
@media (max-width: 720px) {
    .pb-parent-cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pb-parent-cta-actions {
        align-items: center;
    }

    .pb-cta-btn-outline,
    .pb-cta-btn-soft {
        width: 100%;
        max-width: 280px;
    }
}
@media (max-width: 600px) {
    h5.newsten-title{
        font-size: 1rem;
    }
    p.newsten-sub-title{
        font-size: 0.9rem;
    }
    .pb-page {
        padding: 16px;
    }
    .pb-tagline h1 {
        font-size: 30px;
    }
    .pb-card {
        padding: 18px;
    }

    a.pb-primary-link{
        margin-top: 10px;
    }

    .pb-visual-banner-left {
        padding: 36px 15px;
    }
    .pb-banner-text {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    /* .pb-visual-banner-inner {
        flex-direction: column;
        height: auto;
    }

    .pb-visual-banner-left,
    .pb-visual-banner-right {
        width: 100%;
    }

    .pb-visual-banner-right::before {
        border-radius: 0;
        transform: none;
    }

    .pb-visual-banner-right img {
        border-radius: 0;
        height: 220px;
    } */
}
