/* =========================================================
   Baba Ramdev Caterers — About Us
   Brand: Royal Blue #1a3b9e + Vivid Red #e8231a + White
   ========================================================= */

/* ----- CUSTOM PROPERTIES ----- */
:root {
    /* Brand colours from logo */
    --blue:        #1d4ed8;
    --blue-2:      #2563eb;
    --blue-light:  #3b82f6;
    --blue-grad:   linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%);
    --red:         #e8231a;
    --red-2:       #ff4d44;

    /* Aliases used throughout component CSS */
    --gold:        #1d4ed8;
    --gold-2:      #2563eb;
    --gold-grad:   linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%);
    --saffron:     #e8231a;

    /* Backgrounds: Clean Light Theme */
    --bg-dark:     #ffffff;
    --bg-2:        #f8fafc;
    --bg-card:     #ffffff;
    --border:      #e2e8f0;
    --border-gold: #cbd5e1;

    /* Text */
    --text:        #0f172a;
    --text-muted:  #64748b;
    --text-sub:    #334155;

    /* Misc */
    --radius:      14px;
    --radius-lg:   24px;
    --t-fast:      0.25s cubic-bezier(.4,0,.2,1);
    --t-med:       0.45s cubic-bezier(.4,0,.2,1);
    --shadow-gold: 0 10px 30px rgba(0,0,0,.06);
    --font-h:      'Outfit', 'Poppins', sans-serif;
    --font-b:      'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ----- RESET ----- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
    font-family:var(--font-b);
    background:var(--bg-dark);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
}
body.loading{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,select,textarea{font-family:inherit;outline:none}
h1,h2,h3,h4{font-family:var(--font-h);line-height:1.2}

/* ----- UTILITY ----- */
.container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 1.5rem;
}
.section{padding:6rem 0}
.text-center{text-align:center}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
    position:fixed;inset:0;
    background-color:#ffffff;
    z-index:9999;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1rem;
}

.pl-ring{
    width:90px;height:90px;
    border-radius:50%;
    border:2px solid transparent;
    border-top-color:var(--gold);
    border-bottom-color:var(--saffron);
    animation:spin 1.4s linear infinite;
    position:absolute;
    filter:drop-shadow(0 0 12px var(--gold));
}

.pl-logo{
    display:flex;flex-direction:column;
    align-items:center;gap:0.5rem;
    position:relative;z-index:1;
}

.pl-logo-icon{
    width:70px;height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    box-shadow:var(--shadow-gold);
    overflow:hidden;
}

.pl-logo-name{
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    white-space: nowrap;
}

.pl-bar-wrap{
    width:240px;height:3px;
    background:rgba(255,255,255,0.1);
    border-radius:99px;
    overflow:hidden;
    margin-top:0.5rem;
}
.pl-bar{
    width:0%;height:100%;
    background:var(--gold-grad);
    border-radius:99px;
    transition:width .05s linear;
}
.pl-pct{
    font-size:.8rem;font-weight:700;
    color:var(--gold);letter-spacing:1px;
}
.pl-tagline{
    font-size:.78rem;color:var(--text-muted);
    letter-spacing:2px;text-transform:uppercase;
}

@keyframes spin{to{transform:rotate(360deg)}}

/* =========================================================
   PAGE WRAP  — starts invisible, GSAP fades in after preloader
   ========================================================= */
#page-wrap{opacity:0}

/* =========================================================
   HERO — clean branded, centered, no background image
   ========================================================= */
.hero{
    position:relative;
    padding:5rem 0 4.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:#ffffff;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;left:50%;transform:translateX(-50%);
    width:260px;height:2px;
    background:var(--blue-grad);
    border-radius:99px;
}

