*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    
}


body{
background:#f7e6d3;
font-family:Georgia, serif;

}




.navbar{
    position:sticky;
    top:0;

    min-height:260px;
    padding:30px 5%;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    z-index:1000;
    
}
#topBtn{
    z-index:1100;
}
.wave{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:-1;

    filter:
        drop-shadow(-5px 3px 0 #551611)
        drop-shadow(6px -3px 0 #702822)
        drop-shadow(-2px 5px 0 #3b0c08)
        drop-shadow(3px 1px 0 #772822);

    animation:waveFloat 8s ease-in-out infinite;
}

@keyframes waveFloat{
50%{
transform:translateY(-5px);
}
}

.logo img{
width:clamp(300px,10vw,500px);
animation:float 4s ease-in-out infinite;
}

@keyframes float{
50%{
transform:translateY(-8px);
}
}

.desktop-menu{
display:flex;
gap:30px;
list-style:none;
margin-top:20px;
font-size:clamp(1.2rem,1.3vw,2rem);
}

.desktop-menu li{
cursor:pointer;
position:relative;
transition:.3s;
}

.desktop-menu li:hover{
color:#ffffff;
transform:translateY(-5px);
}

.active{
color:#ffffff;
}


.franchise-img{
    position:relative;

    width:85px;
    height:auto;

    opacity:1;

    object-fit:contain;

    filter:drop-shadow(
        0 8px 12px rgba(0,0,0,.15)
    );

    transition:.3s ease;
}

.franchise-card:hover .franchise-img{
    transform:scale(1.05);
}



/* .franchise-img{
    animation:floatCup 3s ease-in-out infinite;
} */

.franchise-card{
    position:relative;

     width:320px;
    height:120px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;

    border-radius:28px;

    background:linear-gradient(
        135deg,
        #5b1d0d,
        #9a4d1a
    );

    box-shadow:0 15px 30px rgba(0,0,0,.18);

    overflow:hidden;
}

.franchise-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:50%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
transform:skewX(-25deg);
animation:shine 4s infinite;
}

@keyframes shine{
100%{
left:160%;
}
}



.franchise-content{
    position:relative;
    z-index:2;
}

.franchise-content h3{
    color:#fff3d7;
    font-size:1.5rem;
    margin-bottom:5px;
}

.franchise-content p{
    color:#f3d8b0;
    font-size:.9rem;
}

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    position:absolute;
    top:35px;
    right:5%;
    z-index:999;
}

.hamburger span{
    width:32px;
    height:4px;
    background:#fff;
    border-radius:10px;
    transition:all .35s ease;
}

.mobile-menu{
    position:absolute;
    top:120px;
    left:5%;
    width:90%;
    padding:25px;

    background:#f6e7d8;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);

    transition:all .4s ease;
    z-index:998;

    text-align:center;      /* Center text */
}

.mobile-menu ul{
    list-style:none;
    margin-top:20px;
    padding:0;
}

.mobile-menu li{
    padding:15px 0;
    cursor:pointer;
    font-size:1.2rem;
}


.mobile-menu.show{
opacity:1;
visibility:visible;
transform:translateY(0);
}




.mobile-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-menu li{
    padding:15px 0;
    font-size:1.1rem;
}

.mobile-menu .franchise-card{

    width:100%;
    max-width:450px;

    height:110px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    border-radius:25px;
}

.mobile-menu .franchise-content{

    position:relative;

    text-align:left;
}

.mobile-menu .franchise-content h3{

    font-size:1.5rem;
    margin-bottom:5px;
}

.mobile-menu .franchise-content p{

    font-size:1rem;
}

.mobile-menu .franchise-img{

    position:relative;

    width:85px;
    height:auto;

    opacity:1;

    margin-left:15px;

    object-fit:contain;

    filter:drop-shadow(
        0 8px 12px rgba(0,0,0,.15)
    );

    animation:none;
}

/* MOBILE ONLY */
@media (max-width:900px){

    .loader-logo{
        position:fixed;
        z-index:1000000;

        width:300px;

        left:50%;
        top:22%;

        transform:translate(-50%, -50%);

        transition:
            top 1.2s cubic-bezier(.22,1,.36,1),
            left 1.2s cubic-bezier(.22,1,.36,1),
            width 1.2s cubic-bezier(.22,1,.36,1),
            transform 1.2s cubic-bezier(.22,1,.36,1);
    }

    .loader-logo.move-navbar{
        top:35px;
        left:20px;

        width:150px;

        transform:none;
    }

    /* Hide navbar logo initially */
    .logo{
        opacity:0;
        transition:opacity .4s ease;
    }

    .logo.show{
        opacity:1;
    }
}

/* Show only below 900px */
@media screen and (max-width:900px){

    .desktop-menu,
    .desktop-order{
        display:none;
    }

    .hamburger{
        display:flex;
    }

   .logo img{
        width:150px;   /* change to desired size */

}
}
/* Hamburger Animation */





.hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */


.mobile-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


/* HERO */

.hero{
    min-height:85vh;

    display:grid;
    grid-template-columns:1fr 1fr 1fr;

    align-items:center;

    gap:40px;

     padding:0 7% 40px;

    background:#f7e6d3;

    position:relative;
}

/* LEFT */

.hero-left h1{

    font-size:clamp(4rem,8vw,7rem);

    line-height:.9;

    color:#3a1208;

    margin:20px 0;
}

.hero-left h1 span{
    display:block;
    color:#d06628;
}

.tagline{

    font-size:1.6rem;

    color:#5b1d0d;

    font-style:italic;
}

.hero-left p{

    font-size:1.2rem;

    color:#5d4a3e;

    max-width:420px;

    line-height:1.7;
}

.hero-buttons{

    display:flex;
    gap:15px;

    margin-top:30px;
}

.btn-primary{

    background:#d06628;
    color:white;

    padding:15px 30px;

    border-radius:999px;

    text-decoration:none;
}

.btn-secondary{

    border:2px solid #d06628;

    color:#d06628;

    padding:15px 30px;

    border-radius:999px;

    text-decoration:none;
}

/* CENTER */

.hero-center{

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

.hero-center img{

    width:min(450px,90%);

    animation:floatCup 4s ease-in-out infinite;
}



/* STEAM */

.steam{

    position:absolute;

    width:20px;
    height:120px;

    background:rgba(255,255,255,.5);

    filter:blur(12px);

    border-radius:50%;

    animation:steam 4s infinite;
}

.steam1{
    top:-20px;
    left:48%;
}

.steam2{
    top:-30px;
    left:52%;
    animation-delay:1s;
}

.steam3{
    top:-15px;
    left:55%;
    animation-delay:2s;
}

@keyframes steam{

    0%{
        opacity:0;
        transform:translateY(0);
    }

    30%{
        opacity:.8;
    }

    100%{
        opacity:0;
        transform:translateY(-80px);
    }
}

/* RIGHT */

.hero-right h2{

    font-size:4rem;

    line-height:1;

    margin-bottom:40px;

    color:#3a1208;
}

.hero-right h2 span{

    display:block;

    color:#d06628;
}

.feature{

    display:flex;

    gap:20px;

    padding:25px 0;

    border-bottom:1px dashed #d7b79a;
}

.icon{

    width:60px;
    height:60px;

    border:2px solid #d06628;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:1.6rem;
}

.feature h3{

    color:#3a1208;
    margin-bottom:5px;
}

.feature p{

    color:#6d5b4f;
}

/* MOBILE */

@media(max-width:1000px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-left p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-right{
        max-width:600px;
        margin:auto;
    }

 /* ADD THIS */

    .franchise-card{
        width:240px;
        height:90px;
    }

    .franchise-img{
        width:65px;
    }

    .franchise-content h3{
        font-size:1.2rem;
    }

    .franchise-content p{
        font-size:.8rem;
    }


}

.outlets-section{
    min-height:100vh;
    padding:80px 7%;
    display:grid;
    grid-template-columns:1.05fr 1.25fr;
    gap:40px;
    align-items:center;
    background:#f7e6d3;
    position:relative;
    overflow:hidden;
}

.outlets-section::before,
.outlets-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:radial-gradient(circle, rgba(208,102,40,.12), transparent 70%);
    border-radius:50%;
    pointer-events:none;
}

.outlets-section::before{
    top:20px;
    left:-60px;
}

.outlets-section::after{
    bottom:30px;
    right:-70px;
}

.outlets-left{
    position:relative;
    padding-right:20px;
}

.section-kicker{
    font-size:1.2rem;
    font-style:italic;
    color:#5b1d0d;
    margin-bottom:10px;
}

.outlets-left h2{
    font-size:clamp(3.2rem, 6.5vw, 6.2rem);
    line-height:.95;
    color:#3a1208;
    margin-bottom:18px;
}

.outlets-left h2 span{
    display:block;
    color:#d06628;
}

.section-text{
    max-width:460px;
    font-size:1.15rem;
    line-height:1.8;
    color:#5d4a3e;
    /* margin-bottom:30px; */
}

.outlets-cup-wrap{
    position:relative;
    width:100%;
    display:flex;
    align-items:flex-end;
    min-height:auto;
}

.outlets-cup{
    width:min(600px, 90%);
    height:auto;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.18));
    animation:floatCup 4s ease-in-out infinite;
}

