/* ARABIC */

body {
    background-color: #FFFFFF;
    direction: rtl;
}

.all-info-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 93px;
    border-bottom: 1px solid #F3F4F6;
    margin: 200px 0 48px 0;
}

.red-heart-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Cairo, sans-serif;
}

.main-title p,
.main-subtitle p {
    margin: 0;
}

.main-title {
    color: #101828;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
}

.main-subtitle {
    color: #6A7282;
    font-family: Cairo;
    font-size: 14px;
    font-weight: 400;
}

.favorites-grid {
    padding-bottom: 143px;
}

/* Empty state */
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    font-family: Cairo, sans-serif;
}

.wishlist-empty__img {
    width: 128px;
    height: auto;
    margin-bottom: 32px;
}

.wishlist-empty__title {
    color: #101828;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
}

.wishlist-empty__sub {
    color: #6A7282;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 448px;
    margin: 0 0 32px;
}

.wishlist-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    padding: 0 28px;
    background: #8a1538;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.44px;
    border-radius: 32px;
    box-shadow: 0 10px 15px rgba(138, 21, 56, 0.2), 0 4px 6px rgba(138, 21, 56, 0.2);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.wishlist-empty__cta:hover { opacity: 0.9; color: #fff; }

.wishlist-empty__cta svg {
    transform: scaleX(-1);
}

.wishlist-empty--hidden { display: none; }

#wishlist-books-guest {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .all-info-container {
        height: auto;
        padding: 16px 0;
        margin: 120px 0 48px 0;
    }

    .main-title {
        font-size: 22px;
    }

    .main-subtitle {
        font-size: 12px;
    }

    .red-heart-icon img {
        width: 36px;
        height: 36px;
    }

    .favorites-grid {
        padding-bottom: 60px;
    }
}
