*{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
  }
 .wrapper{ 
    position: relative;
    display: flex;
    flex-direction: column;
    /* background-color:rgba(240, 220, 192, 1); */
    background-color: rgb(246, 227, 205);
    /* width: 1400px;
    height: auto;
    margin: auto;
    padding: 0px; */
    
}
/* general shared classes styling */
.body-heading{
    font-size: 50px;  
    font-family: "Kaushan Script", serif;
    font-weight: 600;
    font-style: normal; 
    color: rgb(44, 22, 8);
    margin: 0px;
    padding-bottom: 10px;
    text-align: center;
    padding: 20px;
}
/* the scrolling effect */
#progress {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 50px;
    width: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: conic-gradient(rgb(3, 204, 101) 0%, rgb(215, 215, 215) 0%);
    cursor: pointer;
    z-index: 5000;
  }
  #progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    place-items: center;
    font-size: 28px;
    color:rgba(0, 146, 69, 0.8);
    text-align: center;
    justify-content: center;
    justify-items: center;
  }

/* the hover shining effect when images are hovered */
.shine {
    position: relative;
    overflow: hidden;
}
.shine::after{
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: -75%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    transform: skew(22deg);
    transition: all 0.5s ease;
}
.shine:hover::after{
    animation: light 1.5s forwards;
}
@keyframes light{
    0%{
        left: -75%;
    }
    100%{
        left: 175%;
    }
}
.shine img {
    transition: transform 0.5s ease, filter 0.5s ease;
}
.shine:hover img{
    transform: scale(1.05);
    filter: brightness(1.2);
}
/* btn */
.main-btn{
    background-color: rgb(0, 146, 69, 1);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    margin: 5px;
    

}
.main-btn:hover{
    box-shadow: 2px 2px 5px rgba(27, 0, 0, 0.639);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
    transition: 0.5s ease;
}
/* pop up notification */
.overlayment{
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 6000;
    background-color: rgba(0, 0, 0, 0.604);
    display: none;
}
.popup-container{
    position: absolute;
    top: 300px;
    width: 100%;
    height: 280px;
    z-index: 9000;
    display: flex;
    justify-content: center;
    
}
.popup{
    background-color: rgb(238, 227, 212);
    text-align: center;
    max-width:600px;
    width: 100%;
    height: 380px;
    display: none;

}
#popup_close{
    font-size: 25px;
    font-weight: bolder;
    padding: 15px;
    color: rgb(27, 0, 0);
    text-align: right;
}
.popup-content{
display: flex;
}
.popup-text{
    flex-direction: column;
    text-align: left;
   margin-top: 55px;

}
.popup-text h1{
    text-align: left;
    font-size: 40px;
    padding-bottom: 10px;

}
.popup-text p{
    text-align: left;
    font-size: 17.5px;
    margin-left: 20px;
}
.popup-text .main-btn{
    position: absolute;
    top: 253px;
    margin-left: 20px;
    
}

@media (max-width: 400px) {
    .popup {
      transform: scale(0.8);
      width: 150px;
    }
    .popup-text .main-btn{
        position: absolute;
        top: 363px;
        margin-left: 20px;
        
    }
      #popup_close{
        margin-right: 1000px;
    }
  }
/* closes pop up notification */

/* begin nav  */
.nav_shipping{
    background-color: rgba(0, 146, 69, 1);
    color: rgba(66, 33, 11, 1);
    font-weight: 600;
     display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    overflow: hidden;
 }
 .nav_shipping_text {
    width: 1000px;
    white-space: nowrap; 
    display: inline-block; 
    animation: my-animation 15s linear infinite;
    will-change: transform; 
    transform: translateX(100%);
}

@keyframes my-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* navigation main section*/
.nav{
background-color:rgba(240, 220, 192, 1) ;
display: flex;
flex-direction: column;
align-items: center;
color:rgba(66, 33, 11, 1);

}

.nav .logo img{
    width: 200px;
    height: auto;
    padding: 0px 20px;
    display: flex;
   
}
.nav .logo{
flex-grow: 1;
}
.nav li{
    list-style: none;

}

.nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px;
    align-items: flex-start;
}

.nav ul li a{
    text-decoration: none;
    color: rgba(66, 33, 11, 1);
    font-size: 20px;

}
.nav ul li a:hover{
    color: rgba(0, 146, 69, 1);
    transition: 0.3s;
    

}
.nav li.links{
    width: 100%;
    text-align: left;
    padding: 10px;
    font-weight: bold;

}
.nav li.links :hover{
    color: rgba(0, 146, 69, 1);
    border-bottom: solid 1px rgba(0, 146, 69, 1);
    transition: 0.3s;

}
.nav ul li a.active{
 color: rgba(0, 146, 69, 1);
}

