/* ==========================================
   PETTY'S CARE
   SHOPPING CART
========================================== */

.cart-page{
    max-width:1100px;
    margin:50px auto;
    padding:0 20px;
}

.cart-page-title{
    text-align:center;
    color:#556B2F;
    font-size:2.4rem;
    margin-bottom:10px;
}

.cart-page-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:40px;
}

.cart-items{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.cart-card{
    display:grid;
    grid-template-columns:180px 1fr auto;
    gap:30px;
    align-items:center;
    background:#ffffff;
    border-radius:18px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.cart-card-image{
    width:100%;
    height:160px;
    object-fit:contain;
    border-radius:12px;
}

.cart-card-title{
    margin:0 0 8px;
    color:#556B2F;
    font-size:1.5rem;
}

.cart-card-description{
    margin:0 0 14px;
    color:#666;
    line-height:1.6;
}

.cart-card-price{
    font-weight:bold;
    color:#444;
}
