/* Popup Overlay */
.cactus-gp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cactus-gp-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.cactus-gp-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    padding: 30px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cactus-gp-popup-overlay.active .cactus-gp-popup {
    transform: scale(1);
}

/* Close Button */
.cactus-gp-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.cactus-gp-popup-close:hover {
    color: #333;
}

/* Popup Content */
.cactus-gp-popup-content {
    text-align: center;
}

.cactus-gp-popup-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.cactus-gp-popup-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
}

.cactus-gp-popup-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px;
}

/* Gift Product Display */
.cactus-gp-gift-product {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.cactus-gp-gift-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.cactus-gp-gift-name {
    font-weight: 600;
    color: #333;
}

/* Body class when popup is open */
body.cactus-gp-popup-open {
    overflow: hidden;
}


