/* Modern Inline Alert */
.wc-cpa-inline-alert {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.wc-cpa-inline-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.wc-cpa-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.wc-cpa-text {
    flex: 1;
}

/* Modern Popup Overlay */
.wc-cpa-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: wcCpaFadeIn 0.3s forwards;
}

/* Modern Popup Content */
.wc-cpa-popup-content {
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.9);
    animation: wcCpaScaleUp 0.3s 0.1s forwards;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-cpa-message {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.wc-cpa-close-popup {
    margin-top: 10px;
    padding: 12px 30px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.1);
    color: inherit;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: center;
}

.wc-cpa-close-popup:hover {
    background: rgba(0,0,0,0.3);
    transform: scale(1.05);
}

@keyframes wcCpaFadeIn {
    to { opacity: 1; }
}

@keyframes wcCpaScaleUp {
    to { transform: scale(1); }
}