#iconOpen, #iconClose {
    padding: 20px;

}
#iconLogIn, #iconCart{
      display: none;

    
   }
/* nav ends */
.hide{
    display: none;
}

@media screen and (min-width: 900px){
    /* Nav for desktop */
       #iconOpen, #iconClose {
        display: none;
           }
           .nav li.links{
            width: auto;
            display: block;

           }
           .nav ul{
            flex-wrap: nowrap;
            justify-content: flex-end;
            align-items: center;
            
           }
           .nav ul li a{
            font-size: 1.2vw;
        }
            li.logo{
            padding: 10px;
            
           } 
          
           .nav li.links.loginCartLinks{
            display: none;
           }
           #iconLogIn, #iconCart{
            padding: 30px;
            color: rgba(66, 33, 11, 1);
            display: block;
          
            
           }
     /* End nav desktop */
}
/* begin countdown time properties */
#timer{
    max-width: 100%;
    background-color: rgba(0, 146, 69, 1);
    padding: 8px;
    text-align: center;
    font-size: 20px;
    color: rgba(44, 22, 8, 1);
    font-weight: 600;
}
#timer p{
    font-size: 40px;  
    font-family: "Kaushan Script", serif;
    font-weight: 600;
    font-style: normal; 
    color: rgb(44, 22, 8);
    margin: 0px;
    padding-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   
}

/* timer end */

/* hero sliders begin */
.slider{
    width: 1400px;
    max-width: 100vw;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
    
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.slider .list img{
    width: 1400px;
    max-width: 100vw;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    
}
.slide-1{
    background: url(images/heroslider1.png);
    background-size: cover;
    background-position: 39%;
}
.slide-2{
    background: url(images/heroslider4.png);
    background-size: cover;
    background-position: 35%;
}
.slide-3{
    background: url(images/heroslider3.png);
    background-size: cover;
    background-position: 25%;
}
.slide-4{
    background: url(images/heroslider2.png);
    background-size: cover;
    background-position: 39%;
}
.slider .list .item{
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100%;
   width: 100vw;
   position: relative;
   z-index: 1000;
}
.slide-content {
   max-width: 100%;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    width: 600px;
    height: 350px;
    z-index: 2000;
     
}
/* changes the color to brown */
.slide_brown_content{
    color: rgb(44, 22, 8);
}

.slide-content h2 {
    font-size: 40px;
    margin: 0;
    font-family: "Kaushan Script", serif;
    font-weight: 600;
    font-style: normal; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    z-index: 1000; 
    text-align: left;
}

.slide-content p {
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.5;
    width: 500px;
    height: auto;
    z-index: 1000;
    text-align: left;
    padding-bottom: 20px;
}

.hero_btn{
    background-color: rgb(0, 146, 69, 1);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    z-index: 2000;
    align-self: flex-start;
    margin-right: 420px;
  
}
.main-btn:hover{
    box-shadow: 5px 5px 15px rgba(27, 0, 0, 0.639);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
}
/* changes it to white btn */
.hero_btn_white{
    background-color: rgba(240, 220, 192, 1);
    color:rgba(27, 0, 0, 0.639);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    z-index: 2000;
    margin-right: 420px;
}
.hero_btn_white:hover{
    box-shadow: 5px 5px 15px rgba(27, 0, 0, 0.639);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    z-index: 5000
}
#prev, #next{
    cursor: pointer;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.333);
    color: rgb(255, 255, 255);
    border: none;
    font-family: monospace;
    font-weight: bold;
    z-index: 5000
}

.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: rgb(255, 255, 255);
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 5000
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 5000
}
.slider .dots li.active{
    width: 30px;
    z-index: 5000
}
/* code for mobile view for slider */
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
    .slide-content h2{
        text-align: center;
        font-size: 40px;
        padding: 50px;
    }
    .slider .list .item img {
     object-fit: fill;
    }
    .slide-content p {
        display: none;
    }
    .hero_btn, .hero_btn_white{
        margin: 0px;
    }


}
@media screen and (max-width: 450px){
    .slide-content h2{
        font-size: 8vw;
        padding-bottom: 25px;
    }
}
/* hero sliders end */
/* Home page Collection Page */
.collection-card-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
  
}
.collection-card-1{
    position: relative;margin: 20px;
    width: 300px;
    height: auto;
}
.collection-card-1 img{
    width: 100%;
    height: auto;
    display: block;
    
}

