@import url("variables.css");

.page-layout {
    background: #F7F7F7;
    display: flex;
    gap: 10px;
}

.shopping-page {
    margin: 10px;
    width: 70%;
}

.cart-details {
    background-color: aliceblue;
    width: 30%;
    gap: 30px;

}

.navbar {
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: black;

}

.btn {
    font-size: 30px;
    border: none;
    background: transparent;
    color: black;
}

.item-details {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.item-details-container {

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity1 {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 650px;
}

.quantity-buttons button {
    display: block;
    border: none;
    background-color: #fff;
    cursor: pointer;
}

.shopping-cart {
    background-color: #FFFFFF;
}

.quantity-wrapper {
    /* border: 1px solid black;*/
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 10px;
}

.price-trash {
    display: flex;
    gap: 40px;
    font-size: 30px;
    cursor: pointer;
}

.item-price {
    font-size: 25px;

}

.form {
    background-color: var(--primarycolor);
    width: 30%;
    margin: 10px;
    height: 100%;
    border-radius: 10px;
}

.title-style {
    color: #F0F0F0;
    margin-left: 20px;
}

.title-style h2 {
    margin-bottom: 50px;
}

.cards {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px;
}

.cards img {
    background: #66A891;
    padding: 10px 14px;
    cursor: pointer;
}



.see-all {
    background-color: #66A891;
    display: flex;
    height: 50px;
    align-items: center;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    color: white;
}

.payment-form {
    /* border: 2px solid black;*/
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px;
}

.payment-form label {

    font-size: 20px;
    color: white;
}

.payment-form input {
    background-color: #66A891;
    padding: 10px;
    border: none;
    color: white;
}

.row {
    display: flex;
    gap: 10px;
}


.pay-btn {
    background: #A5D6C1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: black;
    font-weight: bold;
}

::placeholder {
    color: white;
    opacity: 1;
}

.summary-box {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
}

.line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.total {
    font-weight: bold;
    font-size: 17px;
}

.footer-card {
    background: #035846;
    padding: 12px;
    border: none;
    color: black;
    font-weight: bold;
    cursor: pointer;

}

.checkout-footer {
    background-color: #035846;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-top: 20px;
}

.total-price {
    font-size: 18px;
    color: #fff;
}

.checkout-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 16px;
}

.arrow-icon {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}