/* Pre-Order Popup Styles */
.oz-pre-order-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.oz-pre-order-popup-overlay.oz-popup-show {
    opacity: 1;
    visibility: visible;
}

.oz-pre-order-popup {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    width: 85%;
    max-height: 60vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.oz-popup-show .oz-pre-order-popup {
    transform: scale(1);
}

.oz-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    line-height: 1!important;
    cursor: pointer!important;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 28px!important;
    max-width: 28px!important;
    min-width: 28px!important;
    min-height: 28px!important;
    padding: 0px!important;
    font-size: 0.9rem!important;
}

.oz-popup-close:hover {
    background: #b9996a;
    color: #fff;
    transform: rotate(90deg);
}

.oz-popup-content {
    padding: 20px 15px;
}

.oz-popup-image {
    text-align: center;
    margin-bottom: 12px;
}

.oz-popup-image img {
    max-width: 80px;
    height: auto;
    border-radius: 6px;
}

.oz-popup-info {
    text-align: center;
}

.oz-popup-title {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.2;
}

.oz-popup-product-name {
    font-size: 14px;
    color: #34495e;
    margin: 0 0 10px;
    font-weight: 500;
}

.oz-popup-availability {
    font-size: 13px;
    color: #e74c3c;
    margin: 0 0 12px;
    font-weight: 600;
    background: #fff5f5;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ffdddd;
}

.oz-popup-message {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin: 0 0 15px;
}

.oz-popup-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.oz-popup-btn {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}

.oz-popup-btn-primary {
    background: linear-gradient(135deg, #b9996a 0%, #8b6f47 100%);
    color: white;
}

.oz-popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(185, 153, 106, 0.4);
    color: white;
    background: linear-gradient(135deg, #c4a57b 0%, #997d52 100%);
}

.oz-popup-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.oz-popup-btn-secondary:hover {
    background: #b9996a;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .oz-pre-order-popup {
        width: 90%;
        max-width: 280px;
    }
    
    .oz-popup-content {
        padding: 15px 12px;
    }
    
    .oz-popup-title {
        font-size: 16px;
    }
    
    .oz-popup-product-name {
        font-size: 13px;
    }
    
    .oz-popup-availability {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .oz-popup-message {
        font-size: 12px;
    }
    
    .oz-popup-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .oz-popup-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Animation for popup entrance */
@keyframes popup-bounce {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.oz-popup-show .oz-pre-order-popup {
    animation: popup-bounce 0.5s ease;
}