.collection-card-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.095);
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
   

}
.collection-card-text-overlay a{
    font-size: 20px;
    padding: 8px 15px;
    background-color:  rgb(36, 18, 6);
    color: rgb(215, 215, 215);
    z-index: 100;
    border-radius: 2px;
    font-weight: bold;
    margin: 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.collection-card-text-overlay a:hover{
    transform: scale(1);
    filter: brightness(0.5);
    
}
@media screen and (min-width: 900px){
    .collection-card-group{
     display: flex;
     flex-direction: row;
    
    }
}

/* owl carousel */
@media screen and (max-width: 980px){
    .owl-carousel-section {
        display: none !important;
    }
}


.owl-carousel-section{
   max-width: 1300px;
   margin: 0 auto;
   text-align: center;
   height: auto;
}
.owl-carousel .owl-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: -40px; 
}
.product-box img{
    max-width: 300px;
    margin-bottom: 10px;

}
.owl-carousel .owl-item img{
    display: block;
    width: 0%;
}

.owl-item{
    display: flex;
    justify-content: center;
    margin: 0px -60px;
    align-items: center;
    /* resize the cards */

}
.owl-nav{
    position: relative;
}
.owl-nav .fa-chevron-right{
    position: absolute;
    right: -15px;
    bottom: 150px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 146, 69, 0.8);
    color: rgb(36, 18, 6);
    border: none;  
}
.fa-chevron-right::before{
    position: absolute;
    top: 10px;
    right: 13px;
}
.owl-nav .fa-chevron-left{
    position: absolute;
    left: -50px;
    bottom: 140px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 146, 69, 0.8);
    color: rgb(36, 18, 6);
    border: none;
       
}
.fa-chevron-left::before{
    position: absolute;
    top: 10px;
    left: 13px;
}

.product-box {
     height: auto;
    box-shadow: 2px rgb(52, 135, 91) 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto; 
    margin-bottom: 30px;
}

/* responsive positioning */
@media screen and (max-width: 990px){
    
.owl-nav .fa-chevron-right{
    position: absolute;
    right: 45px;
    bottom: 140px;
    background-color: rgb(0, 146, 68);
   
}

.owl-nav .fa-chevron-left{
    position: absolute;
    left: 35px;
    bottom: 140px;
    background-color: rgb(0, 146, 68);
    
     
}

}


/* ends owl-carasoul */

