/* Favorilerim Page Styles */
.favorilerim-page {
    padding: 30px 0 50px;
    background: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.favorilerim-breadcrumb {
    padding: 12px 0;
    margin-bottom: 20px;
}

.favorilerim-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.favorilerim-breadcrumb ol li {
    color: #6c757d;
}

.favorilerim-breadcrumb ol li a {
    color: #2A3F54;
    text-decoration: none;
}

.favorilerim-breadcrumb ol li a:hover {
    text-decoration: underline;
}

.favorilerim-breadcrumb ol li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #adb5bd;
}

.favorilerim-breadcrumb ol li.active {
    color: #495057;
    font-weight: 500;
}

.favorilerim-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.favorilerim-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0;
}

.favorilerim-count {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.favorilerim-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.favorilerim-clear-btn {
    padding: 8px 18px;
    border: 1px solid #dc3545;
    background: transparent;
    color: #dc3545;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.favorilerim-clear-btn:hover {
    background: #dc3545;
    color: #fff;
}

.favorilerim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.favorilerim-grid .urun-karti {
    min-width: unset;
    max-width: unset;
}

.favorilerim-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.favorilerim-empty i {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
}

.favorilerim-empty h3 {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
}

.favorilerim-empty p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 24px;
}

.favorilerim-empty-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #2A3F54;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.favorilerim-empty-btn:hover {
    background: #1e2f40;
    color: #fff;
}

@media (max-width: 768px) {
    .favorilerim-page {
        padding: 20px 0 30px;
    }

    .favorilerim-header h1 {
        font-size: 22px;
    }

    .favorilerim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .favorilerim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
