.wd-cart-action-row {
    display: none !important;
}

#wd-add-to-cart {
    width: 100%;
}

.wd-entities-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-product-imagin {
    margin-bottom: 0px !important;
}

.shipping-estimate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
#ship-end,
#ship-start {
    color: var(--wd-primary-color);
}
.truck-icon {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--wd-text-color);
}

.one-piece-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wd-alternative-color);
    font-weight: bold;
}
.pulse-circle {
    width: 12px;
    height: 12px;
    background-color: var(--wd-alternative-color);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.9);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#list-payment {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 0;
}
#list-payment li {
    margin: 0;
}

.cart_totals #list-payment {
    margin-top: 20px;
}

.single .cart {
    display: flex;
    flex-wrap: wrap;
    /* allow children to wrap to the next line */
}
.single .cart .quantity {
    /* First element: natural width or fixed width */
    /* For example, fix width or let it size naturally */
    /* Example: */
    flex: 0 0 auto; /* don't grow or shrink */
}

.single .cart .single_add_to_cart_button {
    /* Second element: take remaining space on the same line */
    flex: 1 1 auto;
}

.single .cart #wd-add-to-cart {
    /* Third element: take full width on a new line */
    flex-basis: 100%;
}

#single-product-features {
    margin: 10px;
    font-size: 15px;
}
