.section1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    object-fit: cover;
}

.section2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    margin-top: 50px;
}

.section2-title {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 0;
    margin: 0;
    font-size: 35px;
    font-weight: bold;
    color: black;
    text-align: center;
    letter-spacing: 2rem;
}

.categories-div {
    position: relative;
    top: 0;
    left: 0;
    width: 80%;
    margin-left: 10%;
    height: max-content;
    display: grid;
    grid-template-columns: 32% 2% 32% 2% 32%;
    margin-top: 60px;
}

.category-1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    grid-column: 1;
    grid-row: 1;
}

.category-2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    grid-column: 3;
    grid-row: 1;
}

.category-3 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    grid-column: 5;
    grid-row: 1;
}

.category-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    object-fit: cover;
    max-height: 450px;
}

.category-text {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.section2 {
    padding: 40px 0;
    background-color: white;
    color: black;
    text-align: center;
}

.section2-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.products-div {
    position: relative;
    top: 0;
    left: 0;
    width: 80%;
    margin-left: 10%;
    height: max-content;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}

.product-text {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    text-align: left;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.product-price {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    text-align: left;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

@media (max-width: 992px) {
    .products-div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-div {
        grid-template-columns: 1fr; 
    }
}


@media screen and (min-width: 1100px) {
    .category-image {
        max-height: 900px;
    }
}

@media screen and (max-width: 720px) {
    .section2-title {
        letter-spacing: 1rem;
        font-size: 30px;
    }

    .categories-div {
        grid-template-columns: 100%;
    }

    .category-1 {
        grid-row: 1;
        grid-column: 1;
    }

    .category-2 {
        grid-row: 2;
        grid-column: 1;
    }

    .category-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .category-image {
        max-height: 500px;
    }
}

@media screen and (max-width: 480px) {
    .section2-title {
        font-size: 25px;
        letter-spacing: 0.5rem;
    }
}

.White {
    background-color: white;
    color: white;
}

.image-slider {
    position: relative;
    width: 100vw;
    height: 500px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.image-slider.active {
    display: block;
}
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: white;
}

@media screen and (max-width: 720px) {
    .video-slider {
        height: 350px;
    }
}