.passion-badge{
    position:absolute;
    left:10%;
    bottom:70px;
    width:170px;
    height:170px;
    border-radius:50%;
    overflow:hidden;
    background:none;
   
    transform:rotate(-8deg);
}

.passion-badge img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.passion-badge span{
    font-size:1rem;
    opacity:.95;
}

.passion-badge strong{
    font-size:1.6rem;
    line-height:1.1;
}

.outlets-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.outlet-card{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:18px;
    background:rgba(255,255,255,.22);
    border:1px solid rgba(208,102,40,.18);
    border-radius:28px;
    padding:14px;
    box-shadow:0 12px 25px rgba(0,0,0,.06);
    backdrop-filter:blur(4px);
}

.outlet-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:22px;
    display:block;
}

.outlet-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:6px 4px;
}

.outlet-info h3{
    font-size:clamp(1.8rem, 3vw, 3rem);
    color:#3a1208;
    margin-bottom:12px;
    line-height:1;
}

.outlet-info p{
    font-size:1.05rem;
    line-height:1.6;
    color:#5d4a3e;
    margin-bottom:8px;
}

.location-btn{
    margin-top:14px;
    align-self:flex-start;
    display:inline-block;
    text-decoration:none;
    background:#d06628;
    color:#fff;
    padding:12px 22px;
    border-radius:999px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s ease;
}