.hero-inner{
    position:relative;z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Logo icon / image slot */
.hero-logo-wrap{ margin-bottom:1.8rem; }

.hero-logo-icon{
    width:220px;height:auto;
    display:flex;align-items:center;justify-content:center;
    transition:transform var(--t-med);
    cursor:default;
}
.hero-logo-icon:hover{transform:scale(1.05);}
.hero-logo-icon img{
    width:100%;height:auto;
    object-fit:contain;
    display:block;
}

.hero-heading{
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 3.8vw, 3rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: .4rem;
    line-height: 1.25;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-sub{
    font-size:1.05rem;
    color:#475569;
    margin:1rem 0 2rem;
    max-width:460px;
    line-height:1.8;
}

.hero-chips{
    display:flex;gap:.75rem;flex-wrap:wrap;
    justify-content:center;
}

.chip{
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.5rem 1.1rem;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:99px;
    font-size:.8rem;font-weight:600;
    color:#334155;
    transition:all var(--t-fast);
}
.chip:hover{
    background:#eff6ff;
    border-color:#bfdbfe;
    color:var(--blue);
    transform:translateY(-2px);
}
.chip i{color:var(--blue)}


/* =========================================================
   ABOUT SECTION — Light Clean Theme
   ========================================================= */
.about-section{
    padding:4rem 0 6rem;
    background:#f8fafc;
    border-top:1px solid #e2e8f0;
}

.about-header{
    text-align:center;
    margin-bottom:3rem;
}

.about-header .sec-title{
    font-size: clamp(1.1rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-top: .4rem;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
}

.about-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

/* Contact card */
.about-contact-card{
    width:100%;
    max-width:520px;
    margin:0 auto;
    transition-delay:var(--d,0s);
}

.acc-inner{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:var(--radius-lg);
    padding:2.5rem 2.2rem;
    box-shadow:0 20px 40px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
}

.acc-icon-row{
    display:flex;justify-content:center;
    margin-bottom:1.4rem;
}
.acc-logo-img{
    height:100px;
    width:auto;
    object-fit:contain;
}

.acc-inner h3{
    font-family:var(--font-b);
    font-size:1.35rem;font-weight:700;
    color:#0f172a;
    text-align:center;margin-bottom:.4rem;
}

.acc-inner > p{
    font-size:.88rem;color:#64748b;
    text-align:center;margin-bottom:1.8rem;
}

.acc-list{
    list-style:none;
    display:flex;flex-direction:column;gap:1.1rem;
    margin-bottom:2rem;
    background:#f8fafc;
    padding:1.4rem 1.2rem;
    border-radius:var(--radius);
    border:1px solid #f1f5f9;
}

.acc-list li{
    display:flex;gap:.85rem;align-items:flex-start;
    font-size:.9rem;color:#334155;
}

.acc-list li > i{
    color:#2563eb;font-size:1.1rem;
    flex-shrink:0;margin-top:3px;
}

.acc-list li a,
.acc-list li span{
    color:#334155;
    display:block;
    line-height:1.6;
    transition:color var(--t-fast);
}
.acc-list li a:hover{color:#1d4ed8;}

.btn-whatsapp{
    display:flex;align-items:center;justify-content:center;gap:.6rem;
    width:100%;
    padding:.85rem 1.5rem;
    background:#25d366;
    color:#fff;
    border-radius:var(--radius);
    font-size:.95rem;font-weight:700;
    transition:all var(--t-fast);
}
.btn-whatsapp:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(37,211,102,.3);
}
.btn-whatsapp i{font-size:1.2rem;}


.grid-2-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.story-img-frame{
    position:relative;
    border-radius:var(--radius-lg);
    overflow:visible;
}

.story-img-frame img{
    width:100%;height:520px;
    object-fit:cover;
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    box-shadow:0 24px 60px rgba(0,0,0,.5);
    transition:transform var(--t-med);
}

.story-img-frame:hover img{transform:scale(1.02);}

.story-badge{
    position:absolute;
    bottom:-20px;right:-20px;
    background:var(--gold-grad);
    padding:1.2rem 1.6rem;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:var(--shadow-gold);
}

.sb-num{
    font-family:var(--font-h);
    font-size:2.2rem;font-weight:900;
    color:#07050a;display:block;line-height:1;
}
.sb-txt{
    font-size:.72rem;font-weight:700;
    color:#07050a;letter-spacing:.5px;
}

.eyebrow{
    font-size:.78rem;font-weight:700;
    color:#1d4ed8;letter-spacing:1.5px;
    text-transform:uppercase;
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.35rem .9rem;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    border-radius:99px;
    margin-bottom:.75rem;
}

.sec-title{
    font-size:clamp(1.8rem,3.5vw,2.6rem);
    color:#0f172a;
    margin-bottom:1.2rem;
}

.sec-sub{
    font-size:1.05rem;color:var(--text-muted);
    max-width:550px;margin:0 auto;
}

.sec-header{margin-bottom:3.5rem}

.story-text p{
    color:var(--text-sub);
    margin-bottom:1rem;
}
.story-text strong{color:var(--text);}

.story-points{
    margin:1.8rem 0;
    display:flex;flex-direction:column;gap:1rem;
}

.sp-item{
    display:flex;gap:1rem;align-items:flex-start;
}

.sp-dot{
    width:10px;height:10px;
    border-radius:50%;
    background:var(--gold-grad);
    flex-shrink:0;margin-top:6px;
    box-shadow:0 0 8px var(--gold);
}

.sp-item h4{
    font-family:var(--font-b);
    font-size:.98rem;font-weight:700;
    margin-bottom:.2rem;
}
.sp-item p{font-size:.88rem;color:var(--text-muted);}

.story-quote{
    padding:1.2rem 1.5rem;
    border-left:3px solid var(--gold);
    background:rgba(212,160,23,0.06);
    border-radius:0 var(--radius) var(--radius) 0;
    font-style:italic;
    color:var(--text-sub);
    margin-top:1.5rem;
}
.story-quote i{color:var(--gold);margin-right:.4rem;font-size:1.1rem;}
.story-quote cite{
    display:block;margin-top:.5rem;
    font-style:normal;font-size:.82rem;
    color:var(--gold);font-weight:700;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-section{
    padding:3.5rem 0;
    background:var(--bg-2);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
}

.stat-card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:2rem 1rem;
    text-align:center;
    transition:border-color var(--t-fast),transform var(--t-fast);
}
.stat-card:hover{
    border-color:var(--border-gold);
    transform:translateY(-4px);
}

.stat-icon{
    font-size:1.8rem;color:var(--gold);
    margin-bottom:.6rem;
}

.stat-num-row{
    display:flex;align-items:baseline;
    justify-content:center;gap:.1rem;
}
.stat-num{
    font-family:var(--font-h);
    font-size:2.6rem;font-weight:900;
}
.stat-suf{
    font-size:1.6rem;font-weight:800;
    color:var(--gold);
}

.stat-card p{
    font-size:.85rem;color:var(--text-muted);
    margin-top:.4rem;font-weight:500;
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars-section{background:var(--bg-dark);}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
    margin-top:2.5rem;
}

.pillar-card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:2rem 1.5rem;
    position:relative;
    overflow:hidden;
    transition:all var(--t-med);
    transition-delay:var(--d,0s);
}

.pillar-card::before{
    content:'';
    position:absolute;top:0;left:0;
    width:100%;height:3px;
    background:var(--gold-grad);
    opacity:0;
    transition:opacity var(--t-fast);
}
.pillar-card:hover{
    border-color:var(--border-gold);
    transform:translateY(-6px);
    box-shadow:var(--shadow-gold);
}
.pillar-card:hover::before{opacity:1;}

.pillar-icon{
    width:52px;height:52px;
    background:rgba(212,160,23,.1);
    border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    font-size:1.4rem;color:var(--gold);
    margin-bottom:1.2rem;
}

.pillar-card h3{
    font-family:var(--font-b);
    font-size:1.05rem;font-weight:700;
    margin-bottom:.6rem;
}
.pillar-card p{font-size:.88rem;color:var(--text-muted)}

/* =========================================================
   SPECIALTIES
   ========================================================= */
.spec-section{background:var(--bg-2);}

.spec-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    margin-top:2.5rem;
}

.spec-card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    transition:all var(--t-med);
    transition-delay:var(--d,0s);
}
.spec-card:hover{
    border-color:var(--border-gold);
    transform:translateY(-8px);
    box-shadow:var(--shadow-gold);
}

