* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background:inherit;
}
*::-webkit-scrollbar-thumb {
    background-color: #8a8a8a;
    border-radius: 100px;
}
body {
    overflow-x: hidden;
    font-family: "Ubuntu", sans-serif;
    font-family: "Karla", sans-serif;

}
.container {
    width: 90%;
    margin: auto;
    display: flex;
    padding: 70px 0;
}
/* landin */
.landing {
    width: 100%;
    background: url('.//image/background2.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
/* header */
.header {
    width: 100%;
    height: 100px;
    position: relative;
    transition: .3s;
    z-index: 999;
    position: fixed;
}
.header.background {
    background-color:#E8BC0E;
}
.landing .header .container  {
    width: 90%;
    height: 100%;
    margin: auto;
    background-color: inherit;
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;

}
.header .container .logo {
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: -10px;
}
.header .container .logo img {
    width: 90px;
}
.header .container .menu {
    display: none;
}
.header .container .ul {
    display: flex;
    align-items: center;
}
li, a {
    text-decoration: none;
    list-style: none;
}
.header .container .ul li {
    margin-right: 50px;
}
.header .container .ul li a {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}
.search {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.search.background {
    background-color: white;
}
.search input {
    padding: 15px 45px;
    width: 70%;
    background-color: #48653c;
    border: none;
    color: rgba(255, 255, 255, 0.671);
    outline: none;
    transition: .3s;
}
.search input.background {
    background-color: white;
    color: #1e3117;
}
.search .icon {
    display: flex;
    height: 20%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.767);
    transform: translateX(40px);
    border-right: 1px solid rgba(255, 255, 255, 0.733);
    padding: 0 10px;
}
.search .icon.background {
    color: #1e3117;
}
.search .icon-cart {
    position: relative;
    cursor: pointer;
    right: 10px;
}
.search .icon-cart i {
    margin-left: -30px;
    color: white;
    background-color: #1e3117;
    padding: 17px;
    font-size: 15px;
}
.search .icon-cart span {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: red;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 600;
    right: 5px;
    bottom: 5px;
}
/* header */

.landing .container {
    padding: 180px 0 120px 0;
}
.landing .container .informations .title{
    color: white;
    font-family: "Noto Serif Display", serif;
    font-optical-sizing: auto;
    font-size: 77px; 
    margin-bottom: 20px; 
}
.landing .container .informations p {
    width: 80%;
    color: rgba(255, 255, 255, 0.74);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    margin-bottom: 30px; 
}
.landing .container .informations .button {
    padding: 10px 30px;
    background-color: white;
    border: none;
}
.landing .container .informations .button a {
    color: rgb(7, 31, 7);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
@media (max-width: 600px) {
    .landing {
        background: url('.//image/mobile-background.png');
        background-size: cover;
    }
    .landing .header {
        height: 80px;
        padding: 30px 0;
    }
    .landing .header .container .ul  {
        display: none;
    }
    .landing .header .container .logo img {
        width: 70px;
    }
    .landing .header .container .menu {
        display: flex;
        overflow-x: hidden;
    }
    .landing .header .container .menu .menu-icon {
        width: 40px;
        
    }
    .landing .header .container .menu .menu-icon div {
        width: 100%;
        height: 1px;
        background-color: white;
        margin-bottom: 7px;
    }
    .landing .header .container  .menu .mobile-ul {
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        background: url('.//image/mobile-menu-background.png');
        background-size: cover;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transform: translateX(100%);
        transition: .7s;
        position: absolute;
    }
    .landing .header .container .menu .mobile-ul.open {
        transform: translateX(0);
    }
    .x i {
        color: white;
        font-size: 25px;
        padding: 0 40px 40px 0;
    }
    .landing .header .container  .menu .mobile-ul li {
        background-color: #87b97448;
        padding: 10px;
        margin-bottom: 15px;
    }
    .landing .header .container  .menu .mobile-ul li a {
        color: white;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 22px;
        font-weight: 600;
    }
    .landing .header .container .search {
        width: 200px;
        display: flex;
        justify-content: end;
        margin-bottom: 10px;
    }
    .search .icon-cart i {
        background-color: transparent;
        margin: 0;
    }
    .landing .header .container .search input,
    .search .icon {
        display: none;
    }
    .landing .container .informations {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .landing .container .informations .title {
        font-size: 40px;
        text-align: center;
    }
    .landing .container .informations p {
        text-align: center;
        width: 100%;
    }
    .landing .container .informations .button {
        margin: auto;
    }
}
/* landin */


/* features */
.features {
    background-color: #1e3117;
    width: 100%;
}
.features .container {
    width: 90%;
    flex-direction: column;
    padding: 70px 0;
}
.features .container .row {
    display: flex;
    justify-content: space-between;
}
.features .container .row .feat {
    display: flex;
    padding: 20px 0;
}


.features .container .row .feat .icon {
    width: 60px;
    margin-right: 45px;
}
.features .container .row .feat .icon path {
    fill: transparent;
}
.features .container .row .feat .icon.animate path {
    fill: transparent;
    stroke-width: 10;
    stroke: #88b974;
    stroke-dasharray: 9500;
    stroke-dashoffset: 9500;
    animation: loading-animation 2s linear forwards ;
}
@keyframes loading-animation{
    0% {
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dashoffset: 9500;
    }
    80% {
        stroke-dashoffset: 19000;
        fill: transparent;
    }
    100% {
        stroke-dashoffset: 19000;
        fill: #88b974;
    }
}

.features .container .row .feat .feat-text .feat-title {
    color: white;
    margin-bottom: 7px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-size: 21px;
    transform: translateX(-50px);
    opacity: 0;
    transition: 1s;
}
.features .container .row .feat .feat-text .feat-title.animate {
    transform: translateX(0);
    opacity: 1;
}
.features .container .row .feat .feat-text .feat-info {
    color: rgba(255, 255, 255, 0.637);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transform: translateX(-100px);
    opacity: 0;
    transition: 1s;
}
.features .container .row .feat .feat-text .feat-info.animate {
    transform: translateX(0);
    opacity: 1;
}


@media (max-width: 600px) {
    .features .container .row {
        flex-direction: column;
    }  
    .features .container .row .feat {
        flex-direction: column;
        align-items: center;
    }
    .features .container .row .feat .icon {
        margin: 0 0 20px 0;
    }
    .features .container .row .feat .feat-text {
        text-align: center;
    }
}
/* features */


/* roduct */
.products {
    padding-bottom: 100px;
}
.item .totalPrice {
    margin-left: 20px;
}
.item .stars {
    color: #E8BC0E;
}

/* product */


/* side cart tab */
.cartTab {
    width: 430px;
    background-color: white;
    color: #1e3117;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    inset: 0 -430px 0 auto;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.116);
    transition: .7s ease-in-out;
    overflow-y: scroll;
}
.cartTab h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab .btn button {
    background-color: #E8BC0E;
    cursor: pointer;
    border: none;
    font-weight: 500;
    color: white;
}
.cartTab a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #E8BC0E;
}
.cartTab .btn .close {
    background-color: #1e3117;
}
.cartTab.open {
    inset: 0 0 0 auto;
}
.cartTab.closeTap{
    inset: 0 100% 0 auto;
}

.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 60px 1fr;
    gap: 10px;
    align-items: center;
}
.listCart .item img{
    width: 100%;
}
.product-count {
    display: flex;
    align-items: center;
    width: 110px;
    padding: 5px;
    justify-content: space-between;
}
.plus, .minus {
    width: 25px;
    height: 25px;
    font-size: 15px;
    font-weight: bold;
    background-color: #1e3117;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}
.count {
    margin: 0 10px;
    font-size: 20px;
    /* margin-bottom: 10px; */
}

/* side cart tab */


/* footer */
.footer {
    background-color:#1e3117;
    position: relative;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.footer .container {
    padding-top: 422px;
    padding-bottom: 50px;
    justify-content: space-between;
    flex-direction: column;
}
.footer .container::before  {
    content: '';
    position: absolute;
    width: 90%;
    border-top: 1px solid rgba(255, 255, 255, 0.253);
    top: 190px;
}
.footer .container .contact-us {
    width: 70%;
    padding: 30px;
    display: flex;
    background-color:#48653c;
    margin: auto;
    margin-top: -570px;    
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
}
.footer .container .contact-us.animation {
    opacity: 1;
    transform: translateY(0);
}
.footer .container .contact-us form {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #1e3117;
}
.footer .container .contact-us form input, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    background-color: #48653c;
    border: none;
    color: white;
    color: rgba(255, 255, 255, 0.459);
    outline: none;
}
.footer .container .contact-us form button {
    width: 50%;
    padding: 5px;
    border: none;
    border-radius: 0;
    background-color: #48653c;
    color: white;
}

.footer .container .contact-us .contact-us-text {
    padding: 50px;
    width: 50%;
}
.footer .container .contact-us .contact-us-text h3 {
    font-size: 13px;
    color: white;
    font-weight: 200;
}
.footer .container .contact-us .contact-us-text span {
    font-size: 50px;
    color: white;
    font-weight: 300;
}
.footer .container .contact-us .contact-us-text p {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.459);
    line-height: 3.2ch;
}
.footer .right-left {
    display: flex;
    justify-content: space-between;
}
.footer .right {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.footer .right .title {
    font-size: 80px;
    color: white;
    font-weight: 200;
}
.footer .right .social-icons {
    color: white;
    margin-top: 30px;
}
.footer .right .social-icons i {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border: 1px solid #48653c;;
    padding: 9px;
    font-size: 14px;
    border-radius: 50%;
}
.footer .right .social-icons i:not(:first-child) {
    border: 1px solid rgba(255, 255, 255, 0.253);
}
.footer .right .all-right {
    margin-top: 50px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.37);
    display: flex;
    align-items: center;
}
.footer .right .all-right span {
    font-size: 20px;
    color:#E8BC0E;
    margin-left: 5px;
}
.footer .container .left {
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: rgba(255, 255, 255, 0.37);
    font-size: 14px;
}
.footer .container .left span {
    margin-bottom: 10px;
}
.footer .container .left span:last-child {
    margin-top: 100px;
}
@media (max-width: 600px) {
    .footer .container .contact-us {
        width: 100%;
        flex-direction: column;
        padding: 15px;
    }
    .footer .right .title {
        margin-top: 30px;
    }
    .footer .container .contact-us form,
    .footer .container .contact-us .contact-us-text {
        width: 100%;
    }
    .footer .container .contact-us .contact-us-text {
        padding: 20px;
    }
    .footer .container .contact-us .contact-us-text span {
        font-size: 37px;
    }
    .footer .right-left {
        flex-direction: column;
    }
    .footer .right {
        width: 100%;
    }
    .footer .container .left span:last-child {
        margin-top: 57px;
    }
    .footer .container .contact-us {
        scale: 0;
    }
    .footer .container .contact-us.animation2 {
        scale: 1;
    }
}
/* footer */






.icon-cart span{
    position: absolute;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
}
.listProduct .item img{
    width: 80%;
}
.listProduct{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.listProduct .item{
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    scale: 0;
    transition: 1s;
}
.listProduct .item.animate {
    scale: 1;
}
.listProduct .item img {
    cursor: pointer;
}
.listProduct .item h2,
.listProduct .item h1 {
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    font-family: "Karla", sans-serif;
    opacity: .6;
}
.listProduct .item h1 {
    opacity: 1;
    font-weight: 300;
    font-size: 14px;
    margin-top: 3px;
    margin-bottom: 8px;
}
.listProduct .item .price{
    font-family: "Karla", sans-serif;
    opacity: .8;
}
.listProduct .item button{
    width: 100px;
    background-color: #353432;
    color: #eee;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
}

/* cart */





/* product pae */
.product-details{
    display: flex;
    flex-direction: row;
}
.img-container{
    margin-left: -50px;
}
.img-container img {
    width: 550px;
}
.details-container {
    margin-top: 100px;
}
.details-container .product-name {
    margin-bottom: 10px;
    opacity: .5;
    font-size: 20px;
}
.details-container .price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}
.details-container .stars {
    color: #E8BC0E;
    font-size: 25px;
}
.details-container button {
    width: 150px;
    font-size: 15px;
    background-color: #353432;
    color: #eee;
    border: none;
    padding: 10px 20px;
    margin-top: 28px;
    cursor: pointer;
}
/* product pae */


@media  (max-width: 600px) {
    .listProduct {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .listProduct .item img {
        width: 100%;
    }
    .listProduct .item {
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .listProduct .item img,
    .cartTab .btn button,
    .listProduct .item button,
    .search .icon-cart ,
    .details-container button {
        cursor:auto;
    }
    .details-container {
        margin-top: 30px;
    }
    .product-details {
        flex-direction: column;
    }
    .img-container img {
        width: 305px;
    }
    .img-container {
        margin: 0;
    }
    .landing .landing-container {
        padding: 150px 0;
    }
    .listCart {
        margin: 10px auto 10px auto;
    }
    .listCart .item {
        grid-template-columns: 55px 90px 60px 1fr;
    }
    .count {
        margin: 0 6px;
    }
    .cartTab h1 {
        padding: 20px 30px;
    }
    .product-count {
        width: 100px;
        padding: 0 5px;
        justify-content: space-between;
        align-items: center;
    }
    .listCart .item {
        margin-bottom: 10px;
    }
    .cartTab {
        width: 100%;
    }
}