@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/slide_01.jpg") center / cover no-repeat;
    width: 100%;
    height: calc(100vh - 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: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.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: 100%;
    height: auto;
    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);
}

/* About */
.aboutCiwan {
    margin-top: 90px;
    height: auto;
    margin-bottom: 80px;
}

.aboutkor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

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

.about {
    display: flex;
    justify-content: space-between;
}

.aboutLeft {
    width: 540px;
    height: 368.4px;
}

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

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

.aboutLeft ul {
    color: rgb(33, 37, 41);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-left: 18px;
}

.aboutLeft ul li {
    list-style: square;
    margin-bottom: 10px;
}

.aboutLeft ul a {
    color: rgb(74, 74, 74);
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
}

.aboutLeft button {
    color: white;
    background-color: #f33f3f;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
    text-transform: capitalize;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.aboutLeft button:hover {
    background-color: #d32f2f;
}

.aboutRight img {
    width: 540px;
    height: 332px;
}

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

.borderkor {
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.cta-container {
    background-color: rgb(247, 247, 247);
    padding: 30px 30px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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


.cta-content h4 .highlight {
    font-weight: 700;
}

.cta-content p {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin: 0;
}

.btn-purchase {
    background-color: #f33f3f;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
}

.btn-purchase:hover {
    background-color: #d32f2f;
}

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

/* 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;
}

/* rssponsive */



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

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

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

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

    /* HEADER */
    .navigation h2 {
        font-size: 20px;
    }

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

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

    /* ABOUT */
    .about {
        flex-direction: column;
        gap: 40px;
    }

    .aboutLeft,
    .aboutRight img {
        width: 100%;
        height: auto;
    }

    /* CTA */
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .btn-purchase {
        margin-top: 20px;
    }
}

/* 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;
    }

    /* ABOUT SECTION */
    .aboutCiwan {
        height: auto;
    }

    .about {
        flex-direction: column;
        gap: 30px;
    }

    .aboutLeft,
    .aboutRight img {
        width: 100%;
        height: auto;
    }

    .aboutLeft ul {
        margin-left: 0;
        padding-left: 20px;
    }

    /* purchase */
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        margin-top: 20px;
    }

}