/* ENGLISH */

body {
    background-color: #FFFFFF;
}

.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: Inter, 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: Inter;
  font-size: 14px;
  font-weight: 400;
}

.favorites-grid {
    padding-bottom: 143px;
}

/* Book Cards */
.book-card-container {
    border-radius: var(--radius-card);
    background: #FFF;
    box-shadow: var(--shadow-card);
    padding-bottom: 10px;
    height: 100%;
}

.card-image img {
    border-radius: 14px 14px 0 0;
    width: 100%;
    object-fit: cover;
}

.card-info {
    font-family: Inter, sans-serif;
    padding: 33px 0 14px 24px;
    border-bottom: 1px solid #F3F4F6;
}

    .card-info p {
        margin: 0;
    }

.card-book-title {
    color: #101828;
    font-size: 18px;
    font-weight: 700;
}

.card-author-title {
    color: #6A7282;
    font-size: 14px;
    font-weight: 400;
}

.price-and-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px 0 24px;
}

.price-text {
    color: #8A1538;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Empty state */
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    font-family: Inter, 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--hidden { display: none; }

#wishlist-books-guest {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .all-info-container {
        height: auto;
        padding: 16px 0;
    }

    .main-title {
        font-size: 22px;
    }

    .main-subtitle {
        font-size: 12px;
    }

    .red-heart-icon img {
        width: 36px;
        height: 36px;
    }
    .all-info-container {
        margin: 120px 0 48px 0;
    }
    .favorites-grid {
        padding-bottom: 60px;
    }
}