.location-btn:hover{
    transform:translateY(-3px);
    background:#b9541f;
}

.outlets-footer{
    margin-top:8px;
    padding:16px 22px;
    border:1px dashed rgba(208,102,40,.45);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#5b1d0d;
    background:rgba(255,255,255,.18);
}

.outlets-footer span{
    font-size:1.5rem;
}

@keyframes floatCup{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:1100px){
    .outlets-section{
        grid-template-columns:1fr;
        gap:30px;
    }

    .outlets-left{
        text-align:center;
    }

    .section-text{
        margin-left:auto;
        margin-right:auto;
    }

    .outlets-cup-wrap{
        min-height:300px;
        justify-content:center;
    }

    .passion-badge{
        left:58%;
        bottom:50px;
    }

    .outlet-card{
        grid-template-columns:1fr;
    }

    .outlet-card img{
        height:240px;
    }

    .outlet-info{
        text-align:left;
    }
}

@media(max-width:700px){
    .outlets-section{
        padding:60px 5%;
    }

    .outlets-left h2{
        font-size:3rem;
    }

    .section-text{
        font-size:1rem;
    }

     .outlets-left{
    overflow:visible;
}

.outlets-cup{
    width:120%;
    max-width:none;
}

    .passion-badge{
        width:130px;
        height:130px;
        left:54%;
        bottom:30px;
    }

    .passion-badge strong{
        font-size:1.2rem;
    }

    .outlet-card img{
        height:200px;
    }

    .outlet-info p{
        font-size:.98rem;
    }

    .location-btn{
        padding:11px 18px;
    }
}

