﻿/*.video-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    font-size: 2rem;
    border-radius: 10px;
}*/

#home-index-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#home-index-container-inner {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#banner-sec-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.banner-sec-1-item {
    width: calc(50% - 5px);
    height: auto;
    object-fit: cover;
}

#product-sec-1 {
    margin-top: 45px;
    width: 100%;
}

.product-sec-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 28px;
}

.product-sec-title-textcontainer {
    font-size: 18px;
    padding-left: 10px;
    text-decoration: underline;
}

.nav-button {
    border-bottom: 1px solid black;
    padding: 8px;
    cursor: pointer;
}

    .nav-button:hover {
        outline: 1px solid black;
    }

.product-slider-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    overflow: hidden;
    background-color: #F9F9F9
}

    .product-slider-item img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

.product-slider-item-title {
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 2.6em;
    margin-top: 10px;
    color: #333333
}

.product-slider-item-price {
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
    color: #222222
}

.product-slider-item-button {
    background: black;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 8px;
    background-color: #EAB543;
    color: var(--fb)
}

#product-sec-2 {
    margin-top: 45px;
    width: 100%;
    display: flex;
}

.category-image-conteiner {
    position: relative;
    width: 300px;
    height: auto;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.category-image-conteiner-text-box {
    padding: 10px 20px;
    background-color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
}

.CategoryCardConteiner {
    width: 75%;
    padding: 20px;
}

#product-sec-3 {
    margin-top: 45px;
    width: 100%;
    display: flex;
}

.bannerImg {
    margin-top: 20px;
}

    .bannerImg img {
        width: 100%;
        height: auto;
        display: block;
    }

@media (max-width: 48rem) {
    #home-index-container {
        margin: 0;
        padding: 10px 8px
    }

    #home-index-container-inner {
        max-width: 100%;
    }

    .product-sec-title {
        margin-bottom: 5px;
        gap: 5px;
    }

    .product-sec-title-sec-1 {
        font-size: 20px
    }

    .product-sec-title-textcontainer {
        font-size: 20px;
        padding-left: 10px;
    }

    .category-image-conteiner {
        display: none;
    }

    .CategoryCardConteiner {
        width: 100%;
        padding: 0px;
    }
}
