.flatmate-saved-page {
    background: #f5f8fb;
    padding: 50px 16px 70px;
    min-height: 80vh;
}

.flatmate-saved-container {
    max-width: 1180px;
    margin: 0 auto;
}

.flatmate-saved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.flatmate-saved-header h1 {
    margin: 0 0 8px;
    font-size: 42px;
    color: #1f2933;
}

.flatmate-saved-header p {
    margin: 0;
    color: #667085;
}

.flatmate-saved-browse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c92b2b;
    color: #fff !important;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 800;
}

.flatmate-saved-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.flatmate-saved-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transition: all 0.2s ease;
}

.flatmate-saved-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.12);
}

.flatmate-saved-image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #eef2f6;
}

.flatmate-saved-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flatmate-saved-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8792a2;
    font-weight: 700;
}

.flatmate-saved-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #26799a;
    color: #fff;
    padding: 5px 8px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.flatmate-saved-price-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #c92b2b;
    color: #fff;
    padding: 6px 9px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

.flatmate-saved-body {
    padding: 14px;
}

.flatmate-saved-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.flatmate-saved-body h3 a {
    text-decoration: none;
    color: #1f2933;
}

.flatmate-saved-price {
    color: #1f2933;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
}

.flatmate-saved-price span {
    font-size: 13px;
    color: #667085;
    font-weight: 500;
}

.flatmate-saved-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.flatmate-saved-meta span {
    background: #f2f4f7;
    color: #475467;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}

.flatmate-saved-view-btn {
    display: block;
    text-align: center;
    background: #f8eaea;
    color: #c92b2b !important;
    padding: 10px 12px;
    border-radius: 9px;
    text-decoration: none !important;
    font-weight: 800;
}

.flatmate-saved-empty {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.flatmate-saved-empty h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1f2933;
}

.flatmate-saved-empty p {
    color: #667085;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .flatmate-saved-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .flatmate-saved-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flatmate-saved-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .flatmate-saved-grid {
        grid-template-columns: 1fr;
    }

    .flatmate-saved-header h1 {
        font-size: 34px;
    }

    .flatmate-saved-image-wrap {
        height: 220px;
    }
}