/* Page-specific styles for Wishlist Page */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1D1D1F;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Tour Card Styles Copied/Shared for Consistency */
.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-image-container {
    position: relative;
    height: 200px;
}

.tour-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
    flex-grow: 1;
}

.tour-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tour-price {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
}

.tour-footer {
    padding: 20px;
    padding-top: 0;
}

.btn-primary {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: #86868B;
    margin-bottom: 30px;
}

/* Nav Btn Active State specific for this page */
.nav-btn.active {
    background: #1D1D1F;
    color: white;
}

.profile-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background: white;
    color: #1D1D1F;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.nav-btn:hover {
    background: #f0f0f0;
}