/* ===========================
   FOOTER SECTION
=========================== */

.footer-section{

    background:#5b1d0d;

    color:#fff3d7;

    padding-top:80px;

    position:relative;
}

/* TOP AREA */

.footer-top{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.3fr
    1fr
    1fr
    1fr;

    gap:40px;

    padding-bottom:60px;
}

.footer-brand img{

    width:180px;

    margin-bottom:20px;
}

.footer-brand p{

    line-height:1.8;

    color:#f3d8b0;
}

.socials{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.socials a{

    width:50px;
    height:50px;

    border-radius:50%;

    background:#d06628;

    color:white;

    text-decoration:none;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:1.2rem;

    transition:.3s ease;
}

.socials a:hover{

    transform:translateY(-5px);

    background:#e07a3f;
}

.fa-facebook-f{
    color:#ffffff;
}

.fa-instagram{
    color:#ffffff;
}

.fa-youtube{
    color:#ffffff;
}

.footer-contact h3,
.footer-address h3,
.footer-franchise h3{

    margin-bottom:20px;

    color:#fff;
}

.footer-contact p,
.footer-address p,
.footer-franchise p{

    color:#f3d8b0;

    line-height:1.9;
}

.footer-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 28px;

    background:#d06628;

    color:white;

    text-decoration:none;

    border-radius:999px;

    transition:.3s;
}

.footer-btn:hover{

    transform:translateY(-3px);
}

/* MAP */

.footer-map{

    width:90%;

    margin:auto;

    text-align:center;

    padding-bottom:60px;
}

.footer-map h2{

    margin-bottom:25px;

    font-size:2rem;
}

.footer-map iframe{

    width:100%;

    height:350px;

    border:none;

    border-radius:25px;

    overflow:hidden;
}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    padding:25px 5%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom ul{

    display:flex;

    list-style:none;

    gap:25px;
}

.footer-bottom a{

    color:#fff3d7;

    text-decoration:none;
}

/* MOBILE */

.mobile-wave{
    display:none;
}

.desktop-wave{
    display:block;
}





@media(max-width:900px){

   .desktop-wave{
        display:none;
    }

    .mobile-wave{
        display:block;
    }


     .navbar{
        min-height:180px;
        padding:20px 5%;
    }


    .footer-top{

        grid-template-columns:1fr;

        text-align:center;
    }

    .socials{

        justify-content:center;
    }

    .footer-bottom{

        flex-direction:column;
    }

    .footer-bottom ul{

        flex-wrap:wrap;

        justify-content:center;
    }

        .outlet-maps{

        grid-template-columns:1fr;
    }

    .outlet-card iframe{

        height:220px;
    }

}



.footer-map h2{

    text-align:center;

    margin-bottom:40px;

    font-size:2rem;

    color:#fff3d7;
}


.footer-map h2{

    margin-bottom:15px;

    font-size:2rem;

    color:#fff3d7;
}

.outlet-address{

    color:#f3d8b0;

    font-size:1rem;

    margin-bottom:25px;
}

.footer-map iframe{

    width:100%;

    height:350px;

    border:none;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

#topBtn{

    position:fixed;

    bottom:25px;
    right:25px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#d06628;

    color:white;

    font-size:24px;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transition:all .3s ease;
}

#topBtn.show{

    opacity:1;

    visibility:visible;
}

