:root {
    --syamBlue: #15acffc4;
    --titleBlue: #006dda;
    --textWhite: #ffffff;
    --sizeTextH1: 1.8rem;
    --sizeTextH2: 1.4rem;
    --sizeTextH3: 1.2rem;
    --sizeTextH4: 1rem;
    --sizeTextH5: .8rem;
}

.containerHome {
    width: 100%;
}

/* Header */
.containerHeaderHome {
    background-image: url("/custom/img/header-2.jpg");
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 90vh;
}

.titleHeaderHome {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
    padding: 0 0.5rem;
}

.titleHome {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    text-align: center;
}

.discHome {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--textWhite);
}

.buttonHeaderHome {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btnShopHome {
    border: 1px solid #fff;
    background: var(--syamBlue);
    color: #000;
    padding: 0.4rem 2rem;
    font-weight: 600;
}

.btnMoreHome {
    border: 0.5px solid #fff;
    padding: 0.4rem 2rem;
    font-weight: 600;
    background: transparent;
    color: #fff;
}

.btnShopHome:hover {
    cursor: pointer;
    background: #000;
    color: #fff;
    transition: all ease-in-out 0.3s;
    border-radius: 0.6rem;
}

.btnMoreHome:hover {
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: all ease-in-out 0.3s;
    border-radius: 0.6rem;
}

/* Sponsor */
.containerSlideHome {
    padding: 0 1rem;
}


.contentSlideHome {
    padding: 0 2rem !important;
    width: 100%;
}


.imgSponsor {
    max-width: 13rem !important;
    height: 3.5rem !important;
    margin: 1rem .6rem 0 !important;
    padding: .2rem;
}

/* Body Category */

.containerCategoryHome{
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.contentCategoryHome{
    text-align: center;
    padding: 1rem 0;
    border-radius: 1rem;
    border: 1px solid #000;
}

.contentCategoryHome:hover{
    background-color: var(--syamBlue);
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.nameCategory{
    font-size: var(--sizeTextH3);
    font-weight: 900;
}

/* Product */
.containerProductHome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contentProductHome {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.cardProductHome:hover {
    cursor: pointer;
    box-shadow: 1px 1px 1px 1px #000;
    transition: all ease-in-out .3s;
}

.cardProductHome {
    border: 1px solid #f3f3f3;
}

.imgProdHome {
    height: 16.5rem;
    width: 100%;
    object-fit: cover;
}

.infoProdHome {
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
    border: 1px solid #d1d0d0;
}

.nameProdHome {
    text-align: center;
    font-weight: 900;
}

.qtyProdHome {
    font-size: 0.8rem;
    margin-top: 0.8rem;
}

.qtyProdHome::before {
    content: "Stock :";
    margin-right: 0.5rem;
}

.priceProdHome {
    font-size: 0.8rem;
}

.priceProdHome::before {
    content: "Price :";
    margin-right: 0.5rem;
}

.btnDetailProdHome {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid #000;
    padding: 0.2rem 0;
    color: #000;
    background: #fff;
    border: 1px solid #000;
}

.btnDetailProdHome:hover {
    color: #fff;
    background: #000;
}

/* SectionDisc */
.containerDiscHome {
    padding: 1.3rem;
    background-color: #fff;
}

.contentDiscHome {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.leftContentDiscHome {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgDiscHome {
    max-width: 90%;
}

.rightContentDiscHome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.titleDiscHome {
    font-size: var(--sizeTextH1);
}

.subTitleDiscHome {
    font-size: var(--sizeTextH3);
}

.descDiscHome {
    font-size: var(--sizeTextH5);
}

.codeDiscHome {
    text-align: center;
    font-size: var(--sizeTextH5);
    font-weight: 900;
}

.btnDiscDiscShopHome {
    border: 1px solid #000;
    background-color: #fff;
    padding: .2rem 2rem;
}

.btnDiscDiscShopHome:hover {
    border: 1px solid #fff;
    background-color: var(--syamBlue);
}


/* SectionInfo */
.containerInfoHome {
    background: var(--syamBlue);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1.5rem;
    justify-content: space-evenly;
    align-items: start;
}

.contentInfoHome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
    max-width: 15rem;
}

.contentInfoHome:hover {
    cursor: pointer;
    scale: 1.1;
    transition: all 2s;
}

.iconInfoHome {
    font-size: 3rem;
    font-weight: 300;
    color: #191919;
}



/* Media Query */
@media screen and (min-width: 425px) {

    /* Header */
    .titleHeaderHome {
        justify-content: center;
        align-items: start;
        padding-left: 2.3rem;
    }

    .titleHome {
        text-align: left;
        width: 18rem;
    }

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

    /* Hero Section */
    .titleHeroHome {
        font-size: 1.1rem;
    }

    .subTitleHeroHome {
        font-size: 1.4rem;
    }

    .descHeroHome {
        font-size: 0.9rem;
        max-width: 15rem;
    }

    .codeHeroHome {
        font-size: 1rem;
        font-weight: 600;
    }
}

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

    /* Header */
    .titleHeaderHome {
        padding-left: 3rem;
    }

    /* Product */
    .contentProductHome {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Hero Section */
    .contentHeroDiscHome {
        align-items: end;
        gap: 1.3rem;
        padding: 1rem 2.5rem;
    }

    .descHeroHome {
        max-width: 30rem;
    }
}

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

    /* Body Category */
    .titleHeaderHome {
        padding-left: 2.5rem;
    }

    .titleHome {
        /* max-width: 19rem; */
        font-size: 2rem;
    }

    .discHome {
        font-size: 1.7rem;
    }

    .buttonHeaderHome {
        justify-content: space-between;
        gap: 3rem;
    }

    .contentProductHome {
        /* grid-template-columns: repeat(4, 1fr); */
        padding: 1.5rem;
    }

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

    /* Section Disc */
    .contentDiscHome {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .rightContentDiscHome {
        align-items: end;
    }
}

@media screen and (min-width: 968px) {
    .contentProductHome {
        padding: 1.5rem 2rem;
    }
}

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

    /* Featured Product */
    .contentProductHome {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 4rem;
    }
}

@media screen and (min-width: 1024px) {
    body {
        zoom: 1.1;
    }

      /* Category */
    .containerCategoryHome{
        grid-template-columns: repeat(3, 1fr);
    }

    /* Header */
    .titleHeaderHome {
        padding-left: 5rem;
        gap: 1.5rem;
    }

    .titleHome {
        width: 30rem;
        font-size: 3rem;
    }

    .discHome {
        font-size: 2rem;
    }

    .btnShopHome,
    .btnMoreHome {
        padding: 0.7rem 3.2rem;
        font-size: 1.2rem;
    }

    /* Featured Product */
    .contentProductHome {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 4rem;
    }

    /* Disc Section */
    .rightContentDiscHome {
        gap: 1.7rem;
    }

    .titleDiscHome {
        font-size: 2.4rem;
    }

    .subTitleDiscHome {
        font-size: var(--sizeTextH1);
    }

    .descDiscHome {
        font-size: var(--sizeTextH3);
        text-align: end;
    }

    .codeDiscHome {
        font-size: var(--sizeTextH3);
    }

    .btnDiscDiscShopHome {
        padding: .7rem 6rem;
    }
}

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


    .titleHeaderHome {
        padding-left: 14rem;
        gap: 1.8rem;
    }

    .contentProductHome {
        grid-template-columns: repeat(5, 1fr);
        padding: 1.5rem 4rem;
    }
}
