main {
    grid-column: 1 / span 12;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.cart-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.cart-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 30px;
}

.cart-heading-wrapper {
    width: 100%;
    display: flex;
}

.cart-heading-wrapper h1 {
    font-size: 25px;
    color: dimgray;
}

.cart-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cart-item {
    width: 100%;
    padding: 10px;
    gap: 10px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #00000024;
}

.cart-item .img-section {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item .img-section img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
}

.cart-item .content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-name {
    font-size: 12px;
    color: dimgray;
}

.cart-item-pricing {
    display: flex;
    gap: 10px;
}

.cart-item-pricing span {
    font-size: 14px;
    color: gray;
}

.qty-control-wrapper {
    display: flex;
}

.qty-control {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.qty-btn {
    border: none;
    background-color: rgb(32, 32, 32);
    color: white;
    font-size: 12px;
    padding: 10px;
}

.qty-input {
    border: none;
    background-color: white;
    text-align: center;
}

.qty-input:focus-visible {
    outline: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.action-section {
    display: flex;

}

.delete-cart-item-btn {
    border: none;
    background: none;
    color: red;
    font-size: 20px;
}

.cart-summery-layout {
    flex-shrink: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cart-summery {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #00000024;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-summery h2 {
    font-size: 20px;
    color: dimgray;
}

.cart-summery-content {
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cart-summery-content .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.cart-summery-content .row span {
    font-size: 14px;
    color: gray;
}

.amount-payable {
    width: 100%;
    padding: 20px 0px;
    font-size: 18px;
    color: gray;
    border-top: 1px solid #00000024;
    display: flex;
    justify-content: space-between;
}

.checkout-btn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-btn {
    padding: 15px 20px;
    color: white;
    background-color: red;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.no-cart-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: gray;
    font-style: italic;
    letter-spacing: 0.9px;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .cart-section {
        width: 80%;
        flex-direction: row;
        align-items: start;
    }

    .cart-heading-wrapper h1 {
        font-size: 40px;
    }

    .cart-summery-layout {
        width: unset;
    }

    .cart-summery {
        width: 300px;
    }

    .cart-summery h2 {
        font-size: 30px;
    }
}