.ahura-woo-cart {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.ahura-woo-cart .cart-summary-container {
    width: 100%;
}

.ahura-woo-cart .ahura-cart-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    margin-bottom: 30px;
    font-size: 15px;
}


.ahura-woo-cart .ahura-cart-table th,
.ahura-woo-cart .ahura-cart-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}

.ahura-woo-cart .ahura-cart-table.no-border th,
.ahura-woo-cart .ahura-cart-table.no-border td {
    border: initial;
}

.ahura-woo-cart .ahura-cart-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.ahura-woo-cart .ahura-cart-table td {
    text-align: right;
}

.ahura-woo-cart .ahura-cart-table td.product-name {
    font-weight: 500;
}

.ahura-woo-cart .ahura-cart-table .product-thumbnail a {
    display: flex;
}

.ahura-woo-cart .ahura-cart-table td.product-price,
.ahura-woo-cart .ahura-cart-table td.product-subtotal {
    white-space: nowrap;
}

.ahura-woo-cart .ahura-cart-table input.qty {
    width: 60px;
    padding: 5px;
    text-align: center;
    box-shadow: initial;
    text-align: center;
}

.ahura-woo-cart .ahura-cart-table input::-webkit-outer-spin-button,
.ahura-woo-cart .ahura-cart-table input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ahura-woo-cart .ahura-cart-table input[type=number] {
    -moz-appearance: textfield;
}

.ahura-woo-cart .ahura-cart-table .product-remove a.remove {
    color: #a00;
    font-size: 20px;
    text-decoration: none;
}

.ahura-woo-cart .ahura-cart-summary {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    align-self: end;
}

.ahura-woo-cart .ahura-cart-summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.ahura-woo-cart .ahura-cart-summary .cart-subtotal,
.ahura-woo-cart .ahura-cart-summary .cart-total {
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    padding: 10px;
}

.ahura-woo-cart .ahura-cart-summary .label {
    font-weight: bold;
    margin-right: 5px;
}

.ahura-woo-cart .ahura-cart-summary .value {
    margin-left: 10px;
    display: inline-block;
    min-width: 80px;
}

.ahura-woo-cart .ahura-cart-summary .checkout-button {
    margin-top: 10px;
}

.ahura-woo-cart .ahura-cart-summary .checkout-button a {
    display: inline-block;
    background-color: #0071a1;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.ahura-woo-cart .ahura-cart-summary .checkout-button a:hover {
    background-color: #005e8a;
}