/**
 * Favori düğmesi — tüm vitrin + ürün detay (sabit stil; ürün kartı tasarım ayarlarından bağımsız)
 */

 .product-img-action-wrap.has-grid-fav-wrap {
    position: relative;
}

.pdt2-fav-floating-wrap--grid {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    max-width: min(220px, calc(100% - 20px));
    pointer-events: none;
}

.pdt2-fav-floating-wrap--grid form,
.pdt2-fav-floating-wrap--grid a {
    pointer-events: auto;
}

.pdt2-fav-floating-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e9f5;
    color: var(--theme-default-color, #77003e);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--theme-default-color, #77003e) 12%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 0;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pdt2-fav-floating-btn:hover,
.pdt2-fav-floating-btn.is-on {
    background: var(--theme-default-color, #77003e);
    color: #fff;
    border-color: var(--theme-default-color, #77003e);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--theme-default-color, #77003e) 22%, transparent);
}

.pdt2-fav-floating-btn--busy {
    opacity: 0.65;
    pointer-events: none;
}

.pdt2-fav-floating-btn:focus {
    outline: none;
}

.pdt2-fav-floating-btn:focus-visible {
    outline: 2px solid var(--theme-hover-color, #c72d7d);
    outline-offset: 2px;
}

.pdt2-fav-floating-btn .pdt2-fav-svg {
    display: block;
}

.pdt2-fav-infobox--grid {
    font-size: 11px;
    line-height: 1.35;
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-align: center;
    word-break: break-word;
    max-width: 100%;
}

.pdt2-fav-infobox--grid.pdt2-fav-infobox--success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.pdt2-fav-infobox--grid.pdt2-fav-infobox--error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.pdt2-fav-infobox--grid.pdt2-fav-infobox--dismiss {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

/* Tip 3 ürün kartı — sağ üst favori (kart tıklama katmanının üstünde) */
.pc3-image-area .pdt2-fav-floating-wrap--grid {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 6;
    pointer-events: auto;
}

.pc3-image-area .pdt2-fav-floating-wrap--grid form,
.pc3-image-area .pdt2-fav-floating-wrap--grid a {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .pdt2-fav-floating-wrap--grid {
        top: 4px;
        right: 4px;
        gap: 4px;
        max-width: min(170px, calc(100% - 10px));
    }

    .pdt2-fav-infobox--grid {
        font-size: 10px;
        line-height: 1.3;
        padding: 4px 6px;
        border-radius: 6px;
    }

    .pc3-image-area .pdt2-fav-floating-wrap--grid {
        top: 3px;
        right: 3px;
    }
}
