* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.ttf');
}

/* Header styling */
.header {
    height: 70px;
    width: 100%;
    background-color: #BAB86C;
    padding: 0px 10%;
    display: flex;
    justify-content: space-between;
    color: white;
}

/* Logo section */
.logo {                    
    width: 10%;
    height: 70px;
    display: flex;
    justify-content: center;       
    align-items: center;           
}

.logo img {
    width: 190px;                 
    height: auto;
}

/* Navigation section */
.navigation {
    width: 50%;
    height: 70px;


                   
}

.nav-links {
    width: 100%;
    height: 70px;
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
    font-family: 'montserrat';
    font-weight: 1000;
    font-size: 16px;
    

}

.nav-links > .nav-link > a {
    color: white;
    text-decoration: none;
    
}
.nav-links > .nav-link > i {
    font-size: 20px;
}


/* Utilities section */
.utils {
    width: 15%;
    height: 70px;

                  
}

/* banner css */

.banner {
    width: 100%;
    height: 800px;
    background-color: #E6E5CA;

}

.slide {
    width: 100%;
    height: 100%;
    background-color: #E6E5CA;
    background-image: url("images/banner5.png");
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 20%;
    }
    


.slide-details {
    width: 40%; 
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #2C2C2C;
}


.slide-details > h1 {
    font-size: 42px; 
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}


.slide-details > p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #444;
}


.button {
    padding: 10px 15px;
    background-color: #6A6932;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 999px;
    border: 1px solid #000;
}


.button:hover {
    background-color: #9E9B5E;
}

/* featured section css */

.featured {
    width: 100%;
    padding: 10px 0px;
    background-color:  #f5f5f5;
    display: flex;
    justify-content: space-between;

}

.featured-box-1 {
    width: 33%;
    height: 700px;
    /* background-color: #6A6932; */
    position: relative;
    
}
.featured-box-2 {
    width: 33%;
    height: 700px;
    /* background-color: #E6E5CA; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.featured-box-2-box-1{
    width: 100%;
    height: 340px;
    /* background-color: #9E9B5E; */
    position: relative;
}
.featured-box-2-box-2{
    width: 49.5%;
    height: 340px;
    /* background-color: #6A6932; */
    position: relative;

}
.featured-box-2-box-3 {
    width: 49.5%;
    height: 340px;
    /* background-color: #2C2C2C; */
    position: relative;

}

.featured-box-3 {
    width: 33%;
    height: 700px;
    /* background-color: #8A8841; */
    position: relative;

}

.bg-image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.bg-image >img {
    width: 100%;
    transition: .2s;

}
.featured-box-1:hover img, .featured-box-3:hover img {
    transform: scale(1.1);

}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    padding: 5%;
    align-items: flex-end;
    justify-content: center;
   

}

.btn {
    background-color: #fff;
    color: #6A6932;
    border: 1px solid #6A6932;
    z-index: 20;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    
}

.featured-box-1:hover img, 
.featured-box-3:hover img,
.featured-box-2-box-1:hover img, 
.featured-box-2-box-2:hover img, 
.featured-box-2-box-3:hover img{
    transform: scale(1.1);

}

/* section products */

.products {
    width: 100%;
    padding: 30px 20%;
    background-color:#f5f5f5;
    display: flex;
    flex-direction: column;
    row-gap: 20px;

}

.section-title {
    font-family: 'Montserrat';

}

.products-list {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    column-gap: calc(4%/3);
    justify-content: space-between;

}

.product {
    width: 24.5%;
    height: 420px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    font-family:'Montserrat';
    font-size: 15px;
    

}
.product:hover .main-image{
    transform: scale(1.2);
    opacity: 0;


}


.product:hover .effect-image{
    opacity: 1;
    transform: scale(1);

}

.product:hover .overlay-image{
    margin-top: 0px;

}

.product-image {
    height: 370px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-image img{
    width: 100%;

}

.main-image {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .2s;
  
}
.effect-image {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transform: scale(1.2);
    transition: .2s;
 
    /* display: none; */
}
.overlay-image {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10%;
    margin-top: 100px;
    transition: .2s;
    /* display: none; */

}



.product-details {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-family:'Montserrat';
}

/* categories section */
.categories {
    width: 100%;
    padding: 30px 20%;
    background-color: #f5f5f5;
    display: flex;
    justify-content:space-between;

}

.category {
    width: 33%;
}

.cat-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.cat-img > img {
    width: 100%;
    transition: .2s;
}

.category:hover img {
    transform: scale(1.2);

}