﻿

/* Ürün Kutusu Stili */
.product-box {
    display: inline-block;
    width: 300px; /* Kartların genişliği */
    margin: 20px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 2px solid #3498db; /* Kartların etrafında mavi sınır */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* Ürün Kartı Başlık */
    .product-box h3 {
        font-size: 24px;
        color: #e74c3c;
        margin-top: 15px;
        font-weight: 600;
    }

    /* Ürün Kartı Fiyat */
    .product-box .price {
        font-size: 22px;
        color: #27ae60;
        font-weight: bold;
        margin-top: 15px;
    }

    /* Ürün Kartı Açıklama */
    .product-box .price-description {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 10px;
        font-size: 14px;
    }

    /* Ürün Kartlarındaki Görseller */
    .product-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

/* Ürünler Arası Separator */
.separator {
    margin: 40px 0;
    border-bottom: 3px solid #3498db;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Mobil Uyumluluk */
@media only screen and (max-width: 768px) {
    /* Ürün kutularının genişliği */
    .product-box {
        width: 90%;
        margin: 10px auto;
    }

    .price {
        font-size: 18px;
    }

    /* Diğer metin açıklamaları */
    .price-description {
        font-size: 12px;
    }

    .product-box h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .product-box {
        width: 100%;
        margin: 10px 0;
    }

    .price {
        font-size: 16px;
    }

    /* Diğer metin açıklamaları */
    .price-description {
        font-size: 12px;
    }

    .product-box h3 {
        font-size: 18px;
    }
}

/* İletişim Bölümü */
.contact-section {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid #ddd;
}

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-section ul {
        list-style: none;
        padding: 0;
        font-size: 16px;
    }

    .contact-section li {
        margin: 10px 0;
    }

    .contact-section a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .contact-section a:hover {
            color: #007bff;
        }

    .contact-section img {
        width: 20px;
        vertical-align: middle;
        margin-right: 5px;
    }

/* Mobil uyumlu stil */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 20px;
    }

    .contact-section ul {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 18px;
    }

    .contact-section ul {
        font-size: 13px;
    }

    .contact-section li {
        margin: 8px 0;
    }
}
