/* Parke Taşları Sayfası için CSS - parke-style.css */


/* Ana İçerik Bölümü */

.main-content {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.products-content {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-title {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 10px;
    text-align: center;
}

.page-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0056b3;
    margin: 10px auto 20px;
}

.page-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Ürün Grid Yapısı */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}


/* Ürün Öğeleri */

.product-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 15px;
    text-align: center;
}

.product-details h2 {
    font-size: 16px;
    color: #0056b3;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-details p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    min-height: 60px;
}


/* İletişim Kenar Çubuğu */

.contact-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.contact-item {
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-inner {
    display: flex;
    align-items: center;
    padding: 12px 15px;
}

.contact-icon {
    width: 30px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
    color: #0056b3;
}

.contact-info h3 {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.contact-number {
    padding: 0 15px 12px 55px;
}

.contact-number a {
    font-size: 16px;
    font-weight: 600;
    color: #0056b3;
}

.contact-menu-btn {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 12px;
    cursor: pointer;
}

.contact-menu-btn h3 {
    color: #fff;
    margin: 0;
    font-size: 15px;
}


/* Duyarlı Tasarım */

@media (max-width: 1200px) {
    .main-content .container {
        flex-direction: column;
    }
    .contact-sidebar {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    .product-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .page-title {
        font-size: 20px;
    }
    .product-image {
        height: 140px;
    }
    .product-details h2 {
        font-size: 14px;
    }
    .product-details p {
        font-size: 12px;
        min-height: 70px;
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-image {
        height: 180px;
    }
}