@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
}

img {
    width: 100%;
}

.container {
    width: min(90%, 1200px);
    margin-inline: auto;
}

/*Header*/
header {
    width: 100%;
    height: 80px;
    background: #232323;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.navigation span {
    color: #f33f3f;
}

/* icon */
.navigation i {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/*  DESKTOP MENU */
.navList {
    display: flex;
    gap: 30px;
}

.navList li {
    list-style: none;
}

.navList a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

/*MOBILE MENU*/
.navListMobile {
    display: none;
    list-style: none;
    text-align: center;
    background: white;
}


.navListMobile.active {
    display: block;
}

.navListMobile li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.navListMobile li a {
    text-decoration: none;
    font-size: 18px;
    color: #4a4a4a;
}

/* Hero Section */
.hero {
    background: url("https://templatemo.com/templates/templatemo_546_sixteen_clothing/assets/images/products-heading.jpg") center / cover no-repeat;
    width: 100%;
    height: calc(70vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero span {
    font-size: 22px;
    color: rgb(243, 63, 63);
    line-height: 26.4px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 62px;
    line-height: 74.4px;
    letter-spacing: 5px;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
}

/* product section */
.Product {
    margin-top: 90px;
    margin-bottom: 100px;
    height: auto;
}

.productHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
    padding-bottom: 10px;
}

.productHeader p {
    font-size: 13px;
    line-height: 19.5px;
    font-weight: 700;
    margin-right: 10px;
    text-transform: uppercase;
}

.productHeader p span {
    color: rgb(243, 63, 63);
}

.productHeader h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.productHeader a {
    font-size: 13px;
    color: rgb(243, 63, 63);
    line-height: 19.5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.productHeader a i {
    font-size: 10px;
}

/* box */
.productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.box {
    width: 380px;
    height: 384.075px;
    border: 1px solid #eee;
}

.box img {
    width: 100%;
    height: 160px;
}

.xog {
    padding: 30px;
}

.flexTit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.flexTit h4 {
    font-size: 17px;
    line-height: 20.4px;
    font-weight: 500;
    color: rgb(26, 102, 146);
}

.flexTit h6 {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    color: rgb(18, 18, 18);
}

.xog p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    color: rgb(74, 74, 74);
    margin-bottom: 20px;
}

.flexHos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexHos .start {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: rgb(243, 63, 63);
}

.flexHos span {
    font-size: 13px;
    line-height: 19.5px;
    font-weight: 500;
    color: rgb(243, 63, 63);
}


/* purchase */
.all {
    height: auto;
    margin-bottom: 50px;

}

.borderhos {
    border: 1px solid #eee;
    margin-top: 60px;
}


.buttonska {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
}

.buttonska ul {
    display: flex;
    list-style: none;
}

.buttonska li {
    margin: 0 5px;
}

.buttonska li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    color: #121212;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.buttonska li.active a {
    background-color: #f33f3f;
    border-color: #f33f3f;
    color: #fff;
}

/* footer */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 50px;
}

footer p {
    color: #4a4a4a;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

footer p span {
    text-transform: capitalize;
    color: #f33f3f;
}

footer a {
    color: #f33f3f;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #121212;
}

/* TABLET*/
@media (min-width:641px) and (max-width:1024px) {

    /* qari desktop menu */
    .navList {
        display: none;
    }

    /* muuji hamburger icon */
    .navigation i {
        display: block;
    }

    /* dropdown menu */
    .navListMobile {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        z-index: 999;
    }

    /* PRODUCT */
    .productGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .box {
        width: 100%;
        height: auto;
    }

    /* HERO */
    .hero h2 {
        font-size: 42px;
        text-align: center;
    }
}

/* Moblie */
@media(max-width:640px) {

    /* qari desktop menu */
    .navList {
        display: none;
    }

    /* muuji icon */
    .navigation i {
        display: block;
    }

    /* Hero */
    .hero span {
        text-align: center;
    }

    .hero h2 {
        font-size: 32px;
        line-height: 50px;
        text-align: center;
    }

    /* product */
    .Product {
        height: auto;
        margin-bottom: 120px;
    }

    .productGrid {
        grid-template-columns: 1fr;
    }

    .box {
        width: 100%;
    }

    .productHeader {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .productHeader a {
        margin-bottom: 30px;
    }


}