/* ESTILO BASE */
.wc-delivery-estimate {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 12px 15px;
    margin: 20px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* DIVISOR AZUL */
.delivery-divider {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2196F3;
}

/* CONTEÚDO */
.delivery-estimate-content {
    padding-left: 15px;
    display: flex;
    align-items: center;
    min-height: 24px;
}

.delivery-text {
    flex: 1;
}

/* PÁGINA DO PRODUTO */
.single-product .wc-delivery-estimate {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
}

/* CARRINHO */
.wc-delivery-estimate-cart {
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    margin-top: 30px;
}

/* CHECKOUT */
.wc-delivery-estimate-checkout {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
}

/* LOADING */
.wc-delivery-loading {
    text-align: center;
    color: #666;
    padding: 5px 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .wc-delivery-estimate {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .delivery-divider {
        width: 2px;
    }
}