*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    List-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    user-select: none;
    }
    .open-sans google-font{
      font-family: "Open Sans", serif;
      font-optical-sizing: auto;
      font-weight: 700;
      font-style: normal;
      font-variation-settings: "wdth" 100;
    }
    :root{
    --bg-color: #ffffff;
    --text-color: #111111;
    --main-color: #c8815f;
    --big-font: 4.5rem;
    --h2-font: 3.3rem;
    --h3-font: 2rem;
    --normal-font: 1rem;
    --secondry-color: #353432;
    }
    /* width */
    ::-webkit-scrollbar {
        width: 10px;
      }

      /* Track */
      ::-webkit-scrollbar-track {
        background: #f1f1f1;
      }

      /* Handle */
      ::-webkit-scrollbar-thumb {
        background: #888;
      }

      /* Handle on hover */
      ::-webkit-scrollbar-thumb:hover {
        background: #555;
      }
      a {
        color: #111111;
        text-decoration: none;
    }

    a:hover {
      color: #111111;
        text-decoration:none;
        cursor:pointer;
    }
    body{
        background: var(--bg-color);
        color: var(--text-color);
    }
    header{
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        padding: 20px 14%;
        transition: all 0.35sec ease;
    }
    header.sticky{
        background: var(--bg-color);
        padding: 14px 14%;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 105);
        transition: all 0.2s ease;
      }
    .logo{
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--text-color);
    }
    .navlist{
      display: flex;
    }
    .navlist a {
      color: var(--text-color);
      font-weight: 600;
      padding: 10px;
      font-size: var(--normal-font);
    }
    .navlist a:hover{
      color: var(--main-color);
    }
    .header-icons i{
      font-size: 32px;
      color: var(--text-color);
      margin-right: 20px;
      transition: all 0.36s ease;
    }
    .header-icons i:hover{
      color: var(--main-color);
    }
    #menu-icon{
      font-size: 34px;
      color: var(--text-color);
      z-index: 10001;
      margin-right: 20px;
      display: none;
    }
    #menu-icon:hover{
      color: var(--main-color);
    }
    section{
      padding: 50px 14%;
    }
    .icon-cart{
        cursor: pointer;
        position: relative;
      }
      header span{
        display: flex;
        width: 25px;
        height: 25px;
        background-color: var(--text-color);
        justify-content: center;
        align-items: center;
        color: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 5px;
      }
      .cartTab{
        width: 400px;
        z-index: 999999;
        background-color: #353432;
        color: #eee;
        position: fixed;
        top: 0;
        right: -400px;
        bottom: 0;
        display: grid;
        grid-template-rows: 70px 1fr 70px;
        transition: 0.5s;
      }
      body.showCart .cartTab{
        top: 0;
        right: 0;
        bottom: 0;
      }
      .cartTab h1{
        padding: 20px;
        margin: 0;
        font-weight: 300;
      }
      .cartTab .btn1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      .cartTab .btn1 button{
        background: var(--main-color);
        border: 0;
        font-family: Poppins;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.5s ease;
      }
      .cartTab .btn1 .checkOut:hover{
        letter-spacing: 1vh;
        background-color: #c2704a;
      }
      .cartTab .btn1 .close{
        background-color: #eee;
      }
      .cartTab .btn1 .close:hover{
        letter-spacing: 1vh;
        background-color: rgb(209, 209, 209);
      }
      .cartTab .listCart .item img{
        width: 100%;
      }
      .cartTab .listCart .item{
        display: grid;
        grid-template-columns: 70px 150px 50px 1fr;
        gap: 10px;
        text-align: center;
        align-items: center;
      }
      .listCart .quantity span{
        display: inline-block;
        width: 25px;
        height: 25px;
        background-color: #eee;
        color: #555;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
      }
      .listCart .quantity span:nth-child(2){
        background-color: transparent;
        color: #eee;
      }
      .listCart .item:nth-child(even){
        background-color: #eee1;
      }
      .listCart{
        overflow: auto;
      }
      .listCart::-webkit-scrollbar{
        width: 0;
      }
      .listProduct .item{
        background-color: #e8dccf;
        padding: 20px;
        border-radius: 20px;
        max-width: 670px;
      }
      .listProduct .item h2{
        font-weight: 500;
        font-size: large;
      }
      .listProduct .item .price{
        letter-spacing: 3px;
        font-size: small;
      }
      .listProduct .item button{
        display: inline-block;
        padding: 13px 25px;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 15px;
        letter-spacing: 1px;
        border-radius: 5px;
        border: none;
        margin-top: 20px;
        transition: all 0.35s ease;
        cursor: pointer;
      }
      .listProduct .item button:hover{
        transform: translateY(-3px);
        background: var(--text-color);
      }
      .search{
        padding: 100px;
      }
.search-wrapper{
    width: 100%;
}
.search input{
    width: 100%;
    border-radius: 7px;
    border: 0.7px sloid black;
    padding: 12px;
}
