.dcp-guest-invoice-payment {

    max-width: 900px;
    margin: 0 auto;
    padding: 30px;

}


.dcp-guest-payment-card {

    background: #ffffff;
    border-radius: 16px;
    padding: 35px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);

}


/* Header */

.dcp-guest-payment-header {

    text-align: center;
    margin-bottom: 35px;

}


.dcp-guest-payment-logo {

    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 20px;

}


.dcp-guest-payment-header h1 {

    margin: 0 0 10px;
    font-size: 32px;

}


.dcp-guest-payment-header p {

    margin: 0;
    color: #666;
    font-size: 16px;

}


/* Secciones */

.dcp-payment-section {

    margin-top: 30px;

}


.dcp-payment-section:first-of-type {

    margin-top: 0;

}


.dcp-payment-section h2 {

    font-size: 20px;
    margin: 0 0 20px;

    padding-bottom: 10px;

    border-bottom: 1px solid #eeeeee;

}


/* Grid */

.dcp-payment-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


.dcp-payment-field {

    margin: 0;

}


.dcp-payment-field.full-width {

    grid-column: 1 / -1;

}


.dcp-payment-field label {

    display: block;

    margin-bottom: 7px;

    font-weight: 600;
    font-size: 14px;

}


.dcp-payment-field input {

    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #dddddd;

    border-radius: 8px;

    background: #ffffff;

    font-size: 15px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}


.dcp-payment-field input:focus {

    outline: none;

    border-color: #00a81c;

    box-shadow:
        0 0 0 3px rgba(0,168,28,0.10);

}


/* Monto */

.dcp-payment-amount {

    display: flex;
    align-items: stretch;

}


.dcp-payment-currency {

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 45px;

    padding: 0 12px;

    background: #f7f7f7;

    border: 1px solid #dddddd;

    border-right: none;

    border-radius: 8px 0 0 8px;

    color: #666;

    font-weight: 600;

}


.dcp-payment-amount input {

    flex: 1;

    min-width: 0;

    border-radius: 0 8px 8px 0 !important;

}


/* Texto opcional */

.dcp-payment-optional {

    color: #888;
    font-weight: 400;
    font-size: 12px;

}


/* Botón */

.dcp-payment-submit {

    margin-top: 35px;
    text-align: center;

}


.dcp-payment-submit button {

    background: #00a81c;

    color: #ffffff;

    border: none;

    border-radius: 8px;

    padding: 14px 28px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition:
        opacity .2s ease,
        transform .1s ease;

}


.dcp-payment-submit button:hover {

    opacity: .9;

}


.dcp-payment-submit button:active {

    transform: translateY(1px);

}


/* Nota inferior */

.dcp-payment-security {

    margin-top: 20px;

    text-align: center;

    color: #777;

    font-size: 13px;

}


/* Mobile */

@media (max-width: 768px) {

    .dcp-guest-invoice-payment {

        padding: 15px;

    }


    .dcp-guest-payment-card {

        padding: 25px 20px;

    }


    .dcp-guest-payment-header h1 {

        font-size: 26px;

    }


    .dcp-payment-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .dcp-payment-field.full-width {

        grid-column: auto;

    }


    .dcp-payment-submit button {

        width: 100%;

    }

}