.cart-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.products-cart-content{
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 6rem;
    background: var(--color-white);
    max-width: 1400px;
    width: 90%;
    border-radius: 0.4rem;
    justify-self: center;
    align-items: center;
    place-items: center;
}
.cart-wrapper{
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 20px;
}
.cart-table {
    flex: 1;
    min-width: 800px;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.cart-table th,
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-size: 20px;
    font-family: "Poppins", serif;
}

.cart-table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.cart-table tr:hover {
    background-color: #f4f9ff;
}

.remove-link {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}

.remove-link:hover {
    text-decoration: underline;
}

.total-and-checkout {
    width: 400px;
    height: 100%;
    padding: 4rem;
    border-radius: 10px;
    border: 2px solid lightgrey;
    background-color: white;
    margin-left: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.total-and-checkout h3 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
}
.total-and-checkout h6{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.display-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.display-total h3:first-child {
    text-align: left;
}

.display-total h3:last-child {
    text-align: right;
    font-weight: bold;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.checkout-button {
    display: inline-block;
    font-family: "Poppins", serif;
    font-weight: 600;
    border: 2px solid black;
    color: black !important;
    padding: 10px;
    margin-top: 0;
    max-width: 350px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.5s ease-out;
    background-size: 200% 100%;
    cursor: pointer;
    text-decoration: none;
}

.checkout-button:hover {
    color: white !important;
    text-decoration: none;
    background: black;
}



@media (max-width: 768px) {
    .cart-wrapper {
        flex-direction: column;
        width: 90%;
    }
    .cart-table {
        min-width: 100%;
        width: 80%;
        overflow-x: auto;
        display: block;
    }
    .total-and-checkout {
        width: 80%;
        margin-left: 0;
        margin-top: 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    .cart-wrapper {
        flex-direction: column;
        width: 90%;
    }
    .cart-table {
        min-width: 100%;
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    .total-and-checkout {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        box-sizing: border-box;
    }
}
.continue-shopping-button{
    font-family: "Poppins", serif;
    font-weight: 600;
    border: 2px solid black;
    color: black !important;
    padding: 10px;
    max-width: 1000px;
    width: 100%;
    height: 30px;
    border-radius: 30px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.5s ease-out;
    background-size: 200% 100%;
    cursor: pointer;
    text-decoration: none;
}
.continue-shopping-button:hover {
    color: white !important;
    text-decoration: none;
    background: black;
}

