/* Genel Ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Linkler */
a {
    color: #00bad3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #dd0713;
}

/* Menü */
.menu {
    background-color: #0078d7;
    padding: 10px;
    text-align: center;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 20px;
}

.menu ul li a {
    color: white;
    font-weight: bold;
}

.menu ul li a:hover {
    color: #ffcc00;
}

/* Ana Konteyner */
.main-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px;
}

/* Kategoriler */
.categories {
    width: 250px;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.categories .hamburger-button {
    display: none;
}

.categories .category-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.categories .category-list li {
    margin-bottom: 10px;
}

.categories .category-list li a {
    color: #00bad3;
    font-size: 16px;
    font-weight: bold;
}

.categories .category-list li a:hover {
    color: #dd0713;
}

/* İçerik Alanı */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Marketler */
.markets {
    width: 100%;
}

.market-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.market {
    text-align: center;
    width: 150px;
}

.market-logo {
    width: 100px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    background-color: #f9f9f9;
}

/* Ürünler */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Mobil Düzen */
@media screen and (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .categories {
        width: 100%;
        order: 1;
    }

    .categories .hamburger-button {
        display: block;
        background-color: #0078d7;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        width: 100%;
        text-align: left;
    }

    .categories .category-list {
        display: none;
    }

    .categories .category-list.active {
        display: block;
    }

    .content-area {
        order: 2;
    }
}
/* Ürün Kartı */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    margin: 10px; /* Kartlar arasına boşluk eklemek için */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Gölgeli görünüm */
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hover durumunda gölgeyi artırma */
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card .product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-card .product-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}
