/* Product Carousel - Sayfa Stili (Ürün tasarımıyla aynı) */
.pxl-product-carousel1 .woocommerce-product-inner {
    /* Sayfalar için ek stiller - ürün tasarımıyla aynı görünüm */
}

/* Görsel boyut standardizasyonu - hem ürün hem sayfa için */
.pxl-product-carousel1 .woocommerce-product-header {
    position: relative;
    overflow: hidden;
}

.pxl-product-carousel1 .woocommerce-product-header .woocommerce-product-details {
    display: block;
    position: relative;
    overflow: hidden;
}

.pxl-product-carousel1 .woocommerce-product-header .woocommerce-product-details img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.pxl-product-carousel1 .woocommerce-product-header:hover .woocommerce-product-details img {
    transform: scale(1.05);
}

/* Sayfa başlıkları için sadece ortalama - tema orijinal stillerini koruyoruz */
.pxl-product-carousel1.content-type-pages .woocommerce-product--title,
.pxl-product-carousel1.content-type-pages .woocommerce-product--title a {
    text-align: center;
}

/* Responsive - Mobil için görsel boyutunu artırıyoruz */
@media (max-width: 768px) {
    .pxl-product-carousel1 .woocommerce-product-header .woocommerce-product-details img {
        width: 100%;
        height: 300px;
        max-width: none;
    }
    
    .pxl-product-carousel1 .woocommerce-product-header {
        margin-bottom: 15px;
    }
    
    .pxl-product-carousel1 .woocommerce-product-content {
        padding: 0 10px;
    }
}

/* Tablet için de görsel boyutunu artırıyoruz */
@media (max-width: 1024px) and (min-width: 769px) {
    .pxl-product-carousel1 .woocommerce-product-header .woocommerce-product-details img {
        width: 100%;
        height: 280px;
        max-width: none;
    }
} 