/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/
Description: Tema hijo de Hello Elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

.woocommerce-bacs-bank-details, .woocommerce-order-details {
    margin-top: 40px;
    float: left;
    width: 100%;
}

.wc-bacs-bank-details-account-name {
    color: #0046ad;
    margin-bottom: 15px;
    display: none;
}

.bacs_details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.bacs_details li {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    color: #666;
}

.bacs_details strong {
    font-size: 1.1em;
    color: #333;
    margin-top: 4px;
    word-break: break-all;
}

/* Opcional: Resaltar CBU y Alias */
.cbu strong,
.alias strong {
    background: #eef4ff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px dashed #0046ad;
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before {
    display: none !important;   
}

.woocommerce ul.order_details li {
    border-right: 1px dashed #cfc8d8;
}

.woocommerce ul.order_details li:nth-child(3n) {
    border-right: none;
}

.wc-bacs-bank-details.order_details.bacs_details {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wc-bacs-bank-details li {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.bacs_details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bacs_details li {
    flex: 1 1 calc(30% - 10px);
    box-sizing: border-box;
}