.spec-img-wrap{
    position:relative;
    height:220px;overflow:hidden;
}
.spec-img-wrap img{
    width:100%;height:100%;
    object-fit:cover;
    transition:transform var(--t-med);
}
.spec-card:hover .spec-img-wrap img{transform:scale(1.07);}

.spec-overlay{
    position:absolute;inset:0;
    background:rgba(12,10,6,.45);
    display:flex;align-items:center;justify-content:center;
    font-size:2.5rem;color:var(--gold-2);
    opacity:0;
    transition:opacity var(--t-fast);
}
.spec-card:hover .spec-overlay{opacity:1;}

.spec-body{padding:1.6rem}
.spec-body h3{
    font-family:var(--font-b);
    font-size:1.2rem;font-weight:700;
    margin-bottom:.6rem;
}
.spec-body p{
    font-size:.88rem;color:var(--text-muted);
    margin-bottom:1rem;
}
.spec-body ul{list-style:none}
.spec-body li{
    font-size:.85rem;
    display:flex;align-items:center;gap:.6rem;
    color:var(--text-sub);
    padding:.25rem 0;
}
.spec-body li i{color:var(--gold);font-size:.85rem;}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-section{background:var(--bg-dark);}

.testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
    margin-top:2.5rem;
}

.testi-card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:2rem;
    transition:all var(--t-fast);
    transition-delay:var(--d,0s);
}
.testi-card:hover{
    border-color:var(--border-gold);
    transform:translateY(-4px);
}

