/* Ana Stiller */
body {
    background-color: #F5F2EA;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Kategori Kartları */
.category-card {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.category-header {
    display: flex;
    align-items: center;
    background-color: #8B7355;
    cursor: pointer;
}

.category-header img {
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}

.category-header h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

/* Ürün Listesi */
.product-list {
    display: none;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Ürün Kartları */
.product-item {
    background: #fff;
    border-radius: 8px;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-price {
    color: #8B7355;
    font-size: 20px;
    font-weight: 600;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}


