/* -------------------------------------------
   CARD ROW LAYOUT — SUNNYBANK UI
------------------------------------------- */

.sb-cart-wrap {
    max-width: 900px;
    margin: 40px auto;
    padding: 10px;
    font-family: "Lato", sans-serif;
}

.sb-cart-title {
    font-family: "Playfair Display";
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.sb-cart-row {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    align-items: center;
    margin-bottom: 18px;
}

.sb-cart-row img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.sb-cart-info {
    flex: 1;
}

.sb-cart-name {
    font-family: "Playfair Display";
    font-size: 22px;
    margin: 0;
    padding: 0;
}

.sb-cart-price {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* BUTTON ROW */
.sb-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-cart-qty input {
    width: 60px;
    padding: 6px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.sb-remove a {
    color: #c62828;
    text-decoration: none;
    font-size: 14px;
}

.sb-cart-footer {
    text-align: center;
    margin-top: 30px;
}

.sb-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    background: var(--sb-green, #3a593a);
    color: #fff !important;
    font-size: 18px;
    text-decoration: none;
    margin-top: 10px;
}

.sb-btn:hover {
    opacity: .9;
}

.sb-total {
    font-family: "Playfair Display";
    font-size: 26px;
    margin-bottom: 18px;
    color: #222;
}

/* EMPTY STATE */
.sb-empty {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.08);
}