#topBtn:hover{

    transform:translateY(-5px);

    background:#b8551d;
}


.desktop-wave{
    display:block !important;
}

.mobile-wave{
    display:none !important;
}

@media (max-width:900px){

    .desktop-wave{
        display:none !important;
    }

    .mobile-wave{
        display:block !important;
    }
}


/* =========================
   CHAI LOADER
========================= */

/* ==========================
   CHAI LOADER
========================== */

#loader{
    position:fixed;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    background:#f7e6d3;

    z-index:999999;

    opacity:1;
    visibility:visible;

    transition:opacity .8s ease;
}
#loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.loader-logo{
    width:300px;
    display:block;
    margin-bottom:20px;
}

.glass-wrap{
    position:relative;
    width:140px;
    height:220px;
}

.glass-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
    z-index:2;
}

.chai-fill{
    position:absolute;

    bottom:18%;
    left:50%;
    transform:translateX(-50%);

    width:72%;
    height:0;

    background:#d06628;

    clip-path:polygon(
        12% 100%,
        88% 100%,
        100% 0%,
        0% 0%
    );

    z-index:1;

    overflow:hidden;

    animation:fillTea 2.5s linear forwards;
}







.chai-fill::before{
    content:"";

    position:absolute;

    top:-12px;
    left:-20%;

    width:140%;
    height:22px;

    background:#e88a4a;

    border-radius:50%;

    animation:chaiWave 1.5s ease-in-out infinite;
}

.chai-fill::after{
    content:"☕";

    position:absolute;

    top:15px;
    left:50%;

    transform:translateX(-50%);

    opacity:.15;

    animation:bubbleFloat 2s infinite;
}


@keyframes bubbleFloat{

    0%{
        transform:translate(-50%,15px);
        opacity:0;
    }

    50%{
        opacity:.2;
    }

    100%{
        transform:translate(-50%,-25px);
        opacity:0;
    }

}

@keyframes chaiWave{

    0%,100%{
        transform:translateX(0) scaleX(1);
    }

    50%{
        transform:translateX(-8px) scaleX(1.08);
    }

}


@keyframes waveMove{

    0%{
        transform:translateX(0) rotate(0deg);
    }

    50%{
        transform:translateX(20px) rotate(2deg);
    }

    100%{
        transform:translateX(0) rotate(0deg);
    }

}

@keyframes fillTea{

    from{
        height:0;
    }

    to{
        height:63%;
    }

}

.loader-text{
    margin-top:25px;
    font-size:1.2rem;
    color:#5b1d0d;
    font-weight:bold;
}

/* STEAM */

.loader-steam{
    position:absolute;
    width:18px;
    height:90px;
    background:rgba(255,255,255,.55);
    border-radius:50%;
    filter:blur(10px);
    animation:loaderSteam 3s infinite;
}

.steam-a{
    left:40%;
    top:-40px;
}

.steam-b{
    left:50%;
    top:-50px;
    animation-delay:.8s;
}

.steam-c{
    left:60%;
    top:-35px;
    animation-delay:1.6s;
}

@keyframes loaderSteam{

    0%{
        opacity:0;
        transform:translateY(0);
    }

    30%{
        opacity:.8;
    }

    100%{
        opacity:0;
        transform:translateY(-60px);
    }

}

html {
    overflow-x: hidden;
}

body {
    overflow-x: clip; /* 'clip' prevents horizontal scrolling without breaking sticky navbars! */
}

body.loading{
    overflow:hidden;
    height:100vh;
}

body.loading #loader{
    visibility:visible;
}





/* ==========================
   GOOGLE REVIEWS SECTION
========================== */



/* ==========================
   CAROUSEL LAYOUT
========================== */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    align-items: center;
}

