.premium-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.premium-popup.show {
    opacity: 1;
    visibility: visible;
}

.premium-popup-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.premium-popup.show .premium-popup-content {
    transform: translateY(0);
}

.premium-popup-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-popup-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.premium-popup-header .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.premium-popup-header .btn-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.premium-slider {
    padding: 20px;
    /* height: calc(90vh - 80px); */
}

.premium-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-info h5 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #333;
}

.premium-info .price {
    color: #007bff;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.premium-info .location {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.premium-features span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}