/**
 * ÜRÜN KART BUTON HİZALAMA FİX
 * Tüm butonlar aynı hizada olsun
 */

/* Product Card - Flex Layout */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Product Body - Flex ile büyüsün */
.product-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 1.25rem !important;
}

/* Product Title - Sabit yükseklik */
.product-title {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Description - Sabit yükseklik */
.product-body .text-muted.small {
    min-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fiyat alanı - Aşağı it ve ortala */
.product-body > div.mt-3:first-of-type {
    margin-top: auto !important;
    padding-top: 0.5rem;
}

.product-price {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
}

/* Buton - Her zaman en altta ve araya boşluk */
.product-body > button,
.product-body > .btn {
    margin-top: 1.25rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-body {
        padding: 1rem !important;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: 2.4em;
    }
}

/* Border radius overrides (istenen köşeler düz) */
.site-header form[action*="ara"] button,
.site-header form[action*="ara"] input[type="search"],
.product-card .product-image,
.add-to-cart-btn,
.footer-logo-container,
.footer-logo,
.ruzgar-dijital-logo,
.category-card .category-icon img {
    border-radius: 0 !important;
}
