/* Vergiotis Payment Info box - product page. Reference: electrocrete.gr
   "ΤΡΟΠΟΙ ΠΛΗΡΩΜΗΣ" panel: one white rounded row per method, label left,
   logos + chevron right, description on expand. */
.vg-payment-info-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 6px 0 16px;
}

.vg-pay-row {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.vg-pay-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.3;
}

.vg-pay-row-head:hover {
    color: #363a41;
}

.vg-pay-row-label {
    flex: 1;
}

.vg-pay-row-right {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.vg-pay-logo {
    height: 18px;
    width: auto;
}

.vg-pay-logo--tbi {
    height: 20px;
}

.vg-pay-icon {
    font-size: 20px;
    color: #386dac;
}

.vg-pay-chevron {
    font-size: 20px;
    color: #6b6b6b;
    transition: transform .2s ease;
}

.vg-pay-row-head[aria-expanded="true"] .vg-pay-chevron {
    transform: rotate(180deg);
}

.vg-pay-row-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.vg-pay-row-body.is-open {
    max-height: 700px;
}

.vg-pay-row-body-inner {
    padding: 0 12px 12px;
    font-size: 12px;
    line-height: 1.55;
    color: #6b6b6b;
}

.vg-pay-row-body-inner p {
    margin: 0;
}

/* tbi installment plan */
.vg-pay-row--tbi .vg-pay-row-body-inner {
    padding-top: 2px;
}

.vg-pay-plan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 10px;
    font-size: 13px;
    color: #363a41;
    border-bottom: 1px solid #efefef;
}

.vg-pay-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--vg-brand, #386dac);
    color: #fff;
    border-radius: 50px;
    padding: 3px 10px 3px 6px;
    font-size: 12px;
    font-weight: 700;
}

.vg-pay-plan-badge img {
    height: 14px;
    width: auto;
}

.vg-tbi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin: 6px 0 10px;
}

.vg-tbi-table th {
    text-align: left;
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8c8c8c;
    font-weight: 700;
    padding: 6px 4px;
    border-bottom: 1px solid #e6e6e6;
}

.vg-tbi-table th:last-child,
.vg-tbi-table td:last-child {
    text-align: right;
}

.vg-tbi-table td {
    padding: 8px 4px;
    border-bottom: 1px solid #f2f2f2;
    color: #363a41;
}

.vg-tbi-table td:last-child {
    color: var(--vg-brand, #386dac);
    font-weight: 600;
}

.vg-tbi-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.vg-tbi-disclaimer {
    font-size: 11px;
    color: #8c8c8c;
}

.vg-tbi-disclaimer a {
    color: var(--vg-brand, #386dac);
    font-weight: 700;
}
