
/* Dinelco Payment Box - Modern Branding */
.bepsa-dinelco-payment-container {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 24px 24px;
    color: #8754b6;
    box-shadow: 0 8px 32px rgba(135,84,182,0.10);
    margin: 18px 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.bepsa-payment-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px 20px;
    background: #f3f0ff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(135,84,182,0.06);
}

.bepsa-payment-icon {
    margin-right: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(135,84,182,0.10);
}

.bepsa-dinelco-logo {
    width: 210px;
    height: 210px;
    border-radius: 18px;
    object-fit: contain;
}

.bepsa-dinelco-title {
    color: #8754b6;
    font-size: 1.45em;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
}

.bepsa-payment-subtitle {
    color: #6c3bbf;
    font-size: 1em;
    margin: 0;
    font-weight: 400;
}

.bepsa-payment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.bepsa-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(135,84,182,0.04);
    border: 1.5px solid #f3f0ff;
}

.bepsa-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(135,84,182,0.10);
    border: 1.5px solid #8754b6;
}

.bepsa-feature-icon {
    font-size: 26px;
    margin-right: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(135,84,182,0.04);
    border: 1.5px solid #f3f0ff;
}

.bepsa-feature-title {
    color: #8754b6;
    font-weight: 700;
    margin: 0 0 4px 0;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.bepsa-feature-desc {
    color: #6c3bbf;
    margin: 0;
    font-size: 13px;
    opacity: 1;
}

.bepsa-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.bepsa-security-badge.ssl,
.bepsa-security-badge.pci,
.bepsa-security-badge.instant {
    background: #fff;
    color: #8754b6;
    border: 1.5px solid #8754b6;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(135,84,182,0.04);
}

.bepsa-security-badge {
    background: #fff;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #8754b6;
    border: 1.5px solid #f3f0ff;
    box-shadow: 0 1px 4px rgba(135,84,182,0.04);
}

.bepsa-payment-cta {
    text-align: center;
    padding: 18px 0 10px 0;
    background: #f3f0ff;
    border-radius: 14px;
    margin-top: 10px;
}

.bepsa-cta-text {
    color: #8754b6;
    font-size: 15px;
    opacity: 1;
    margin: 0;
}

.svg_bepsa{
    margin-top: 4px;
}

@media (max-width: 768px) {
    .bepsa-payment-features {
        grid-template-columns: 1fr;
    }
    .bepsa-payment-header {
        flex-direction: column;
        text-align: center;
        padding: 14px 8px;
    }
    .bepsa-payment-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .bepsa-dinelco-logo {
        width: 44px;
        height: 44px;
    }
    .bepsa-dinelco-title {
        font-size: 1.1em;
    }
    .bepsa-feature-card {
        padding: 14px 10px;
    }
    .bepsa-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .bepsa-security-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .bepsa-dinelco-payment-container {
        padding: 12px;
        margin: 8px 0;
    }
    .bepsa-payment-header {
        padding: 8px 4px;
    }
    .bepsa-dinelco-logo {
        width: 32px;
        height: 32px;
    }
    .bepsa-dinelco-title {
        font-size: 1em;
    }
    .bepsa-feature-card {
        padding: 10px 6px;
    }
    .bepsa-feature-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .bepsa-security-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}