main {
    padding-top: 50px;
    background-color: rgb(248, 248, 249);
    background-color: #f5f8fb;
}
.banner-container {
    position: relative;
    width: calc(100% - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px 2px 5px rgba(94, 94, 94, 0.4);
}
.nav-arrow-prev {
    position: absolute;
    left: 10px;
}
.nav-arrow-next {
    position: absolute;
    right: 10px;
}
.nav-arrow-img {
    width: 80px;
    cursor: pointer;
}
.banner-images-container {
    display: flex;
    transition: 0.3s ease;
    transform: translateX(-100%);
}
.banner-img {
    width: 100%;
}
.banner-bottom {
    margin-top: 40px;
    padding: 15px 0;
    background-color: #d7ecf5;
    border-top: 1px solid #002299;
    border-bottom: 1px solid #002299;
}
.banner-bottom-track {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.banner-bottom-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.banner-bottom-img {
    height: 40px;
}
.banner-bottom-text {
    color: #002999;
    font-weight: 600;
    font-size: 14pt;
}
.banner-bottom-nav-arrow {
    display: none;
}
.prod-ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}
.prod-ul-item {
    color: black;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: pointer;
    background-color: white;
}
.prod-ul-item:hover {
    box-shadow: 0px 3px 10px rgba(94, 94, 94, 0.4);
}
.products-container {
    margin: 50px auto 0px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: stretch;
    width: calc(100% - 40px);
    max-width: 1400px;
    padding: 0 80px 100px 80px;
}
.prod-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90%;
    width: 250px;
    margin-bottom: 50px;
    padding: 30px 0px 10px 0px;
    border: 1px solid rgb(228, 228, 228);
    border-radius: 10px;
    box-shadow: 0px 1px 1px rgba(94, 94, 94, 0.2);
    transition: 0.3s;
    background-color: white;
}
.prod-item-container:hover {
    box-shadow: 0px 3px 10px rgba(94, 94, 94, 0.4);
}
.prod-img {
    height: 300px;
    margin-bottom: 20px;
}
.prod-text {
    font-size: 11pt;
    padding: 10px 10px;
    border-top: 1px solid rgb(228, 228, 228);
    width: 100%;
}
.available-on-ML {
    background-color: #ffe600d3;
    font-size: 10pt;
    font-weight: 500;
    margin-top: 0px;
    padding: 5px 10px;
    border-radius: 10px 10px 0px 0px;
    color: rgba(0, 0, 0, 0.6);
}
.available-on-shopee {
    background-color: #f25d3f;
    font-size: 10pt;
    font-weight: 500;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 10px 10px 0px 0px;
    color: white;
}

@media (max-width: 1500px) {
    main {
        padding-top: 30px;
    }
    .banner-container {
        width: calc(100% - 80px);
        margin: 0px auto;
    }
}
@media (max-width: 1300px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        padding: 0 10% 100px 10%;
    }
}
@media (max-width: 900px) {
    main {
        padding-top: 10px;
    }
    .banner-container {
        width: calc(100% - 20px);
        margin: 0px auto;
        border-radius: 5px;
    }
    .nav-arrow {
        display: none;
    }
    .banner-bottom {
        position: relative;
        margin-top: 15px;
        padding: 10px;
        overflow: hidden;
    }
    .banner-bottom-track {
        transition: 0.3s ease;
    }
    .banner-bottom-item {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .banner-bottom-img {
        height: 30px;
    }
    .banner-bottom-text {
        text-align: center;
        font-weight: 500;
        font-size: 9pt;
    }
    .banner-bottom-nav-arrow-prev {
        left: 5px;
    }
    .banner-bottom-nav-arrow-next {
        right: 5px;
    }
    .banner-bottom-nav-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: fit-content;
    }
    .banner-bottom-nav-arrow-img {
        width: 20px;
    }
    .prod-ul {
        justify-content: flex-start;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px;  
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 10px;
    }
    .prod-ul-item {
        display: flex;
        align-items: center;
        height: 50px;
        font-size: 10pt;
        padding: 0px 20px;
    }
    .products-container {
        gap: 30px;
        margin: 20px auto 0px auto;
        padding: 0px 5px 50px 5px;
        width: 100%;
        align-items: stretch;
    }
    .prod-item-container {
        width: 165px;
        height: 97%;
        margin-bottom: 0px;
        padding: 30px 0px 30px 0px;
        border-radius: 5px;
    }
    .prod-item-container:hover {
        box-shadow: 0 1px 1px rgba(94, 94, 94, 0.2);
    }
    .prod-img {
        height: 200px;
        margin-bottom: 20px;
    }
    .prod-text {
        font-size: 10pt;
    }
    .available-on-ML {
        width: 100%;
        text-align: center;
        font-size: 8pt;
        padding: 5px 0px 2px 0px;
        border-radius: unset;
        color: rgba(0, 0, 0, 0.6);
    }
    .available-on-shopee {
        width: 100%;
        text-align: center;
        font-size: 8pt;
        padding: 5px 0px 2px 0px;
        border-radius: 7px 7px 0px 0px;
    }
}

@media (max-width: 600px) {
    .products-container {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-item.container {
        height: 97%;
    }
}