/* Delivery Estimator — frontend widget */

.de-widget {
    margin: 1rem 0;
    padding: 14px 16px;
    border: 1px solid #e2e2e2;
    border-left: 4px solid #2271b1;
    border-radius: 6px;
    background: #f9f9f9;
    font-size: .95rem;
    line-height: 1.5;
}

/* Ships row */
.de-ships-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.de-pickup-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    font-size: .9rem;
}

.de-pickup-text strong {
    color: #2271b1;
}

.de-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.de-ships-text {
    color: #1a1a1a;
}

.de-ships-text strong {
    color: #2271b1;
}

/* Delivery block */
.de-delivery-block {
    margin: 8px 0 6px;
}

.de-delivery-title {
    margin: 0 0 4px;
    font-size: .88rem;
    color: #555;
}

.de-carriers-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.de-carrier-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.de-carrier-item::before {
    content: "•";
    color: #2271b1;
    font-weight: 700;
    flex-shrink: 0;
}

.de-carrier-name {
    font-weight: 600;
    min-width: 80px;
    color: #222;
}

.de-carrier-date {
    color: #333;
}

/* Footnote */
.de-footnote {
    margin: 8px 0 0;
    font-size: .8rem;
    color: #888;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 480px) {
    .de-carrier-item {
        flex-wrap: wrap;
    }
    .de-carrier-name {
        min-width: unset;
    }
}
