/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= NAVBAR ================= */

.navbar{
    background:#d8e8c9;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 40px;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.hamburger{
    font-size:22px;
    cursor:pointer;
}

.logo{
    font-size:26px;
    font-weight:bold;
    color:#2f7d32;
}

/* ===== SEARCH ===== */

.search-box{
    flex:1;
    margin:0 40px;
    position:relative;
}

.search-box input{
    width:100%;
    padding:10px 40px 10px 15px;
    border-radius:25px;
    border:1px solid #ccc;
    outline:none;
}

.search-box i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:gray;
}

/* ===== RIGHT NAV ===== */

.nav-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-right a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.cart{
    position:relative;
    cursor:pointer;
}

.cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:green;
    color:white;
    font-size:12px;
    padding:2px 6px;
    border-radius:50%;
}

/* ================= SIDE MENU ================= */

.side-menu{
    position:fixed;
    left:-260px;
    top:0;
    width:260px;
    height:100%;
    background:#fff;
    box-shadow:2px 0 10px rgba(0,0,0,0.2);
    transition:0.3s;
    padding:20px;
    z-index:2000;
}

.side-menu.active{
    left:0;
}

.side-menu h3{
    margin-bottom:20px;
}

.side-menu ul{
    list-style:none;
}

.side-menu ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    cursor:pointer;
}

/* ================= SLIDER ================= */

.slider{
    width:100%;
    height:600px;
    overflow:hidden;
    position:relative;
}

.slides{
    display:flex;
    transition: transform 0.8s ease-in-out;
}

/* .slides img{
    width:100%;
    height:600px;
    object-fit:cover;
    flex-shrink:0;
} */
.slides img {
    width: 1080px;
    height: auto;
   
    flex-shrink: 0;
}



/* ================= RESPONSIVE ================= */

@media(max-width:900px){
    .search-box{
        display:none;
    }
}


/* ================= 2 ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial;
}

body{
background:#f5f5f5;
}

/* SECTION TITLE */
.section-title{
text-align:center;
margin:40px 0 20px;
}

/* SLIDER WRAPPER */
.slider-wrapper{
position:relative;
overflow:hidden;
width:90%;
margin:auto;
}

.category-slider,
.product-slider{
display:flex;
transition:transform 0.6s ease;
}

/* CATEGORY CARD */
.category-card{
min-width:250px;
margin:10px;
background:white;
border-radius:10px;
overflow:hidden;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.category-card img{
width:100%;
height:180px;
object-fit:cover;
}

.category-card p{
padding:10px;
font-weight:600;
}

/* BRANDS */
/* ================= OUR BRANDS SECTION ================= */

.brands-section{
    background:#dbe7e7;
    padding:50px 0;
    text-align:center;
}

.brand-title{
    font-size:28px;
    font-weight:500;
    margin-bottom:35px;
    color:#222;
}

.brand-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

.brand-logo{
    max-height:90px;
    object-fit:contain;
    transition:0.3s ease;
}

.brand-logo.small{
    max-height:55px;
}

.brand-logo:hover{
    transform:scale(1.08);
}

/* TABS */
.tabs{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:20px;
}

.tab{
padding:8px 15px;
border:none;
border-radius:20px;
background:#ddd;
cursor:pointer;
}

.tab.active{
background:#2f7d32;
color:white;
}

/* PRODUCT CARD */
.product-card{
min-width:260px;
margin:10px;
background:white;
padding:15px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.product-card img{
width:180px;
height:180px;
object-fit:contain;
}

.cart-btn{
margin-top:10px;
padding:8px 12px;
background:#2f7d32;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

/* ARROWS */
.prev,.next{
position:absolute;
top:40%;
background:white;
border:none;
font-size:25px;
cursor:pointer;
padding:5px 10px;
box-shadow:0 2px 5px rgba(0,0,0,0.2);
}

.prev{ left:0; }
.next{ right:0; }



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f5f5f5;
}


/* ================= ABOUT SECTION ================= */

.about-section{
background:linear-gradient(to right,#e8f2ec,#dfe8e3);
padding:80px 8%;
position:relative;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

/* LEFT IMAGES */

.about-images{
position:relative;
width:40%;
}

.bg-box{
width:260px;
height:260px;
background:#f4cfa0;
border-radius:15px;
position:absolute;
top:0;
left:40px;
z-index:1;
}

.about-img{
border-radius:12px;
position:relative;
z-index:2;
}

.main-img{
width:300px;
}

.small-img{
width:220px;
position:absolute;
bottom:-40px;
left:180px;
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


/* RIGHT CONTENT */

.about-content{
width:55%;
}

.about-content h2{
font-size:28px;
margin-bottom:15px;
}

.about-content p{
color:#555;
line-height:1.6;
margin-bottom:30px;
}

.about-icons{
display:flex;
gap:60px;
}

.icon-box{
text-align:center;
}

.icon-box img{
width:50px;
margin-bottom:10px;
}

.icon-box p{
font-weight:600;
color:#333;
}


/* ================= ACHIEVERS SECTION ================= */

.achievers{
padding:70px 8%;
background:#f3f3f3;
text-align:center;
}

.achievers h2{
margin-bottom:40px;
font-size:26px;
}

.achiever-container{
display:flex;
gap:30px;
justify-content:center;
}

.achiever-card{
width:360px;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
background:white;
}

.achiever-card img{
width:100%;
height:220px;
object-fit:cover;
}

.achiever-title{
background:linear-gradient(to right,#3a56a5,#6d3fc7);
color:white;
padding:12px;
font-weight:600;
}


.footer-section{
background:linear-gradient(to right,#2f4c9a,#63b53a);
color:#fff;
padding:50px 7%;
}

.footer-title{
text-align:center;
font-size:28px;
margin-bottom:40px;
position:relative;
}

.footer-container{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:40px;
}

.footer-col h3{
border-bottom:1px dotted #fff;
padding-bottom:8px;
margin-bottom:15px;
font-size:18px;
}

.footer-col ul{
list-style:none;
font-size:14px;
line-height:1.9;
}

.footer-col ul li{
margin-bottom:4px;
}

.map-box{
margin-top:15px;
border-radius:6px;
overflow:hidden;
}

.map-box iframe{
width:100%;
height:140px;
}

.footer-bottom{
display:flex;
justify-content:space-between;
margin-top:50px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,0.3);
}

.follow-member h3,
.mobile-app h3{
border-bottom:1px dotted #fff;
padding-bottom:6px;
margin-bottom:15px;
}

.member-content{
display:flex;
gap:20px;
align-items:center;
max-width:600px;
}

.member-content img{
width:80px;
}

.member-content p{
font-size:14px;
line-height:1.6;
}

.mobile-app img{
width:170px;
margin-top:10px;
}

.copyright{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.3);
font-size:14px;
}
