.wc-estimated-delivery {
    background: #FFFFFF !important;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* Fix alignment */
.wc-estimated-delivery .wc-delivery-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Ensure text is properly aligned */
.wc-estimated-delivery span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make it align with the "Proceed to Checkout" button */
.woocommerce-cart .wc-estimated-delivery {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.production-speed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 20px;
}
.production-speed-item {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}
.production-speed-item.selected {
    border-color: #befcb8;
    background: #cfffe3;
}
#confirm-speed-btn {
    display: block;
    margin: 30px auto;
}
.production-speed-item .speed-label {
    font-weight: bold;
}

.production-speed-item .speed-label strong.standard-option {
    font-weight: 900;
    font-size: 1.2em;
}

