.cart-page {
    padding: 24px 0 64px
}

.cart-shell {
    padding: 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 230, 109, .14), rgba(78, 205, 196, .12), rgba(255, 107, 107, .1));
    box-shadow: 0 18px 34px rgba(90, 97, 138, .1)
}

.section-head h1,
.summary-card h2,
.item-head h2 {
    font-family: "Baloo 2", cursive;
    color: #2f3550
}

.cart-list,
.summary-card {
    display: grid;
    gap: 18px
}

.cart-item,
.summary-card {
    padding: 22px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(90, 97, 138, .1)
}

.cart-item {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 20px
}

.cart-media {
    border-radius: 24px;
    background: rgba(255, 247, 238, .85);
    padding: 14px
}

.cart-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.item-head,
.item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.item-head button {
    border: 0;
    background: transparent;
    color: #ff6b6b;
    font-weight: 800
}

.cart-details p {
    margin: 10px 0;
    color: #6f7693
}

.item-meta strong,
.summary-line strong {
    color: #2f3550
}

.item-meta span {
    color: #35a67d;
    font-weight: 800
}

.qty-inline {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(47, 53, 80, .06);
    overflow: hidden
}

.qty-inline button,
.qty-inline span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #2f3550;
    font-weight: 800
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #6f7693
}

.summary-line.total {
    padding-top: 12px;
    border-top: 1px dashed rgba(47, 53, 80, .14)
}

.summary-btn {
    margin-top: 8px;
    min-height: 50px;
    justify-content: center
}

.continue-link {
    text-align: center;
    font-weight: 800;
    color: #2f3550
}

@media (max-width:767.98px) {
    .cart-item {
        grid-template-columns: 1fr
    }
}