/* 
 * Estimated Delivery for WooCommerce - Frontend Styles
 * Thiết kế cao cấp giúp khách hàng dễ dàng nhận biết ngày giao hàng.
 */

/* 1. Tin nhắn chính trên trang sản phẩm */
.edw_date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 20px 0;
    color: #166534;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edw_date:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.edw_date i {
    font-size: 1.2em;
    color: #10b981;
}

/* 2. Kiểu dáng đặc trưng cho Mini-Cart */
.woocommerce-mini-cart-item .variation {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin: 12px 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Container cho Estimated Delivery trong Mini-Cart */
.woocommerce-mini-cart-item dt.variation-Estimateddelivery,
.woocommerce-mini-cart-item dd.variation-Estimateddelivery {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Nhãn tiêu đề (Label) */
.woocommerce-mini-cart-item dt.variation-Estimateddelivery {
    background: #ecfdf5 !important;
    color: #065f46 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 8px 12px 2px 12px !important;
    border-radius: 10px 10px 0 0 !important;
    border: 1px solid #d1fae5 !important;
    border-bottom: none !important;
}

/* Nội dung ngày giao hàng (Content) */
.woocommerce-mini-cart-item dd.variation-Estimateddelivery {
    background: #ecfdf5 !important;
    color: #059669 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 0 12px 10px 12px !important;
    border-radius: 0 0 10px 10px !important;
    border: 1px solid #d1fae5 !important;
    border-top: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-mini-cart-item dd.variation-Estimateddelivery p {
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Loại bỏ các dấu gạch ngang hoặc phân cách mặc định của theme nếu có */
.woocommerce-mini-cart-item .variation .__break {
    display: none !important;
}

/* Tối ưu hóa cho di động */
@media (max-width: 480px) {
    .edw_date {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
}
