/* Private Shop Popup Styles */
#private-shop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.private-body-overlay {
    position: absolute !important;
    width: 100%;
    height: 100%;
}

#private-shop-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 550px;
    max-width: 90%;
    overflow: hidden;
    border: 1px solid #ddd;
}

.private-popup-container {
    display: flex;
    width: 100%;
    align-items: center;
}

.private-popup-image {
    width: 50%;
    background: #f8f8f8;
}

.private-popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.private-popup-content {
    width: 50%;
    padding: 20px;
    text-align: center;
    font-family: "Arial", sans-serif;
}

.private-popup-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.private-popup-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.private-popup-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
    border: none;
    font-size: 14px;
}

.private-popup-btn:hover {
    background: #0056b3;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    #private-shop-popup {
        flex-direction: column;
        width: 90%;
    }

    .private-popup-image, .private-popup-content {
        width: 100%;
    }
} 