.testi-stars{
    color:var(--gold);
    margin-bottom:.8rem;
    font-size:.85rem;
}

.testi-card p{
    color:var(--text-sub);
    font-style:italic;
    font-size:.9rem;
    margin-bottom:1.4rem;
}

.testi-user{
    display:flex;align-items:center;gap:.9rem;
}
.testi-avatar{
    width:40px;height:40px;
    background:rgba(212,160,23,.15);
    color:var(--gold);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
}
.testi-user strong{display:block;font-size:.9rem;}
.testi-user span{font-size:.78rem;color:var(--text-muted);}

/* =========================================================
   FOOTER — Clean Light Theme
   ========================================================= */
.footer{
    background:#ffffff;
    border-top:1px solid #e2e8f0;
    padding:4rem 0 2rem;
    position:relative;
    overflow:hidden;
}

.footer-glow{
    display:none;
}

/* Brand block */
.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-bottom:2.5rem;
    gap:1.2rem;
}

.footer-logo-wrap{
    display:flex;align-items:center;justify-content:center;gap:0.2rem;
}

.footer-logo-wrap img{
    height:70px;width:auto;
    object-fit:contain;
    margin-right:-8px;
}

.footer-logo-text{
    display: flex;
    align-items: center;
    line-height: 1.2;
}
.footer-logo-text span{
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 1.35rem;
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.footer-brand-desc{
    max-width:480px;
    color:var(--text-muted);
    font-size:.9rem;line-height:1.7;
}

/* Socials */
.footer-socials{
    display:flex;gap:.8rem;
}
.footer-socials a{
    width:42px;height:42px;
    border:1px solid var(--border);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:1rem;color:var(--text-muted);
    transition:all var(--t-fast);
}
.footer-socials a:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:#07050a;
    transform:translateY(-3px);
    box-shadow:var(--shadow-gold);
}

/* Main footer grid */
.footer-main-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1.5fr;
    gap:2.5rem;
    padding-bottom:3.5rem;
    border-bottom:1px solid var(--border);
    margin-bottom:2.5rem;
}

.fcol-title{
    font-family:var(--font-b);
    font-size:1rem;font-weight:700;
    margin-bottom:1.4rem;
    color:var(--text);
    position:relative;padding-bottom:.6rem;
}
.fcol-title::after{
    content:'';
    position:absolute;bottom:0;left:0;
    width:36px;height:2px;
    background:var(--gold-grad);
}

