/* Basket Items Container */
.basket-items-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Basket items list */
#basket-items {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

/* Individual basket item styling */
#basket-items li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Flex container for the basket item */
.basket-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Item name (text) aligned to the left */
.item-name {
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    color: white;
    padding-right: 20px; /* Adds space between text and quantity controls */
}

/* Quantity controls (input and buttons) aligned to the right */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
}

.quantity-input {
    width: 40px; /* Shorten the width */
    height: 30px; /* Increase the height */
    text-align: center; /* Keep text centered */
    margin: 0 5px;
    font-size: 20px; /* Adjust font size if needed */
}

/* Remove the default arrows in the number input */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield; /* Remove arrows in Firefox */
}

.decrease {
    background-color: #555; /* Match with other buttons */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.decrease:hover {
    background-color: #ffcc00; /* Change background on hover */
    color: #333; /* Change text color on hover */
}

.increase {
    background-color: #555; /* Match with other buttons */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.increase:hover {
    background-color: #ffcc00; /* Change background on hover */
    color: #333; /* Change text color on hover */
}

/* Total items styling */
#basket-total {
    font-size: 20px;
    color: #ffcc00;
}

/* Submit button styling */
.rtn-submit-button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.rtn-submit-button:hover {
    background-color: #ffcc00;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Basket Items Container */
.basket-items-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Flex container for buttons */
.basket-buttons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    align-items: center;
}

/* Submit button styling */
.rtn-submit-button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.rtn-submit-button:hover {
    background-color: #ffcc00;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Empty cart button styling */
.rtn-empty-button {
    background-color: #521616; /* Red-ish hue */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty cart button hover effect */
.rtn-empty-button:hover {
    background-color: #8a0b0b; /* Lighter red on hover */
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Style for bin icon */
.rtn-empty-button img {
    margin-left: 10px;
}