.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
    background:#fff;
}

*{
    box-sizing: border-box;
}

body{
    margin:0;
    overflow-x:hidden;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:40px;
}

.logo span{
    font-size:28px;
    font-weight:bold;
    color:#1f5e2f;
}

.header-icons{
    display:flex;
    gap:15px;
    font-size:24px;
}

.banner img{
    width:100%;
    display:block;
    border-radius:15px;
}

.live-notification,
.creator-strip{
    width: calc(100% - 30px);
    margin: 15px auto;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
}
.live-notification marquee,
.creator-strip marquee{
    width: 100%;
    display: block;
    white-space: nowrap;
    color: #fff;
}

.creator-title{
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.creator-strip{
    background:#1f5e2f;
    color:#fff;
    margin:15px;
    border-radius:8px;
    overflow:hidden;
}

.creator-title{
    text-align:center;
    font-size:18px;
    font-weight:bold;
    padding:10px;
}
/* Banner Box */
.banners{
    width:100%;
    overflow:hidden;
    border-radius:15px;
    margin:15px 0;
}

/* Slider */
.slider{
    display:flex;
    width:200%; /* 2 images = 200% */
    animation:slide 6s infinite; /* 3 sec + 3 sec */
}

/* Images */
.slider img{
    width:50%; /* Har image half width le */
    flex-shrink:0;
    display:block;
    border-radius:15px;
}

/* Animation */
@keyframes slide{
    0%,45%{
        transform:translateX(0);
    }

    50%,95%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0);
    }
}
.about{
    text-align:center;
    padding:30px 20px;
}

.about h2{
    color:#1f5e2f;
    font-size:32px;
    margin-bottom:20px;
}

.about p{
    max-width:700px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#333;
}
.note{
    margin-top:20px;
    font-size:16px;
    color:#666;
}
.categories{
    padding:30px 20px;
    text-align:center;
}

.categories h2{
    font-size:32px;
    color:#1f5e2f;
    margin-bottom:25px;
}