.reviews-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 5px; /* Adds padding so the box-shadow isn't cut off */
    
    /* Hide scrollbar for a clean look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.reviews-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.review-card {
    flex: 0 0 calc(33.333% - 17px); /* Shows 3 cards at a time on desktop */
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* Carousel Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #d06628;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: #d06628;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Mobile Responsiveness for Carousel */
@media (max-width: 1000px) {
    .review-card {
        flex: 0 0 calc(50% - 12.5px); /* Shows 2 cards on tablets */
    }
}

@media (max-width: 650px) {
    .review-card {
        flex: 0 0 100%; /* Shows 1 card on mobile */
    }
    .prev-btn { left: 0px; }
    .next-btn { right: 0px; }
}




.reviews-section {
    padding: 80px 5%;
    background: #f7e6d3; /* Blends perfectly with your theme */
    text-align: center;
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #3a1208;
    margin-bottom: 15px;
}

.rating-overview {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-overview .score {
    font-size: 3rem;
    font-weight: bold;
    color: #3a1208;
    line-height: 1;
}

.rating-overview .stars,
.review-stars {
    color: #fbbc04; /* Official Google Star Gold */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-count {
    color: #5d4a3e;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: sans-serif;
}

.reviewer-info h4 {
    color: #202124;
    font-size: 1.05rem;
    margin-bottom: 2px;
    font-family: sans-serif;
}

.reviewer-info span {
    color: #70757a;
    font-size: 0.85rem;
    font-family: sans-serif;
}

.google-icon {
    color: #4285F4;
    font-size: 1.5rem;
}

.review-card p {
    color: #3c4043;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

/* Call to Action Button */
.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1a73e8; /* Google Blue */
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: 2px solid #1a73e8;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: sans-serif;
}

.google-btn:hover {
    background: #1a73e8;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 950px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-section {
        padding: 60px 5%;
    }
}










/* ==========================
   INTRO SCREEN
========================== */
#introScreen {
    position: fixed;
    inset: 0;
    background: #f7e6d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999999; /* Higher than the loader */
    transition: opacity 0.5s ease;
}

.intro-logo {
    width: clamp(200px, 30vw, 350px);
    margin-bottom: 40px;
}

#enterBtn {
    background: #d06628;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 35px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(208, 102, 40, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

#enterBtn:hover {
    transform: translateY(-5px);
    background: #b9541f;
}


/* ==========================
   INSTAGRAM PROFILE BADGE
========================== */
.ig-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff; /* White pill background to make it pop */
    padding: 8px 12px 8px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Instagram's native font style */
}

.ig-handle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #262626; /* Instagram's dark grey text */
}

/* Official Instagram Gradient applied to the icon */
.ig-gradient-icon {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Instagram's Signature Blue Follow Button */
.ig-follow-btn {
    background: #0095f6; 
    color: #ffffff !important; /* Force white text */
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ig-follow-btn:hover {
    background: #1877f2; /* Slightly darker blue on hover */
    transform: scale(1.05);
}



/* ==========================
   INSTAGRAM FEED
========================== */
.insta-section {
    padding: 60px 5%;
    background: #f7e6d3; /* Matches your theme */
    text-align: center;
}

.insta-header {
    margin-bottom: 40px;
}

.insta-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #3a1208;
    margin-bottom: 10px;
}

.insta-header a {
    font-size: 1.2rem;
    color: #d06628;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.insta-header a:hover {
    color: #b9541f;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.insta-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    display: block;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91, 29, 13, 0.7); /* Your brand dark brown with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.insta-overlay span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover Effects */
.insta-post:hover img {
    transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 500px) {
    .insta-grid {
        gap: 10px;
    }
    .insta-overlay {
        font-size: 1rem;
    }
}




/* ==========================
   ANIMATION CONTROLLER
========================== */
/* Hide animations until the 'brewing' class is added via JS */
#loader:not(.brewing) .chai-fill,
#loader:not(.brewing) .chai-fill::before,
#loader:not(.brewing) .chai-fill::after,
#loader:not(.brewing) .loader-steam {
    animation: none !important;
}



