.aw-promo-popup-trigger {
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    cursor: pointer;
    animation: aw-promo-popup-pulse 2s infinite;
    transition: transform 0.2s ease;
}

.aw-promo-popup-trigger:hover {
    animation: none;
    transform: scale(1.3);
}

.aw-promo-popup-trigger svg {
    width: 60px;
    height: 60px;
    display: block;
}

.aw-promo-popup-overlay {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.aw-promo-popup-overlay.active {
    display: block;
}

.aw-promo-popup {
    position: relative;
    max-width: 420px;
    width: max-content;
    padding: 30px;
    border-radius: 12px;
    animation: aw-promo-popup-appear 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.aw-promo-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.aw-promo-popup-close:hover {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: none !important;
}


.aw-promo-popup-body {
    margin-bottom: 10px;
    line-height: 1.5;
}

.aw-promo-popup-body p {
    margin: 0 0 10px;
}

.aw-promo-popup-body p:last-child {
    margin-bottom: 0;
}

.aw-promo-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.aw-promo-popup-btn {
    flex: 0 1 auto;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border: 2px solid;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-block;
    box-sizing: border-box;
}

.aw-promo-popup-btn:hover,
.aw-promo-popup-btn:focus {
    text-decoration: none;
    transform: scale(1.05);
}

@keyframes aw-promo-popup-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aw-promo-popup-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 600px) {
    .aw-promo-popup-overlay {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .aw-promo-popup {
        width: auto;
        padding: 20px;
    }

    .aw-promo-popup-buttons {
        flex-direction: column;
    }

    .aw-promo-popup-btn {
        flex: none;
        width: 100%;
    }

    .aw-promo-popup-trigger {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .aw-promo-popup-trigger svg {
        width: 50px;
        height: 50px;
    }
}
