.main_hamburger{
    display: none;
}
body{
    margin:0%;
    padding: 0%;
    background-color: #f8b24f;
}
.top{
    position: sticky;
    top: 0;
    z-index: 999;
}
.header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
    background-color: white;
}
.logo p{
    color: black;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Lexend Deca", sans-serif;
}
.desc {
    text-align: end;
    font-weight: 500;
    font-size: 20px;
    font-family: "Lexend Deca", sans-serif;
    color: rgb(110, 112, 112);
    line-height: 40%;
    text-transform: capitalize;
}
.nav{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: black;
    color: aliceblue;
    margin: 0%;
    padding: 0%;
    align-items: center;
}
.home{
    display: flex;
    justify-content: end;
    gap: 10%;
    text-transform: uppercase;
    font-family: "Lexend Deca", sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.home a{
    text-decoration-line: none;
    text-decoration: none;
    color: aliceblue;
}
.home p::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #f8b24f;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.home p:hover::after{
    width: 100%;

}
.icons{
    display: flex;
    justify-content: flex-end;
    gap: 5%;
    font-size: 18px;
    padding-right: 30px;
    margin: 0 10px;
    align-items: center;
}


.search-container {
    position: relative;
    width: 50px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    transition: width 0.4s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    margin-left: auto; 
    gap: 10%;
  }
  .search-container:hover,
  .search-container:focus-within {
    width: 250px;
  }
  .search-input {
    border: none;
    outline: none;
    background-color: #ddd;
    color: black;
    width: 0;
    opacity: 0;
    transition: width 0.4s, opacity 0.4s;
    font-size: 16px;
    margin-right: 10px;
    height: 30px;
    border-radius: 50px;
  }
  .search-container:hover .search-input,
  .search-container:focus-within .search-input {
    width: 100%;
    opacity: 1;
  }
  .search-icon {
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
  }
.main{
    margin: 0 40px;
}
marquee{
    color: #050505;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    height: 10%;
    margin: 0;
}
.intro{
    height: 100%;
    width: 100%;
}
.slider{
    background-color: #050505;
    position: absolute;
    opacity: 0.6;
    height: 80vh;
    width: 100%;
}
.intro img{
    height: 80vh;
    width: 100%;
}
.intro h1{
    position: absolute;
    color: rgb(255, 255, 255);
    width: 60%;
    top:50%;
    left:50%;
    transform: translate(-50%);
    font-size: 200%;
    font-weight: 100;
    text-align: center;
}
.categories_head{
    margin-top: 8%;
}
.owl-carousel{
    border-top: 0.8px black solid;
    padding-top: 3%;
}
.item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.product-title {
    font-weight: bold;
    padding: 10px;
    background: #4a403a;
    color: white;
    text-align: center;
    font-size: larger;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.deals{
    margin-top: 8%;
}
.dealhead{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
.dealsprd{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    margin: 1% 10% 0% 10%;
    border-top: black 1.8px solid;
}
.pr1 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.pr1{
    margin: 2%;
}
.prod-title{
    padding: 10px;
    background: #4a403a;
    color: white;
    text-transform: capitalize;
}   
.prhead{
    font-size: larger;
}
.prdesc{
    color: #cfc6c6;
    font-size: 15px;
    font-family:'Times New Roman', Times, serif;
}
.suggested_items{
    margin-top: 10%;
    border: 0.9px black solid;
}
.suggested_head{
    font-size: 30px;
    font-weight: bold;
    display: flex;   
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px 0px 40px;
   
}
.suggested_head button{
    margin: 1%;
    border-radius: 80%;
    background-color: #050505;
    color: aliceblue;
    border: none;
}
.suggested_head button:hover{
    background-color: aliceblue;
    color: black;
    cursor: pointer;
}
.suggested_head i{
    height: 20px;
    width: 30px;
    font-size: 30px;
}
.suggested_img{
    padding: 0 5% 5% 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 5%;
}
.suggested_img .pr1 img{
    width: 100%;
    height: 500px;
    object-fit: cover;

}

.explore_head p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    margin-top: 8%;
    font-weight: bold;
}


.carousel-container {
    position: relative;
    max-width: 800px;
    margin: auto;
  }

  .carousel {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .carousel-text {
    padding: 1rem;
    text-align: center;
  }

  .carousel-text h2 {
    margin: 0.5rem 0;
  }

  .dots {
    text-align: center;
    margin-top: 1rem;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }

  .dot.active {
    background-color: #333;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .arrow:hover {
    background-color: #e5e7eb;
  }
  .btn-shop {
    background: #5d3a00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }

  .btn-shop:hover {
    background: #4a2f00;
  }




footer{
    margin-top: 10%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    background-color: #050505;
    color: aliceblue;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-content: center;
    height: 400px;
}
.footer2{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-transform: capitalize;
    padding-left: 30px;
}
.footer2 i{
    color: aliceblue;
}
.footer1{
    padding-left: 20px;
    text-transform: capitalize;
}
.footer1 h3{
    text-transform: capitalize;
    font-family: "Tangerine", serif;
    font-size: 28px;
}
.footer1 p, .footer2 p{
    color: rgb(216, 208, 208);
}



@media screen and (min-width:1600px){

    .main{
        margin: 0% 20%;
    }
    .header, .nav, footer{
        padding: 0% 20%;
    }
    
}
@media screen and (max-width: 1100px){
      .footer2{
        grid-template-columns: 1fr 1fr;
      }
      .dealsprd {
        grid-template-columns: repeat(2, 1fr);
    }
    .home a{
        display: none;
    }

    .main_hamburger i{
        padding: 5% 0% 5% 5%;
      }
.main_hamburger *{
    margin: 0;
    padding: 0%;
  }
  .main_hamburger{
    display: block;
  }
  .home1 {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between links */
    text-align: center;
    font-size: 20px;
  }
  .hamburger a {
    text-decoration: none;
    color: inherit;
  }
  .main_hamburger i:hover {
    cursor: pointer;
  }
  .hamburger {
    position: absolute;
    top: 55%;
    left: -100%;
    padding: 0 10%;
    height: 100vh;
    width: 40%;
    background-color: black;
    opacity: 0.94;
    transition: left 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hamburger i {
    position: absolute;
    top: 4%;
    right: 8%;
    border: 0.8px solid white;
    padding: 2%;
    border-radius: 50%;
  }
}
@media screen and (max-width:768px) {
    .logo p{
        font-size: 12px;
    }
    .desc{
        font-size: 11px;
    }
    .main{
        margin: 0px 20px;
    }
    .dealsprd {
        grid-template-columns: 1fr;
    }
    .suggested_img{
        grid-template-columns: 1fr;
        gap: 0%;
    }
}
