/* ─── Estimated Shipping Box ─── */

.est-shipping-estimate {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

.est-ship-icon {
    flex-shrink: 0;
    color: #2563eb;
    margin-top: 2px;
}

.est-ship-content {
    flex: 1;
    min-width: 0;
}

.est-ship-label {
    color: #475569;
    font-size: 13px;
}

.est-ship-label strong {
    color: #1e293b;
}

.est-ship-price {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2px;
}

.est-ship-days {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
}

.est-ship-service {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.est-ship-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    font-style: italic;
}

/* Loading state */
.est-shipping-loading {
    opacity: 0.7;
}

.est-shipping-loading .est-ship-label {
    position: relative;
    overflow: hidden;
}

.est-shipping-loading .est-ship-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: est-shimmer 1.5s infinite;
}

@keyframes est-shimmer {
    to { left: 100%; }
}

/* ── Responsive adjustments ── */

/* Inside CheckoutWC sidecart (typically narrower) */
#cfw-side-cart .est-shipping-estimate,
.cfw-side-cart-contents .est-shipping-estimate {
    padding: 10px 12px;
    font-size: 13px;
    margin: 8px 0;
}

#cfw-side-cart .est-ship-price,
.cfw-side-cart-contents .est-ship-price {
    font-size: 15px;
}

/* Inside mini-cart widget */
.widget_shopping_cart_content .est-shipping-estimate {
    padding: 10px;
    margin: 8px 0;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .est-shipping-estimate {
        background: #1e293b;
        border-color: #334155;
    }
    .est-ship-label { color: #cbd5e1; }
    .est-ship-label strong { color: #f1f5f9; }
    .est-ship-price { color: #f1f5f9; }
    .est-ship-days { color: #94a3b8; }
    .est-ship-service { color: #94a3b8; }
    .est-ship-note { color: #64748b; }
}
