/* Tema 2 — Favorilerim */

.pb-favori-main {
    padding: 1.25rem 0 5rem;
    min-height: 65vh;
}

.pb-favori-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}
.pb-favori-breadcrumb a { color: #0a2240; font-weight: 600; text-decoration: none; }
.pb-favori-breadcrumb a:hover { text-decoration: underline; }

.pb-favori-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8edf3;
}
.pb-favori-title {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    color: #0a2240;
    font-weight: 800;
}
.pb-favori-lead { margin: 0.25rem 0 0; color: #64748b; font-size: 0.9rem; }
.pb-favori-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a2240;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    white-space: nowrap;
}

/* Boş durum */
.pb-favori-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(10, 34, 64, 0.05);
}
.pb-favori-empty-mark {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #fef2f2;
    border: 1px solid #fecdd3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3366;
    line-height: 1;
}
.pb-favori-empty-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a2240;
}
.pb-favori-empty-text {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    max-width: 380px;
    margin-inline: auto;
    line-height: 1.6;
    color: #64748b;
}
.pb-favori-btn {
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: 8px;
    background: #0a2240;
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.6rem 1.35rem;
    text-decoration: none;
    transition: background 0.15s;
}
.pb-favori-btn:hover { background: #12345f; }

/* Grid — ana sayfa ürün kartlarıyla aynı */
.pb-favori-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 600px) {
    .pb-favori-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .pb-favori-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
    .pb-favori-grid { grid-template-columns: repeat(5, 1fr); }
}

.pb-favori-grid .product-card {
    height: 100%;
}

.pb-favori-card-removing {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