.fcol-list{list-style:none;display:flex;flex-direction:column;gap:.6rem;}
.fcol-list a{
    font-size:.88rem;color:var(--text-muted);
    display:flex;align-items:center;gap:.55rem;
    transition:all var(--t-fast);
}
.fcol-list a i{color:var(--gold);font-size:.75rem;flex-shrink:0;}
.fcol-list a:hover{color:var(--gold);transform:translateX(4px);}

/* Contact column */
.fcol-contact-list{
    list-style:none;
    display:flex;flex-direction:column;
    gap:1.2rem;
}
.fcol-contact-list li{
    display:flex;align-items:flex-start;gap:.9rem;
}
.fcol-contact-list i{
    color:var(--gold);font-size:1rem;
    flex-shrink:0;margin-top:3px;
}
.fcol-contact-list strong{
    display:block;font-size:.75rem;
    text-transform:uppercase;letter-spacing:.5px;
    color:var(--gold);font-weight:700;
    margin-bottom:.2rem;
}
.fcol-contact-list span,
.fcol-contact-list a{
    font-size:.85rem;color:var(--text-muted);
    display:inline;
    line-height:1.9;
}
.fcol-contact-list a{display:block; line-height:1.6;}
.fcol-contact-list a:hover{color:var(--gold);}

/* Footer bottom */
.footer-bottom{
    display:flex;align-items:center;justify-content:space-between;
    flex-wrap:wrap;gap:1rem;
    font-size:.8rem;color:var(--text-muted);
}

.footer-bottom-links{
    display:flex;gap:1.2rem;
}
.footer-bottom-links a:hover{color:var(--gold);}

/* ─── SCROLL REVEAL SETUP — GSAP sets initial state via JS ─ */
.reveal,.reveal-right,.reveal-up,.reveal-badge{
    will-change:transform,opacity;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width:1024px){
    .about-contact-card{position:static;}
    .footer-main-grid{grid-template-columns:1fr;}
}

@media(max-width:768px){
    .stats-grid{grid-template-columns:repeat(2,1fr);}
    .footer-main-grid{grid-template-columns:1fr;}
    .footer-bottom{flex-direction:column;text-align:center;}
    .footer-bottom-links{justify-content:center;}
    .hero-chips{flex-direction:column}
    .hero-heading{font-size:clamp(1.1rem, 4.8vw, 1.8rem); white-space:normal;}
    .about-header .sec-title{font-size:clamp(1.1rem, 4.5vw, 1.6rem); white-space:normal;}
    .footer-logo-text span{font-size:clamp(0.9rem, 3.8vw, 1.2rem); white-space:normal;}
}

@media(max-width:480px){
    .about-grid{grid-template-columns:1fr;}
    .hero-heading{font-size:1.15rem; letter-spacing:0;}
    .about-header .sec-title{font-size:1.15rem; letter-spacing:0;}
    .footer-logo-text span{font-size:0.95rem;}
}

/* =========================================================
   HEADER & HAMBURGER NAVIGATION DRAWER
   ========================================================= */
.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #e2e8f0;
    z-index:1000;
    padding:0.6rem 0;
    box-shadow:0 4px 12px rgba(15,23,42,0.03);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand-link{
    display:flex;
    align-items:center;
    gap:0.6rem;
    text-decoration:none;
}

.header-logo-img{
    height:42px;
    width:auto;
    object-fit:contain;
}

.brand-link span{
    font-family:'Outfit', sans-serif;
    font-size:1.1rem;
    font-weight:800;
    color:var(--blue);
}

.hamburger-btn{
    background:#f1f5f9;
    color:#1e293b;
    border:1px solid #cbd5e1;
    width:42px;
    height:42px;
    border-radius:10px;
    font-size:1.2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all 0.2s ease;
}

.hamburger-btn:hover{
    background:#eff6ff;
    color:var(--blue);
    border-color:var(--blue);
}

/* Nav Drawer Overlay */
.nav-drawer-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,0.5);
    backdrop-filter:blur(3px);
    z-index:10000;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.3s ease;
}

