/* ===== ÜRÜN KART STİLLERİ ===== */

/* Ürün başlık rengi - koyu gri */
.product-box-3 .product-detail h6,
.product-box-3 .product-detail a h6 {
    color: #333333 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* Fiyat satırı - tek satırda sığsın */
.product-box-3 .product-price-row {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 4px 0 !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
}

/* Yeni fiyat - yeşil */
.product-box-3 .product-price-row .current-price {
    color: #dc3545 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Eski fiyat - üstü çizili, gri */
.product-box-3 .product-price-row .old-price {
    color: #999999 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* İndirim yüzdesi badge - auto margin kaldırıldı, satırda kalır */
.product-box-3 .discount-badge {
    background: #dc2626 !important;
    color: #ffffff !important;
    padding: 1px 5px !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
}

/* Ürün butonları */
.product-box-3 .product-buttons {
    display: flex !important;
    gap: 6px !important;
    margin-top: 6px !important;
}

/* İncele butonu */
.product-box-3 .btn-product-view {
    flex: 1 !important;
    padding: 8px !important;
    background-image: linear-gradient(90deg, rgb(101,78,163) 0%, rgb(160,100,150) 51%, rgb(101,78,163) 100%) !important;
    background-size: 200% auto !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all .5s ease !important;
    display: block !important;
}

.product-box-3 .btn-product-view:hover {
    background-position: 100% !important;
    transform: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

/* Sepete Ekle butonu */
.product-box-3 .btn-add-cart {
    flex: 1 !important;
    padding: 8px !important;
    background-image: linear-gradient(90deg, #39a78e 0%, #2b8a74 51%, #39a78e 100%) !important;
    background-size: 200% auto !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all .5s ease !important;
    display: block !important;
    cursor: pointer !important;
}

.product-box-3 .btn-add-cart:hover {
    background-position: 100% !important;
    transform: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

/* Mevcut fiyat stillerini ezmek için */
.product-box-3 .product-detail .price,
.product-box-3 .product-detail h5 {
    display: none !important;
}

/* product-detail padding azalt */


/* Mobil ek küçültme */
@media (max-width: 575px) {
    .product-box-3 .product-detail h6,
    .product-box-3 .product-detail a h6 {
        font-size: 12px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
    }

    .product-box-3 .product-price-row .current-price {
        font-size: 13px !important;
    }

    .product-box-3 .product-price-row .old-price {
        font-size: 11px !important;
    }

    .product-box-3 .discount-badge {
        font-size: 9px !important;
        padding: 1px 4px !important;
    }

    .product-box-3 .product-buttons {
        margin-top: 5px !important;
    }

    .product-box-3 .btn-add-cart {
        font-size: 11px !important;
        padding: 7px 4px !important;
    }
}
