.woocommerce-clearance-message {
    background-color: #fffae6;
    border: 1px solid #ffd700;
    padding: 10px;
    margin: 15px 0;
    font-size: 1.1em;
    color: #333;
    border-radius: 5px;
    display: flex;
    align-items: center; /* Vertically center the image and text */
    justify-content: space-between; /* Space text and image apart */
}

.woocommerce-clearance-message .woocommerce-clearance-text {
    flex: 1; /* Allow text to take up available space */
}

.woocommerce-clearance-message .woocommerce-clearance-image {
    margin-left: 15px;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.woocommerce-clearance-message .woocommerce-clearance-image img {
    max-width: 100px;
    height: auto;
    display: block;
}

/* Container for clearance message and icon */
.woocommerce-clearance-cart-inline {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space message and icon apart */
    margin-top: 5px;
}

/* Clearance message styling */
.woocommerce-clearance-cart-message {
    background-color: #fffae6;
    border: 1px solid #ffd700;
    color: #d35400;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Clearance icon styling */
.woocommerce-clearance-cart-icon img {
    max-width: 30px;
    height: auto;
    border-radius: 3px;
    margin-left: 10px;
}

/* Checkout page inline clearance information */
.woocommerce-clearance-checkout-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between badge and icon */
    margin-top: 5px;
}

.woocommerce-clearance-checkout-badge {
    background-color: #fffae6;
    border: 2px solid #ffd700;
    color: #d35400;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
}

.woocommerce-clearance-checkout-icon img {
    max-width: 30px;
    height: auto;
    /* border-radius: 3px; */
    /* border: 1px solid #ffd700; */
    padding: 2px;
    background-color: #fff;
}

/* Wrapper for the checkout clearance message */
.woocommerce-clearance-checkout-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(90deg, #fffae6, #fff5cc);
    border: 2px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main clearance message text */
.woocommerce-clearance-checkout-message {
    font-size: 1.1em;
    /* color: #d35400; */
    text-align: center;
    font-weight: bold;
    line-height: 1.5em;
}

.woocommerce-clearance-checkout-message strong {
    color: #e74c3c;
}
