.custom-cart-page {
    max-width: 1500px;
}

.cart-heading {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -.5px;
}

.cart-products {
    border-top: 1px solid #ddd;
}

.cart-product {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #ddd;
}

.cart-image img {
    width: 150px;
    height: auto !important;
    border-radius: 8px;
}

.cart-content {
    flex: 1;
}

.cart-top-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cart-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.cart-details h3 a {
    color: #111;
    text-decoration: none;
}

.cart-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.cart-price del {
    font-size: 0.9rem;
    color: var(--color-grey);
    font-weight: 500;
    margin-right: 8px;
}

.cart-attributes {
    font-size: 22px;
    margin-bottom: 18px;
}

.cart-attributes dl {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-attributes dt {
    font-weight: 400;
}

.cart-attributes dd {
    font-weight: 700;
}

.cart-stock {
    color: #198754;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 20px;
}

.cart-actions {
    display: flex;
    gap: 30px;
}

.cart-actions a {
    color: #111;
    font-size: 20px;
    font-weight: 600;
}

.cart-side-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-box {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    padding: 0px 0px;
}

.qty-btn {
    background: #ccc !important;
    width: auto;
    height: auto;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
    width:25px;
}

.qty-box .qty {
    width: 55px;
    height: auto;
    background: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    border: none;
    outline: none;
    margin-right: -16px;
}

.qty-box .quantity {
    margin: 0;
}

.cart-remove {
    color: #222;
    font-size: 22px;
}

.cart-summary-wrap {
    position: sticky;
    top: 120px;
    border: 1px solid #dcdcdc;
    padding: 16px 13px;
}

.summary-box {
    background: #f7f7f7;
    border-radius: 28px;
    padding: 28px;
}

.summary-box h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 34px;
}

.coupon-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coupon-box input {
    flex: 1;
    border: none;
    border-bottom: 1px solid #ccc;
    background: none;
    height: auto;
    outline: none;
    font-size: 1rem;
}

.coupon-box button {
    min-width: auto;
    height: auto;
    border: none;
    border-radius: 50px;
    background: #272324;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 2px 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 22px;
}

.summary-row strong {
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: #d8d8d8;
    margin: 24px 0;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    height: auto;
    border-radius: 60px;
    background: #272324;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 0px;
}

.checkout-btn:hover {
    color: #fff;
}

.update-cart-btn {
    width: 100%;
    margin-top: 16px;
    border: none;
    background: #ececec;
    height: 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
}

@media(max-width:991px) {

    .cart-product {
        flex-direction: column;
    }

    .cart-image img {
        width: 100%;
    }

    .cart-top-row {
        flex-direction: column;
    }

    .cart-side-actions {
        justify-content: space-between;
    }

    .cart-details h3 {
        font-size: 26px;
    }

    .cart-price {
        font-size: 24px;
    }

    .summary-box h3 {
        font-size: 28px;
    }

    .summary-row {
        font-size: 18px;
    }

}