.product-categories {
    width: 100%;
    margin-top: 2rem;
}

.category {
    margin-bottom: 1rem;
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Ürünler menüsündeki linklerin altındaki çizgiyi kaldır */
.image-container .image-item a {
    text-decoration: none !important;
}

.products-section {
    background-color: #f9f9f9;
}

.products-section h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.image-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    text-align: center;
    padding: 15px 20px;
    max-width: 98%;
    margin: 0 auto;
}

.image-item {
    width: 32%;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
}

.image-item img {
    width: 100%;
    height: 90%;
    transition: transform 0.3s ease;
}

.image-item p {
    font-size: 1.2rem;
    margin-top: 25px;
    color: #000000;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
    padding-bottom: 0px;
}

@media screen and (max-width: 1700px) {
    .image-item img {
        width: 100%;
        height: 80%;
        transition: transform 0.3s ease;
    }
}


@media screen and (max-width: 992px) {
    .products-section h3{
        font-size: 2rem;
        margin-bottom: 0;
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }

    .image-item {
        width: 100%;
        max-width: 400px;
    }

    .image-item img {
        /*height: 300px;*/
    }

    .image-item p {
        margin-top: 20px;
        font-size: 1.2rem;
    }
    .products-section h3{
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .image-item {
        max-width: 100%;
    }
}