.fod-wrapper-e8f853ce {
    width: 100%;
}
.fod-banner-e8f853ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #000000 100%);
    color: #ffffff;
    padding: 32px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}
.fod-banner-e8f853ce .fod-title {
    margin: 0 0 10px 0;
    color: #C8A45D; /* Champagne gold accent default */
}
.fod-banner-e8f853ce .fod-desc {
    margin: 0;
    opacity: 0.85;
}
.fod-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fod-banner-e8f853ce .fod-btn {
    background: #ffffff;
    color: #000000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    min-width: 160px;
}
.fod-banner-e8f853ce .fod-btn:hover {
    background: #C8A45D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,164,93,0.3);
}
.fod-btn.fod-loading {
    pointer-events: none;
    opacity: 0.8;
}
.fod-btn.fod-success {
    background: #61CE70 !important; /* Elementor Accent Green */
    color: #fff !important;
    pointer-events: none;
}
.fod-editor-notice {
    font-size: 13px;
    background: #ffecb3;
    color: #856404;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid #ffeeba;
}
@media (max-width: 767px) {
    .fod-banner-e8f853ce {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .fod-action {
        width: 100%;
    }
    .fod-banner-e8f853ce .fod-btn {
        width: 100%;
    }
}