.elementor-menu-cart__main .widget_shopping_cart_content {
    justify-content: flex-end;
}
.woocommerce-mini-cart {
    display: flex;
    flex-direction: column;
    height: 90%;
    padding-bottom: 0px;
}
.woocommerce-mini-cart__items {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    flex: 1;
    overflow-y: auto;
}
.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.mini-cart-item-image {
    flex: 0 0 60px;
    margin-right: 10px;
}
.mini-cart-item-image img {
    width: 60px;
    height: auto;
    border-radius: 4px;
}
.mini-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mini-cart-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.mini-cart-item-title {
    font-size: 14px;
}
.mini-cart-item-title a {
    color: #333;
    text-decoration: none;
}
.mini-cart-item-title a:hover {
    text-decoration: underline;
}
.mini-cart-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mini-cart-item-quantity {
    display: flex;
    align-items: center;
}
.mini-cart-item-quantity .quantity-select {
    width: 60px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 5px;
    background: #fff;
    color: #333;
    font-family: monospace;
    text-align: center;
}
.mini-cart-item-price {
    font-size: 12px;
    color: #666;
}
.mini-cart-item-remove {
    margin-left: 10px;
}
.mini-cart-item-remove .remove {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #ddd;
    color: #333;
    font-size: 14px;
    border-radius: 50%;
    text-decoration: none;
}
.mini-cart-item-remove .remove:hover {
    background: #ff0000;
    color: #fff;
}
.woocommerce-mini-cart__footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}
.woocommerce-mini-cart__total .total-label {
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}
.woocommerce-mini-cart__total .total-value {
    font-weight: bold;
    color: #333;
}
.woocommerce-mini-cart__buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0px;
}
.woocommerce-mini-cart__buttons a.button.checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #54c900;
    color: #fff;
    text-decoration: none;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 500;
}
.woocommerce-mini-cart__buttons a.button.checkout:hover {
    background: #46a800;
}
.woocommerce-mini-cart__buttons .checkout-icon {
    margin-right: 8px;
    font-size: 16px;
}
.woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 20px 0;
}
.woocommerce-mini-cart .woocommerce-error {
    list-style: none;
    padding: 10px;
    margin: 0 0 15px;
    background: #ffe6e6;
    border: 1px solid #ff0000;
    color: #ff0000;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}
.mini-cart-item-quantity .quantity-button,
.mini-cart-item-quantity .quantity-input {
    display: none;
}