.nav-drawer-overlay.active{
    opacity:1;
    pointer-events:auto;
}

/* Nav Drawer Panel */
.nav-drawer{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100vh;
    background:#ffffff;
    z-index:10001;
    box-shadow:-10px 0 30px rgba(0,0,0,0.15);
    display:flex;
    flex-direction:column;
    transition:right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.active{
    right:0;
}

.drawer-header{
    padding:1.2rem 1.5rem;
    border-bottom:1px solid #e2e8f0;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.drawer-logo{
    display:flex;
    align-items:center;
    gap:0.6rem;
}

.drawer-logo img{
    height:36px;
    width:auto;
}

.drawer-logo span{
    font-family:'Outfit', sans-serif;
    font-size:1rem;
    font-weight:800;
    color:var(--blue);
}

.close-drawer-btn{
    background:transparent;
    border:none;
    font-size:1.8rem;
    color:#64748b;
    cursor:pointer;
    line-height:1;
}

.drawer-menu{
    list-style:none;
    padding:1.5rem 1rem;
    display:flex;
    flex-direction:column;
    gap:0.5rem;
    flex:1;
}

.drawer-link{
    display:flex;
    align-items:center;
    gap:0.8rem;
    padding:0.85rem 1rem;
    color:#334155;
    text-decoration:none;
    font-size:0.95rem;
    font-weight:600;
    border-radius:10px;
    transition:all 0.2s ease;
}

.drawer-link i{
    color:var(--blue);
    font-size:1.1rem;
    width:22px;
}

.drawer-link:hover{
    background:#eff6ff;
    color:var(--blue);
}

.drawer-link.admin-link{
    margin-top:auto;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#0f172a;
}

.drawer-link.admin-link:hover{
    background:var(--blue);
    color:#fff;
}
.drawer-link.admin-link:hover i{
    color:#fff;
}

.drawer-footer{
    padding:1.2rem 1.5rem;
    border-top:1px solid #e2e8f0;
}

.drawer-wa-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.5rem;
    background:#25d366;
    color:#fff;
    padding:0.75rem;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    font-size:0.9rem;
}

/* =========================================================
   PUBLIC PRODUCTS SHOWCASE SECTION
   ========================================================= */
.products-section{
    padding:5rem 0;
    background:#ffffff;
}

.products-grid-public{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap:2rem;
    margin-top:2.5rem;
}

.loading-products{
    grid-column:1/-1;
    text-align:center;
    padding:3rem;
    color:#64748b;
    font-size:1rem;
}

.product-card-public{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:0 10px 25px rgba(15,23,42,0.04);
    transition:all 0.3s ease;
    display:flex;
    flex-direction:column;
}

.product-card-public:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(15,23,42,0.08);
    border-color:#cbd5e1;
}

.pcp-img-wrap{
    height:200px;
    position:relative;
    background:#f8fafc;
    overflow:hidden;
}

.pcp-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.4s ease;
}

.product-card-public:hover .pcp-img-wrap img{
    transform:scale(1.05);
}

.pcp-category{
    position:absolute;
    top:12px;
    left:12px;
    background:rgba(29,78,216,0.9);
    color:#ffffff;
    font-size:0.72rem;
    font-weight:700;
    padding:0.25rem 0.65rem;
    border-radius:99px;
    backdrop-filter:blur(4px);
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.pcp-body{
    padding:1.4rem;
    flex:1;
    display:flex;
    flex-direction:column;
}

.pcp-title{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:1.1rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:0.4rem;
}

.pcp-desc{
    font-size:0.88rem;
    color:#64748b;
    line-height:1.6;
    margin-bottom:1rem;
    flex:1;
}

.pcp-veg-tag{
    display:inline-flex;
    align-items:center;
    gap:0.35rem;
    color:#16a34a;
    font-size:0.78rem;
    font-weight:700;
}

/* View All Products Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--blue);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35);
    color: #ffffff;
}

.pcp-veg-tag{
    display:inline-flex;
    align-items:center;
    gap:0.35rem;
    color:#16a34a;
    font-size:0.78rem;
    font-weight:700;
}