/* Bckgrnd cover IMG section*/
.bckgrndcvrsection{
    background-color: rgba(66, 33, 11, 1);
    background-image: url(images/bckcover\ lighter.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100%;
}
/*  why shop section  */
.why-section{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.why-cards{
    padding: 15px;
    text-align: center;
    width: 450px;  
    height:auto; 
    
}
.why-cards p{
    padding: 5px 19px ;
}
@media screen and (min-width: 900px){
    .why-section-cards{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
    }
}
/* closes  why shop section  */

/* end of summer sale div section  */
.summer-sale-div-section{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    margin: 10px;

}

.summer-sale-div-section img{
    width: 100%;
    max-width: 400px;
    height: auto;
    
}

.summer-sale-div-section .sale-div {
    margin-top: -30px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    
    
}
.summer-sale-div-section .sale-div p{
    text-align: center;
}
.sale-div-btn{
    background-color: rgb(0, 146, 69, 1);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    width: 133px;
    margin: 20px;
    
    
}
.sale-div-btn:hover{
        box-shadow: 2px 2px 5px rgba(27, 0, 0, 0.639);
        background-color: rgba(255, 255, 255);
        color: rgb(0, 146, 69, 1);
        transition: 0.5s ease;
    }

/* desktop */
@media screen and (min-width: 900px){
    .summer-sale-div-section {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        
    }
    .summer-sale-div-section img{
        width: 100%;
        max-width: 700px;
        height: auto;
        align-items: flex-start;
    }
    .summer-sale-div-section .sale-div {
   
        align-items: normal;
               
    }
    .summer-sale-div-section .sale-div p{
        text-align: left;
    }
    .summer-sale-div-section .sale-div .sale-div-btn{
        text-align: left;
}
}
/* closesend of summer sale div section  */

/* More to discover section  */
.discover-cards-section{
    margin: 20px;
}
.discover-cards{
    padding: 10px;
    text-align: center;
    width: 450px; 
    height:auto; 
}
.discover-cards h3{
    margin-top: 5px;
    text-align: center;
}
.discover-cards a{
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    color: rgb(44, 22, 8);
}
.discover-cards a:hover{
    color: rgba(0, 146, 69, 1);
    padding: 20px;
}
/*more to discover section mobile */
@media screen and (min-width: 900px){
           .discover-cards-section{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
           }
           .discover-cards img{
            gap: 8px;
           }
}
/* closes More to discover section  */

/* footer */
.footer{
    background-color: rgba(240, 220, 192, 1);
    display: flex;
    flex-direction: column;
    color:rgba(66, 33, 11, 1);
}
.footer .logoBtn img{
    margin-top: 10px;
    max-width: 200px;
    height: auto;
    padding: 0px 20px;
    display: flex;
    
}
.footer .logoSection p{
    width: 450px;  /* Set the fixed width */
    height:auto; 
}
.footer li{
    list-style: none;

}

.footer ul{
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 0px 1px 30px;
    align-items: flex-start;
}

.footer ul li a{
    text-decoration: none;
    color: rgba(66, 33, 11, 1);
    font-size: 20px;

}
.footer ul li a:hover{
    color: rgba(0, 146, 69, 1);
    transition: 0.3s;
    
}
.footer p{
    padding: 20px 25px 10px 30px;
    color: rgb(36, 18, 6);
}
.footer h3{
    padding: 23px;
  }

.footer li.linked{
    width: 100%;
    text-align: left;
    padding: 8px;
    font-weight: bold;

}

.footer li.linked :hover{
    color: rgba(0, 146, 69, 1);
    border-bottom: solid 1px rgba(0, 146, 69, 1);
    transition: 0.3s;

}
.footer #iconPlus{
    padding-left: 20px;
  
}

/* Email input section */
.footer .emailBox  p{
    display: none;
}
.footer .emailBox{
    padding: 20px 25px 10px 30px;
    
}
.footer .emailBox h3{
    display: flex;
    align-items: flex-start;
    padding: 0px 0px 10px 3px;
}
.email-input {
    display: flex;
    align-items: flex-start;
    border: 2px solid  rgba(0, 146, 69, 0.8); 
    border-radius: 4px;
    max-width: 300px;
    padding: 8px;
    
}

.footer .emailBox .fa-regular{
    color: rgba(0, 146, 69, 0.8); 
    font-size: 28px;
    }

input[type="email"] {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: rgba(66, 33, 11, 1); 
    background-color: rgba(240, 220, 192, 1);
}
input[type="text"]{
    color: rgba(66, 33, 11, 1); 
    background-color: rgba(240, 220, 192, 1);
    font-size: 16px;
    border: none;
    outline: none;
    opacity: 1;
    padding: 3px 0px 0px 3px;
    width: 100%;
}
.footer .email-input .email-submit-btn{
background-color: rgb(0, 146, 69, 1); 
    z-index: 1000;
    color: rgb(36, 18, 6);
    padding: 5px 10px 5px 10px ;
    font-weight: bold;
}
.email-submit-btn:hover{
    box-shadow: 2px 2px 3px rgba(27, 0, 0, 0.639);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
    cursor: pointer;
}
.footer .emailBox .Socialslinked {
    padding: 3px 0px 0px 0px;  
}
.footer .emailBox .Socialslinked a{
    color: rgb(0, 146, 68);
    font-size: 28px;
    padding: 5px;  
}
.footerBtm{
    background-color: rgba(240, 220, 192, 1);
    display: flex;
    flex-direction: column;
    color:rgba(66, 33, 11, 1);
}
.footerBtm hr{
   border: solid 1px rgba(0, 146, 69, 0.8);
   margin-top: 8px;
}
.footerBtm .payment{
    align-items: flex-start;
    padding: 20px 25px 10px 30px;
}
.footerBtm .payment .fa-brands{
    color: rgb(52, 135, 91); 
    font-size: 22px;
    display: inline-block;
    align-items: center;
    text-align: center;

}
.footerBtm #copyright{
    color: rgb(52, 135, 91);
    font-size: 15px;
    padding-left: 25px;
    padding-bottom: 10px;
    font-weight: 600;
    
}
/* footer mobile ends */
@media screen and (min-width: 900px){
    /* footer for desktop */
       .footer{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
                
         }
         #iconPlus, #iconMinus {
            display: none;
               }
        .footer .linked {
            width: auto;
            display: block;
            
        }
        .footer li.linked{
            padding: 5px;
        }
        .footer .logoSection p{
            /* width: 400px; */
            height:auto; 
            width: 100%;
        }
        
        .footer .emailBox p{
            display: block;
            padding: 0px 8px 10px 3px;
            width: 100%; 
            height:auto; 
        }
       
       .footer .footerSection{
            width: 33.33%;
            padding-top: 30px;
        }
        .footer .emailBox{
            padding-top: 50px;
        }
        .footer .footerSection .signup-form{
            padding: 5px;
        }
        .footer .emailBox .fa-brands{
            font-size: 35px;
            }
        .footerBtm #copyright{
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            flex-wrap: wrap;
            padding: 10px;
        }

    }
     /* End Footer mobile */
    
     