.wishes__cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.wishes__empty {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.wishes__empty__content {
    width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 60px 0;
}

.wishes__empty__image {
    width: 130px;
    height: 130px;
}

.wishes__empty__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishes__empty__text {
    font-size: 1.25rem;
    color: #000;
    margin-top: 20px;
}

.wishes__empty__text h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}

.wishes__empty__text p {
    font-size: 1.05rem;
    color: #333;
    margin-top: 10px;
}

.wishes__empty__recommendations {
    margin-top: 50px;
    width: 93%;
}

.wishes__empty__recommendations__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.wishes__empty__recommendations__cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