.circles{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.circles div{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#1f5e2f;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    transition:.3s;
}

.circles div:hover{
    transform:scale(1.08);
}

.circles img{
    width:45px;
    height:45px;
    object-fit:contain;
    margin-bottom:8px;
}

.circles span{
    font-size:13px;
    font-weight:600;
    text-align:center;
}

@media(max-width:768px){
    .circles div{
        width:90px;
        height:90px;
    }

    .circles img{
        width:35px;
        height:35px;
    }

    .circles span{
        font-size:12px;
    }
}
.reviews-section{
    padding:30px 20px;
    text-align:center;
}

.reviews-section h2{
    color:#1f5e2f;
    font-size:32px;
    margin-bottom:25px;
}

.review-box{
    background:#fff;
    max-width:700px;
    margin:auto;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    min-height:250px;
}

.review{
    display:none;
}

.review.active{
    display:block;
    animation:fade .5s ease;
}

.review h3{
    color:#1f5e2f;
    margin-bottom:15px;
    font-size:24px;
}

.review p{
    font-size:17px;
    line-height:1.7;
    color:#333;
}

.review small{
    display:block;
    margin-top:15px;
    color:green;
    font-weight:600;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.live-notification,
.creator-strip{
    width:95%;
    margin:15px auto;
    background:#1f5e2f;
    border-radius:12px;
    overflow:hidden;
}
body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
    padding:0 10px;
}

.video-grid video{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    border-radius:15px;
    display:block;
}
.about{
    padding:40px 20px;
    text-align:center;
}

.about h2{
    font-size:42px;
    color:#1f5e2f;
    margin-bottom:25px;
}
.about-slider{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
    max-width:900px;
    margin:auto;
    min-height:180px;
}



.about-slide{
    display:none;
    font-size:18px;
    line-height:1.8;
    color:#444;
    font-weight:500;
}

.about-slide.active{
    display:block;
    animation:fade 0.6s ease;
}


@keyframes fade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.wa-box{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:9999;
}

.wa-text{
    background:#fff;
    padding:10px 15px;
    border-radius:20px;
    box-shadow:0 3px 10px rgba(0,0,0,0.15);
    font-size:14px;
    font-weight:600;
    color:#1f5e2f;
}

.wa-btn{
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    animation:waPulse 2s infinite;
}

@keyframes waPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
}
.contact-box{
    width:90%;
    max-width:500px;
    margin:50px auto;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-box h2{
    color:#1f5e2f;
    margin-bottom:15px;
    font-size:32px;
}

.founder-name{
    color:#555;
    font-size:18px;
    margin-bottom:25px;
}

.contact-icons{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:25px;
}

.contact-icons a{
    width:55px;
    height:55px;
    background:#f5f5f5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.contact-icons a:hover{
    transform:scale(1.1);
}

.contact-icons img{
    width:30px;
    height:30px;
}



.founder-contact img{
    width:32px;
    height:32px;
}
.contact-box{
    width:90%;
    max-width:500px;
    margin:50px auto;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-box h2,
.contact-box h3{
    color:#1f5e2f;
    margin-bottom:20px;
}

.contact-icons,
.founder-icon{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:30px;
}

.contact-box{
    width:90%;
    max-width:500px;
    margin:50px auto;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-box h2,
.contact-box h3{
    color:#1f5e2f;
    margin-bottom:20px;
}

.contact-icons,
.founder-icon{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:30px;
}

.contact-icons a,
.founder-icon a{
    width:60px;
    height:60px;
    background:#f5f5f5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.contact-icons a:hover,
.founder-icon a:hover{
    transform:scale(1.1);
}

.contact-icons img,
.founder-icon img{
    width:32px;
    height:32px;
}

.founder-icon a{
    width:50px !important;
    height:50px !important;
}

.founder-icon img{
    width:28px !important;
    height:28px !important;
    object-fit:contain;
}

.menu-btn{
    font-size:30px;
    cursor:pointer;
}

.side-menu{
position:fixed;
left:-300px;
top:0;
width:280px;
height:100vh;
background:white;
z-index:9999;
transition:.35s;
box-shadow:5px 0 25px rgba(0,0,0,2);
overflow-y:auto;
}





/* scrollbar hide (clean look) */
.side-menu::-webkit-scrollbar{
    display:none;
}
}
.header-icons{
    display:flex;
    gap:15px;
    align-items:center;
}

.header-icons a,
.header-icons a:visited,
.header-icons a:hover,
.header-icons a:active{
    text-decoration:none;
    color:#1f5e2f;
    font-size:24px;
    border:none;
    outline:none;
}

.header-icons a img{
    border:none;
}
.header-icons a{
    -webkit-tap-highlight-color: transparent;
}
.header-icons a,
.header-icons a:link,
.header-icons a:visited,
.header-icons a:hover,
.header-icons a:active,
.header-icons a:focus{
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #1f5e2f;
    font-size: 24px;
    -webkit-tap-highlight-color: transparent;
}
.videos h2{
    text-align: center;
    color: #1f5e2f;
    margin-bottom: 20px;
}
.videos h2{
    text-align: center !important;
    width: 100%;
    display: block;
}

.signup-box{
    width:90%;
    max-width:400px;
    margin:60px auto;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:center;
}

.signup-box input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:10px;
    box-sizing:border-box;
}

.signup-box button{
    width:100%;
    padding:12px;
    background:#1f5e2f;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

.signup-box button:hover{
    background:#2d7a42;
}
.signup-page{
    background: linear-gradient(180deg,#f4fff4,#e8f5e9);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.signup-card{
    width:100%;
    max-width:380px;
    background:#fff;
    border-radius:25px;
    padding:30px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    text-align:center;
}

.signup-logo{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.signup-card h2{
    color:#1f5e2f;
    margin-bottom:8px;
}

.signup-card p{
    color:#666;
    font-size:14px;
    margin-bottom:25px;
}

.signup-card input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    box-sizing:border-box;
}

.signup-card input:focus{
    outline:none;
    border-color:#1f5e2f;
}

.signup-card button{
    width:100%;
    padding:14px;
    background:#1f5e2f;
    color:#fff;
    border:none;
    border-radius:14px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

.login-link{
    margin-top:20px;
    font-size:14px;
}

.login-link a{
    color:#1f5e2f;
    text-decoration:none;
    font-weight:bold;
}
.contact-page-icons{
    display:fl

.contact-box{
    width:90%;
    max-width:450px;
    margin:40px auto;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:center;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:25px;
}

.contact-item{
    text-decoration:none;
    color:#1f5e2f;
    background:#f8f8f8;
    padding:18px 10px;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    transition:0.35s;
}

.contact-item:hover{
    transform:scale(1.05);
}

.contact-item img{
    width:28px;
    height:28px;
    object-fit:contain;
}

.contact-item span{
    font-size:15px;
    font-weight:600;
}

.founder-contact{
    margin-top:20px;
    display:flex;
    justify-content:center;
}

.founder-contact img{
    width:24px !important;
    height:24px !important;
}
.about-page-slider{
    min-height:220px;
    margin-top:25px;
}

.about-page-slide{
    display:none;
    background:#f8f8f8;
    padding:25px;
    border-radius:20px;
}

.about-page-slide.active{
    display:block;
    animation:fade 0.6s ease;
}

.about-page-slide h3{
    color:#1f5e2f;
    margin-bottom:15px;
}

.about-page-slide p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.blog-card{
    background:#f8f8f8;
    padding:20px;
    border-radius:20px;
    margin-top:20px;
    text-align:left;
}

.blog-card h3{
    color:#1f5e2f;
    margin-bottom:10px;
    font-size:18px;
}

.blog-card p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

.blog-card a{
    display:inline-block;
    margin-top:12px;
    color:#1f5e2f;
    text-decoration:none;
    font-weight:600;
}
.creator-login-card{
    width:90%;
    max-width:400px;
    margin:60px auto;
    background:#fff;
    padding:35px 25px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.creator-login-card h2{
    color:#1f5e2f;
    margin-bottom:10px;
}

.creator-login-card p{
    color:#666;
    margin-bottom:25px;
}

.creator-login-card input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;
    box-sizing:border-box;
}

.creator-login-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:15px;
    background:#1f5e2f;
    color:#fff;
    font-size:17px;
    font-weight:600;
}
.creator-dashboard{
    width:90%;
    max-width:450px;
    margin:40px auto;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.creator-info{
    background:#f8f8f8;
    padding:15px;
    border-radius:15px;
    margin-bottom:20px;
}

.coin-box{
    background:#1f5e2f;
    color:#fff;
    text-align:center;
    padding:20px;
    border-radius:20px;
    font-size:18px;
    margin-bottom:20px;
}

.coin-box span{
    display:block;
    font-size:35px;
    font-weight:bold;
    margin-top:10px;
}
body{
    margin:0;
    padding:0;
    background:#f4f6f9;
    font-family:Arial, sans-serif;
}

.customer-dashboard{
    width:90%;
    max-width:400px;
    margin:30px auto;
}

.customer-dashboard h2,
.customer-dashboard h3{
    text-align:center;
    color:#1f5e2f;
}

.customer-card{
    background:#ffffff;
    border-radius:25px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
    margin-bottom:20px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #eee;
    font-size:15px;
}

.info-row:last-child{
    border-bottom:none;
}

.total-coins{
    margin-top:20px;
    background:#1f5e2f;
    color:#fff;
    text-align:center;
    padding:25px;
    border-radius:20px;
}

.total-coins p{
    margin:0;
    font-size:18px;
}

.total-coins h1{
    margin-top:10px;
    font-size:40px;
}

.history-card{
    background:#ffffff;
    border-radius:18px;
    padding:15px 20px;
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.topbar{
background:#1f5e2f;
color:white;
padding:15px;
display:flex;
align-items:center;
gap:15px;
}

.topbar button{
background:none;
border:none;
font-size:30px;
color:white;
}

.sidebar{
position:fixed;
left:-260px;
top:0;
width:250px;
height:100%;
background:#fff;
transition:.3s;
box-shadow:0 0 15px rgba(0,0,0,.2);
padding-top:70px;
}

.sidebar a{
display:block;
padding:15px 20px;
text-decoration:none;
color:#333;
border-bottom:1px solid #eee;
}

.cards{
padding:20px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.card{
background:#fff;
padding:20px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

}
.review-slider{
overflow:hidden;
margin-top:20px;
}

.review-track{
display:flex;
gap:15px;
width:max-content;
animation:
reviewSlide 40s linear infinite;
}

.review-box{
min-width:260px;
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:
0 4px 15px rgba(0,0,0,.08);
}

@keyframes reviewSlide{

0%{
transform:translateX(0);
}

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

}

input,
select,
textarea{

width:100%;
padding:15px;
border:
1px solid #ddd;
border-radius:15px;
box-sizing:border-box;
font-size:16px;

}

textarea{
height:120px;
resize:none;
}
#sideMenu{
overflow-y:auto !important;
overflow-x:hidden !important;
height:100vh !important;
-webkit-overflow-scrolling:touch;

}

#sideMenu::-webkit-scrollbar{
display:none;

}

/* ==========================================
   SHOP BY CATEGORY
========================================== */

.categories{
    padding:50px 20px;
    background:#ffffff;
}

.section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#1b5e20;
    margin-bottom:40px;
}

.category-grid{
    max-width:800px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 30px;
}

.category-card{
    text-align:center;
    cursor:pointer;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto;
    border:5px solid #f5f5f5;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.category-card span{
    display:block;
    margin-top:15px;
    font-size:18px;
    font-weight:700;
    color:#222;
}

/* Tablet */

@media (max-width:768px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px 15px;
}

.category-card img{
    width:120px;
    height:120px;
}

.category-card span{
    font-size:16px;
}

}

/* Mobile */

@media (max-width:480px){

.category-card img{
    width:100px;
    height:100px;
}

.category-card span{
    font-size:15px;
}

}

/* ========= PREMIUM PRODUCT ========= */

.product-container{
max-width:1200px;
margin:auto;
padding:20px;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.gallery{
background:#fff;
padding:20px;
border-radius:25px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.main-image img{
width:100%;
border-radius:20px;
}

.thumbnails{
display:flex;
gap:10px;
margin-top:20px;
justify-content:center;
}

.thumbnails img{
width:70px;
height:70px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
border:2px solid #ddd;
transition:.3s;
}

.thumbnails img:hover{
border-color:#1f5e2f;
}

.info{
background:#fff;
padding:30px;
border-radius:25px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.product-title{
font-size:34px;
font-weight:bold;
margin-bottom:15px;
}

.rating{
display:inline-block;
background:#1f5e2f;
color:#fff;
padding:8px 15px;
border-radius:30px;
font-weight:bold;
margin-bottom:15px;
}

.price-row{
margin-top:20px;
display:flex;
align-items:center;
gap:15px;
}

.sell-price{
font-size:38px;
font-weight:bold;
color:#111;
}

.old-price{
font-size:24px;
text-decoration:line-through;
color:#888;
}

.off{
background:#e53935;
color:#fff;
padding:6px 12px;
border-radius:8px;
font-weight:bold;
}

.delivery-card{
margin-top:25px;
background:#f3fff5;
padding:18px;
border-radius:15px;
border-left:5px solid #1f5e2f;
}

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:25px;
}

.feature{
background:#fafafa;
padding:15px;
border-radius:15px;
text-align:center;
font-weight:bold;
}

.action-buttons{
display:flex;
gap:15px;
margin-top:30px;
}

.action-buttons button{
flex:1;
padding:18px;
font-size:18px;
border:none;
border-radius:15px;
cursor:pointer;
font-weight:bold;
}

.cart-btn{
background:#ff9800;
color:#fff;
}

.buy-btn{
background:#1f5e2f;
color:#fff;
}

@media(max-width:900px){

.product-container{
grid-template-columns:1fr;
}

}

/*========== SERVICE GRID ==========*/

.service-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-top:25px;

}

.service-card{

background:#fafafa;

padding:18px;

border-radius:18px;

text-align:center;

border:1px solid #eee;

transition:.3s;

}

.service-card:hover{

transform:translateY(-4px);

}

.service-icon{

font-size:28px;

margin-bottom:8px;

}

.service-title{

font-weight:700;

font-size:16px;

}

.service-text{

font-size:13px;

color:#666;

margin-top:5px;

}

/*========== BUTTONS ==========*/

.button-group{

display:flex;

gap:15px;

margin-top:30px;

}

.cart-button{

flex:1;

background:#ff9800;

color:#fff;

border:none;

padding:18px;

font-size:17px;

font-weight:700;

border-radius:15px;

cursor:pointer;

}

.buy-button{

flex:1;

background:#1b5e20;

color:#fff;

border:none;

padding:18px;

font-size:17px;

font-weight:700;

border-radius:15px;

cursor:pointer;

}

.cart-button:hover{

background:#fb8c00;

}

.buy-button:hover{

background:#2e7d32;

}

@media(max-width:768px){

.button-group{

flex-direction:column;

}

}

/*========== ACCORDION ==========*/

.accordion-box{

max-width:1200px;

margin:30px auto;

padding:0 20px;

}

.accordion{

background:#fff;

border-radius:18px;

margin-bottom:18px;

overflow:hidden;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.accordion-btn{

width:100%;

padding:20px;

background:#fff;

border:none;

font-size:18px;

font-weight:600;

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

}

.accordion-btn span{

font-size:24px;

color:#2e7d32;

}

.accordion-content{

display:none;

padding:20px;

border-top:1px solid #eee;

font-size:15px;

line-height:1.8;

color:#555;

background:#fcfcfc;

}

.accordion.active .accordion-content{

display:block;

}

.review-section,
.review-form,
.related-products{

max-width:1200px;

margin:40px auto;

padding:20px;

}

.review-slider{

overflow:hidden;

}

.review-track{

display:flex;

gap:20px;

animation:scrollReviews 25s linear infinite;

width:max-content;

}

.review-card{

min-width:280px;

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

@keyframes scrollReviews{

0%{transform:translateX(0);}

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

}

.review-form form{

display:flex;

flex-direction:column;

gap:15px;

}

.review-form input,
.review-form select,
.review-form textarea{

padding:15px;

border:1px solid #ddd;

border-radius:12px;

}

.review-form button{

background:#1b5e20;

color:#fff;

border:none;

padding:16px;

border-radius:12px;

font-size:17px;

font-weight:bold;

cursor:pointer;

}

.related-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.related-card{

background:#fff;

padding:15px;

border-radius:18px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.related-card img{

width:100%;

border-radius:15px;

}

.related-card h4{

margin:10px 0;

font-size:17px;

}

.related-card p{

color:#1b5e20;

font-weight:bold;

}

.panda-box{

position:fixed;

bottom:20px;

left:20px;

z-index:999;

text-align:center;

}

.panda{

width:110px;

}

.panda-message{

background:#fff;

padding:10px;

border-radius:12px;

margin-bottom:10px;

font-weight:bold;

box-shadow:0 3px 10px rgba(0,0,0,.15);

}

.bubble{

background:#ffeb3b;

padding:8px 12px;

border-radius:20px;

margin-top:8px;

font-size:13px;

font-weight:bold;

animation:blink 1.5s infinite;

}

@keyframes blink{

50%{

opacity:.4;

}

}

.live-order{

position:fixed;

left:20px;

bottom:180px;

background:#fff;

padding:15px;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.15);

z-index:9999;

opacity:0;

transform:translateY(20px);

transition:.5s;

font-size:14px;

}

.live-order.show{

opacity:1;

transform:translateY(0);

}

.scrollTopBtn{

position:fixed;

right:20px;

bottom:180px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#1b8b2c;

color:#fff;

font-size:22px;

display:none;

justify-content:center;

align-items:center;

cursor:pointer;

z-index:9999;

}

button{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

width:20px;

height:20px;

background:rgba(255,255,255,.4);

border-radius:50%;

transform:translate(-50%,-50%);

animation:ripple .6s linear;

}

@keyframes ripple{

from{

width:0;

height:0;

opacity:1;

}

to{

width:300px;

height:300px;

opacity:0;

}

}

.founder-menu{

background:linear-gradient(135deg,#d4af37,#f4d03f);

color:#1f1f1f !important;

padding:10px 18px;

border-radius:50px;

font-weight:700;

transition:.3s;

box-shadow:0 6px 18px rgba(212,175,55,.35);

}

.founder-menu:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(212,175,55,.5);

}