/* Banner Stili */
.page-banner {
    height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/cilt-bakimi-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    max-width: 600px;
}

/* Bilgi Bölümü */
.info-section {
    padding: 50px 5%;
    background-color: #fff;
    margin: 0 5% 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.info-content h2 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ürün Kartları */
.product-section {
    padding: 60px 5%;
    background-color: white;
    margin: 20px 5% 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.product-price {
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #45a049;
}

/* Faydalar Bölümü */
.benefits-section {
    padding: 50px 5%;
    background-color: white;
    margin: 0 5% 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #4CAF50;
    font-size: 24px;
}

.benefit-content h3 {
    color: #333;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
} 