/* New Products Popup Styles */

.new-products-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}
.popup-content {
    position: relative;
    background: transparent;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: popupFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}
.popup-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}
.popup-close svg {
    color: #333;
}
.popup-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.popup-body {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.popup-image {
    margin-bottom: 25px;
    text-align: center;
}
.popup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.popup-text {
    text-align: center;
}
.popup-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.popup-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 20px 0;
}
.popup-cta {
    background: #3b3d43;
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}
.popup-cta:hover {
    background: #2a2c30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 61, 67, 0.4);
}
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-width: 400px;
    }

    .popup-body {
        padding: 30px 20px 20px;
    }

    .popup-text h2 {
        font-size: 20px;
    }

    .popup-text p {
        font-size: 13px;
    }

    .popup-cta {
        padding: 9px 20px;
        font-size: 13px;
    }
}
body.popup-open {
    overflow: hidden;
}
