/* Modal overlay */
#maislog-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}
#maislog-modal {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
}
#maislog-modal h2 {
    margin: 0 0 16px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#maislog-modal-close {
    cursor: pointer;
    font-size: 22px;
    color: #999;
    background: none;
    border: none;
    line-height: 1;
}
.maislog-balcao-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.maislog-balcao-item:hover {
    border-color: #0073aa;
}
.maislog-balcao-item.selecionado {
    border-color: #0073aa;
    background: #f0f8ff;
}
.maislog-balcao-nome {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}
.maislog-balcao-endereco {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}
.maislog-balcao-info {
    font-size: 12px;
    color: #777;
}
.maislog-badge-gratis {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}
.maislog-badge-preco {
    float: right;
    font-weight: bold;
    color: #e74c3c;
    font-size: 14px;
}
.maislog-balcao-selecionado-info {
    background: #f0f8ff;
    border: 1px solid #0073aa;
    border-radius: 6px;
    padding: 10px 14px;
    margin: 8px 0;
    font-size: 13px;
    display: none;
}
#maislog-btn-ver-balcoes {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 6px;
}
#maislog-btn-ver-balcoes:hover {
    background: #005f8a;
}

/* Remove o label "Shipment" do checkout */
.wc-block-components-shipping-rates-control__package-title,
.wc-block-checkout__shipping-fields .wc-block-components-title,
h3.wc-block-components-shipping-rates-control__package-title {
    display: none !important;
}

/* Remove "Shipment" no checkout clássico */
td[data-title="Shipment"]::before,
tr.woocommerce-shipping-totals th,
tr.shipping th {
    display: none !important;
}