/* Favourites Page Styles */
.mainContainer {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header Section */
.showLodgesHeader {
    font-size: 32px;
    font-weight: 800;
    color: var(--header-purple, #5d3191);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.showLodgesHeader i {
    color: #ff4757;
}

.favouritesText {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Individual Favourite Card */
.favouriteProductCard {
    display: grid;
    grid-template-columns: 340px 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

.favouriteProductCard:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Image */
.favCardImage {
    overflow: hidden;
    background: #f8f9fa;
}

.favCardImage a {
    display: block;
    height: 100%;
}

.favCardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.favouriteProductCard:hover .favCardImage img {
    transform: scale(1.03);
}

/* Details */
.favCardDetails {
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
}

.favCardTitle {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
}

.favCardTitle a {
    color: #1a1a1a;
    text-decoration: none;
}

.favCardTitle a:hover {
    color: #5d3191;
}

.favCardSize {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.favCardSize i {
    color: #5d3191;
}

.favCardDesc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.favCardPricing {
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price-was {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.price-now,
.price-single {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.price-savings {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #5d3191;
    padding: 3px 10px;
    border-radius: 20px;
}

.favCardActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
}

/* Action Buttons */
.favCardActions .btn-primary-cta {
    display: inline-block;
    background: #5d3191;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.favCardActions .btn-primary-cta:hover {
    background: #4a2575;
}

.favCardActions .btn-secondary-cta {
    display: inline-block;
    background: #fff;
    color: #5d3191;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #5d3191;
    transition: all 0.2s ease;
}

.favCardActions .btn-secondary-cta:hover {
    background: #5d3191;
    color: #fff;
}

.favCardActions .btn-favorite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #ff4757;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #ff4757;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favCardActions .btn-favorite:hover {
    background: #ff4757;
    color: #fff;
}

.resultsHR {
    display: none;
}

/* Empty State */
.loading {
    padding: 100px 0;
    text-align: center;
    font-size: 18px;
    color: #999;
}

/* Mobile */
@media (max-width: 768px) {
    .favouriteProductCard {
        grid-template-columns: 1fr;
    }

    .favCardImage {
        height: 220px;
    }

    .favCardDetails {
        padding: 18px;
    }
}

@media (max-width: 600px) {
    .showLodgesHeader {
        font-size: 24px;
    }
}

/* Back to Top */
.backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--header-purple, #5d3191);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.backToTop:hover {
    transform: translateY(-5px);
    background: var(--header-green, #56d07e);
}