/* =========================================================
   WISHLIST PAGE SPECIFIC STYLES
   ========================================================= */

.wishlist-page-main {
    padding-top: 20px;
    padding-bottom: 90px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.wishlist-header-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../image/wishlist.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.wishlist-header-banner h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.wishlist-header-banner p {
    font-size: 16px;
    opacity: 0.9;
}

.wishlist-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Toolbar above grid */
.wishlist-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.remove-all-btn {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.remove-all-btn:hover {
    background: #e60000;
}

/* Full Wishlist Grid */
.full-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Card layout matching home page card structure */
.wishlist-item-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eaeaea;
}

.wishlist-item-card .card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wishlist-item-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Orange status badge styling */
.wishlist-item-card .orange-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
}

/* The 'x' removal button overlay */
.remove-from-page-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.remove-from-page-btn:hover {
    background: #e63946;
}

/* Card Body Sub-Information styling */
.wishlist-item-card .card-content-body {
    padding: 18px;
    flex-grow: 1;
}

.wishlist-item-title {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tour-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-destinations, 
.tour-age-range {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.4;
}

.tour-destinations strong, 
.tour-age-range strong {
    color: #222;
}

/* Discover Button styling */
.card-footer-meta {
    padding: 15px 18px;
    border-top: 1px solid #f1f1f1;
    background: #fafafa;
}

.card-discover-btn {
    display: block;
    background-color: #0077b6;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.card-discover-btn:hover {
    background-color: #023e8a;
}

/* Empty State UI Styling */
.empty-wishlist-state {
    text-align: center;
    background: #fff;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 40px auto;
}

.empty-icon-wrap {
    font-size: 50px;
    color: #e63946;
    margin-bottom: 20px;
}

.empty-wishlist-state h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.empty-wishlist-state p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.explore-safaris-btn {
    display: inline-block;
    background-color: #0077b6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.explore-safaris-btn:hover {
    background-color: #023e8a;
}

@media (max-width: 768px) {
    .wishlist-page-main {
        padding-bottom: 100px;
    }
}