.cart-list {
    padding: 10px;
}

.cart-item {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-info {
    flex: 1;
    padding: 0 10px;
}

.item-name {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-price {
    color: #FF8FB1;
    font-size: 14px;
}

.item-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #FFB6C1;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
}

.quantity {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}

.total {
    flex: 1;
    font-size: 16px;
}

.total-price {
    color: #FF8FB1;
    font-weight: bold;
}

.checkout-btn {
    background: #FF8FB1;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
} 