/* ===== PAGE HEADER ===== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1a1a1a;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
}

.header-spacer {
    width: 40px;
}

/* ===== CART CONTENT ===== */
.cart-content {
    padding: 16px;
    padding-bottom: 200px;
}

/* ===== CART ITEM ===== */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-bakery {
    font-size: 12px;
    color: #666;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
}

.cart-item-description {
    font-size: 12px;
    color: #666;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

/* ===== QUANTITY CONTROLS ===== */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1a1a1a;
    transition: background-color 0.2s;
}

.quantity-btn:active {
    background-color: #f0f0f0;
}

.quantity-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: #cc0000;
    font-size: 12px;
    padding: 4px 8px;
}

/* ===== EMPTY CART ===== */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 20px;
}

.empty-cart .btn {
    max-width: 200px;
    margin: 0 auto;
}

/* ===== CART SUMMARY ===== */
.cart-summary {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
    .cart-summary {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 900px) {
    .cart-summary {
        max-width: 500px;
    }
}