﻿body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #3e2c23, #5a4333, #6e4f3a);
    background-attachment: fixed;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
}

    .logo img {
        max-width: 250px;
        height: auto;
        object-fit: contain;
    }

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

    .category-card:hover {
        transform: scale(1.02);
    }

    .category-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.category-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 10px;
    font-size: 18px;
    color: #fff;
}

.hidden {
    display: none !important;
}


/* Ürünler */
#product-list {
    display: none;
    padding: 20px;
}

.product {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .product img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 15px;
    }

.product-info h4 {
    margin: 0;
    font-size: 18px;
}

.product-info .price {
    font-size: 14px;
    margin-top: 5px;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #4a2d24;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    color: white;
    text-align: center;
}

    .modal-content img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
