/* =========================================
   ÖZEL STİLLER (CUSTOM CSS)
   ========================================= */

/* --- BEĞENİ BUTONU STİLLERİ --- */
.btn-icon-wish {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width ve height korundu ama görsel kutu kaldırıldı */
    width: 38px;
    height: 38px;
    border: none !important;
    /* Çerçeve yok */
    background-color: transparent !important;
    /* Arka plan yok */
    transition: all 0.2s ease;
    cursor: pointer;
    color: #333;
    /* Varsayılan renk koyu gri/siyah */
    padding: 0;
}

.btn-icon-wish i {
    font-size: 22px;
    /* İkonu biraz büyüttük */
    color: inherit;
    margin: 0;
    display: inline-block;
    transition: transform 0.2s;
    /* Tıklama efekti için */
}

/* Tıklayınca hafif zıplama efekti */
.btn-icon-wish:active i {
    transform: scale(0.9);
}

/* Hover durumunda ikon rengi */
.btn-icon-wish:hover {
    color: #000;
}

/* Beğenilmemiş - Boş kalp - Siyah çerçeveli (ikonun kendisi) */
.btn-icon-wish .icon-heart {
    /* FontAwesome icon-heart zaten çerçevelidir */
    color: #333;
}

/* Beğenilmiş - Dolu kırmızı kalp */
.btn-icon-wish .fa-heart,
.btn-icon-wish.added,
.btn-icon-wish.added i,
.btn-icon-wish.added .fa-heart {
    color: #dc3545 !important;
}

/* Beğenilmiş hover - kırmızı kalmaya devam etsin */
.btn-icon-wish.added:hover {
    color: #dc3545;
}

.btn-icon-wish.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Tema'nın wishlist popup'ını gizle */
.porto-notification {
    display: none !important;
}

.mfp-wrap {
    display: none !important;
}

/* Ürün Başlıklarını Uzat, Küçült ve Hizala (Güçlendirilmiş) */
html body .product-default .product-title {
    min-height: 60px !important;
    margin-bottom: 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: auto !important;
    max-height: none !important;
}

html body .product-default .product-title a {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    line-height: 1.35 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: center !important;
    /* Webkit line clamp iptali */
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    word-break: break-word !important;
}

@media (max-width: 767px) {
    html body .product-default .product-title {
        min-height: 70px !important;
    }

    html body .product-default .product-title a {
        font-size: 12px !important;
    }
}
/* Quick View Modal Styles - Başlangıç */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7) !important;
    opacity: 1 !important;
    z-index: 9998;
}

.modal {
    z-index: 10000;
}

body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    .modal-xl {
        max-width: 1140px;
    }
}
/* Quick View Modal Styles - Bitiş */
